2013-12-11 20:50:10 -08:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2013 by Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-12-10 20:14:20 -08:00
|
|
|
#pragma once
|
|
|
|
|
2014-01-26 14:36:15 -08:00
|
|
|
#include <util/util.hpp>
|
2014-01-24 20:19:50 -08:00
|
|
|
#include <QDialog>
|
2013-12-12 20:47:42 -08:00
|
|
|
#include <memory>
|
2013-12-10 20:14:20 -08:00
|
|
|
|
2014-03-07 11:56:31 -08:00
|
|
|
#include <obs.h>
|
|
|
|
|
2014-03-06 20:08:12 -08:00
|
|
|
class OBSBasic;
|
2014-01-24 20:19:50 -08:00
|
|
|
class QAbstractButton;
|
2014-03-07 11:56:31 -08:00
|
|
|
class QComboBox;
|
2014-01-24 20:19:50 -08:00
|
|
|
|
|
|
|
#include "ui_OBSBasicSettings.h"
|
2013-12-10 20:14:20 -08:00
|
|
|
|
2014-01-24 20:19:50 -08:00
|
|
|
class OBSBasicSettings : public QDialog {
|
|
|
|
Q_OBJECT
|
2013-12-11 20:50:10 -08:00
|
|
|
|
2014-01-24 20:19:50 -08:00
|
|
|
private:
|
2014-03-06 20:08:12 -08:00
|
|
|
OBSBasic *main;
|
|
|
|
|
2014-01-24 20:19:50 -08:00
|
|
|
std::unique_ptr<Ui::OBSBasicSettings> ui;
|
2014-01-26 14:36:15 -08:00
|
|
|
ConfigFile localeIni;
|
|
|
|
bool generalChanged;
|
|
|
|
bool outputsChanged;
|
|
|
|
bool audioChanged;
|
|
|
|
bool videoChanged;
|
|
|
|
int pageIndex;
|
|
|
|
bool loading;
|
|
|
|
|
|
|
|
inline bool Changed() const
|
|
|
|
{
|
|
|
|
return generalChanged || outputsChanged || audioChanged ||
|
|
|
|
videoChanged;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void ClearChanged()
|
|
|
|
{
|
|
|
|
generalChanged = false;
|
|
|
|
outputsChanged = false;
|
|
|
|
audioChanged = false;
|
|
|
|
videoChanged = false;
|
|
|
|
}
|
|
|
|
|
2014-03-07 11:56:31 -08:00
|
|
|
void HookWidget(QWidget *widget, const char *signal, const char *slot);
|
|
|
|
|
2014-01-26 14:36:15 -08:00
|
|
|
bool QueryChanges();
|
|
|
|
|
|
|
|
void LoadGeneralSettings();
|
2014-03-10 13:10:35 -07:00
|
|
|
void LoadOutputSettings();
|
2014-02-23 15:27:19 -08:00
|
|
|
void LoadAudioSettings();
|
2014-01-26 14:36:15 -08:00
|
|
|
void LoadVideoSettings();
|
2014-02-23 15:27:19 -08:00
|
|
|
void LoadSettings(bool changedOnly);
|
2014-01-26 14:36:15 -08:00
|
|
|
|
|
|
|
/* general */
|
|
|
|
void LoadLanguageList();
|
|
|
|
|
2014-03-06 06:02:25 -08:00
|
|
|
/* audio */
|
2014-03-07 11:56:31 -08:00
|
|
|
void LoadListValues(QComboBox *widget, obs_property_t prop,
|
|
|
|
const char *configName);
|
2014-03-06 06:02:25 -08:00
|
|
|
void LoadAudioDevices();
|
|
|
|
|
2014-01-26 14:36:15 -08:00
|
|
|
/* video */
|
|
|
|
void LoadRendererList();
|
|
|
|
void ResetDownscales(uint32_t cx, uint32_t cy);
|
|
|
|
void LoadResolutionLists();
|
|
|
|
void LoadFPSData();
|
|
|
|
|
|
|
|
void SaveGeneralSettings();
|
2014-03-10 13:10:35 -07:00
|
|
|
void SaveOutputSettings();
|
2014-02-23 15:27:19 -08:00
|
|
|
void SaveAudioSettings();
|
2014-01-26 14:36:15 -08:00
|
|
|
void SaveVideoSettings();
|
|
|
|
void SaveSettings();
|
2013-12-17 12:56:58 -08:00
|
|
|
|
2014-01-24 20:19:50 -08:00
|
|
|
private slots:
|
2014-01-26 14:36:15 -08:00
|
|
|
void on_listWidget_itemSelectionChanged();
|
2014-01-24 20:19:50 -08:00
|
|
|
void on_buttonBox_clicked(QAbstractButton *button);
|
|
|
|
|
2014-01-26 14:36:15 -08:00
|
|
|
void on_baseResolution_editTextChanged(const QString &text);
|
2014-03-07 11:56:31 -08:00
|
|
|
|
|
|
|
void GeneralChanged();
|
|
|
|
void AudioChanged();
|
|
|
|
void AudioChangedRestart();
|
2014-03-10 13:10:35 -07:00
|
|
|
void OutputsChanged();
|
2014-03-07 11:56:31 -08:00
|
|
|
void VideoChanged();
|
|
|
|
void VideoChangedResolution();
|
|
|
|
void VideoChangedRestart();
|
2014-01-26 14:36:15 -08:00
|
|
|
|
2014-01-24 20:19:50 -08:00
|
|
|
protected:
|
|
|
|
virtual void closeEvent(QCloseEvent *event);
|
2013-12-17 12:56:58 -08:00
|
|
|
|
2013-12-10 20:14:20 -08:00
|
|
|
public:
|
2014-01-24 20:19:50 -08:00
|
|
|
OBSBasicSettings(QWidget *parent);
|
2013-12-10 20:14:20 -08:00
|
|
|
};
|