window-basic-settings.hpp 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. /******************************************************************************
  2. Copyright (C) 2013 by Hugh Bailey <[email protected]>
  3. Philippe Groarke <[email protected]>
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. ******************************************************************************/
  15. #pragma once
  16. #include <util/util.hpp>
  17. #include <QDialog>
  18. #include <memory>
  19. #include <string>
  20. #include <libff/ff-util.h>
  21. #include <obs.h>
  22. class OBSBasic;
  23. class QAbstractButton;
  24. class QComboBox;
  25. class QCheckBox;
  26. class QLabel;
  27. class OBSPropertiesView;
  28. class OBSHotkeyWidget;
  29. #include "ui_OBSBasicSettings.h"
  30. class SilentUpdateCheckBox : public QCheckBox {
  31. Q_OBJECT
  32. public slots:
  33. void setCheckedSilently(bool checked)
  34. {
  35. bool blocked = blockSignals(true);
  36. setChecked(checked);
  37. blockSignals(blocked);
  38. }
  39. };
  40. class SilentUpdateSpinBox : public QSpinBox {
  41. Q_OBJECT
  42. public slots:
  43. void setValueSilently(int val)
  44. {
  45. bool blocked = blockSignals(true);
  46. setValue(val);
  47. blockSignals(blocked);
  48. }
  49. };
  50. class OBSFFDeleter
  51. {
  52. public:
  53. void operator()(const ff_format_desc *format)
  54. {
  55. ff_format_desc_free(format);
  56. }
  57. void operator()(const ff_codec_desc *codec)
  58. {
  59. ff_codec_desc_free(codec);
  60. }
  61. };
  62. using OBSFFCodecDesc = std::unique_ptr<const ff_codec_desc,
  63. OBSFFDeleter>;
  64. using OBSFFFormatDesc = std::unique_ptr<const ff_format_desc,
  65. OBSFFDeleter>;
  66. class OBSBasicSettings : public QDialog {
  67. Q_OBJECT
  68. private:
  69. OBSBasic *main;
  70. std::unique_ptr<Ui::OBSBasicSettings> ui;
  71. bool generalChanged = false;
  72. bool stream1Changed = false;
  73. bool outputsChanged = false;
  74. bool audioChanged = false;
  75. bool videoChanged = false;
  76. bool hotkeysChanged = false;
  77. bool advancedChanged = false;
  78. int pageIndex = 0;
  79. bool loading = true;
  80. std::string savedTheme;
  81. int lastSimpleRecQualityIdx = 0;
  82. OBSFFFormatDesc formats;
  83. OBSPropertiesView *streamProperties = nullptr;
  84. OBSPropertiesView *streamEncoderProps = nullptr;
  85. OBSPropertiesView *recordEncoderProps = nullptr;
  86. QPointer<QLabel> advOutRecWarning;
  87. QPointer<QLabel> simpleOutRecWarning;
  88. QString curPreset;
  89. QString curQSVPreset;
  90. QString curNVENCPreset;
  91. QString curAMDPreset;
  92. QString curAdvStreamEncoder;
  93. QString curAdvRecordEncoder;
  94. using AudioSource_t =
  95. std::tuple<OBSWeakSource,
  96. QPointer<QCheckBox>, QPointer<QSpinBox>,
  97. QPointer<QCheckBox>, QPointer<QSpinBox>>;
  98. std::vector<AudioSource_t> audioSources;
  99. std::vector<OBSSignal> audioSourceSignals;
  100. OBSSignal sourceCreated;
  101. OBSSignal channelChanged;
  102. std::vector<std::pair<bool, QPointer<OBSHotkeyWidget>>> hotkeys;
  103. OBSSignal hotkeyRegistered;
  104. OBSSignal hotkeyUnregistered;
  105. uint32_t outputCX = 0;
  106. uint32_t outputCY = 0;
  107. void SaveCombo(QComboBox *widget, const char *section,
  108. const char *value);
  109. void SaveComboData(QComboBox *widget, const char *section,
  110. const char *value);
  111. void SaveCheckBox(QAbstractButton *widget, const char *section,
  112. const char *value, bool invert = false);
  113. void SaveEdit(QLineEdit *widget, const char *section,
  114. const char *value);
  115. void SaveSpinBox(QSpinBox *widget, const char *section,
  116. const char *value);
  117. void SaveFormat(QComboBox *combo);
  118. void SaveEncoder(QComboBox *combo, const char *section,
  119. const char *value);
  120. inline bool Changed() const
  121. {
  122. return generalChanged || outputsChanged || stream1Changed ||
  123. audioChanged || videoChanged || advancedChanged ||
  124. hotkeysChanged;
  125. }
  126. inline void EnableApplyButton(bool en)
  127. {
  128. ui->buttonBox->button(QDialogButtonBox::Apply)->setEnabled(en);
  129. }
  130. inline void ClearChanged()
  131. {
  132. generalChanged = false;
  133. stream1Changed = false;
  134. outputsChanged = false;
  135. audioChanged = false;
  136. videoChanged = false;
  137. hotkeysChanged = false;
  138. advancedChanged= false;
  139. EnableApplyButton(false);
  140. }
  141. #ifdef _WIN32
  142. bool aeroWasDisabled = false;
  143. QCheckBox *toggleAero = nullptr;
  144. void ToggleDisableAero(bool checked);
  145. #endif
  146. void HookWidget(QWidget *widget, const char *signal, const char *slot);
  147. bool QueryChanges();
  148. void LoadServiceTypes();
  149. void LoadEncoderTypes();
  150. void LoadColorRanges();
  151. void LoadFormats();
  152. void ReloadCodecs(const ff_format_desc *formatDesc);
  153. void LoadGeneralSettings();
  154. void LoadStream1Settings();
  155. void LoadOutputSettings();
  156. void LoadAudioSettings();
  157. void LoadVideoSettings();
  158. void LoadHotkeySettings(obs_hotkey_id ignoreKey=OBS_INVALID_HOTKEY_ID);
  159. void LoadAdvancedSettings();
  160. void LoadSettings(bool changedOnly);
  161. OBSPropertiesView *CreateEncoderPropertyView(const char *encoder,
  162. const char *path, bool changed = false);
  163. /* general */
  164. void LoadLanguageList();
  165. void LoadThemeList();
  166. /* output */
  167. void LoadSimpleOutputSettings();
  168. void LoadAdvOutputStreamingSettings();
  169. void LoadAdvOutputStreamingEncoderProperties();
  170. void LoadAdvOutputRecordingSettings();
  171. void LoadAdvOutputRecordingEncoderProperties();
  172. void LoadAdvOutputFFmpegSettings();
  173. void LoadAdvOutputAudioSettings();
  174. void SetAdvOutputFFmpegEnablement(
  175. ff_codec_type encoderType, bool enabled,
  176. bool enableEncode = false);
  177. /* audio */
  178. void LoadListValues(QComboBox *widget, obs_property_t *prop, int index);
  179. void LoadAudioDevices();
  180. void LoadAudioSources();
  181. /* video */
  182. void LoadRendererList();
  183. void ResetDownscales(uint32_t cx, uint32_t cy);
  184. void LoadDownscaleFilters();
  185. void LoadResolutionLists();
  186. void LoadFPSData();
  187. void SaveGeneralSettings();
  188. void SaveStream1Settings();
  189. void SaveOutputSettings();
  190. void SaveAudioSettings();
  191. void SaveVideoSettings();
  192. void SaveHotkeySettings();
  193. void SaveAdvancedSettings();
  194. void SaveSettings();
  195. void UpdateSimpleOutStreamDelayEstimate();
  196. void UpdateAdvOutStreamDelayEstimate();
  197. void FillSimpleRecordingValues();
  198. void FillSimpleStreamingValues();
  199. void FillAudioMonitoringDevices();
  200. void RecalcOutputResPixels(const char *resText);
  201. private slots:
  202. void on_theme_activated(int idx);
  203. void on_listWidget_itemSelectionChanged();
  204. void on_buttonBox_clicked(QAbstractButton *button);
  205. void on_streamType_currentIndexChanged(int idx);
  206. void on_simpleOutputBrowse_clicked();
  207. void on_advOutRecPathBrowse_clicked();
  208. void on_advOutFFPathBrowse_clicked();
  209. void on_advOutEncoder_currentIndexChanged(int idx);
  210. void on_advOutRecEncoder_currentIndexChanged(int idx);
  211. void on_advOutFFIgnoreCompat_stateChanged(int state);
  212. void on_advOutFFFormat_currentIndexChanged(int idx);
  213. void on_advOutFFAEncoder_currentIndexChanged(int idx);
  214. void on_advOutFFVEncoder_currentIndexChanged(int idx);
  215. void on_advOutFFType_currentIndexChanged(int idx);
  216. void on_colorFormat_currentIndexChanged(const QString &text);
  217. void on_filenameFormatting_textEdited(const QString &text);
  218. void on_outputResolution_editTextChanged(const QString &text);
  219. void on_baseResolution_editTextChanged(const QString &text);
  220. void on_disableOSXVSync_clicked();
  221. void GeneralChanged();
  222. void AudioChanged();
  223. void AudioChangedRestart();
  224. void ReloadAudioSources();
  225. void OutputsChanged();
  226. void Stream1Changed();
  227. void VideoChanged();
  228. void VideoChangedResolution();
  229. void VideoChangedRestart();
  230. void HotkeysChanged();
  231. void ReloadHotkeys(obs_hotkey_id ignoreKey=OBS_INVALID_HOTKEY_ID);
  232. void AdvancedChanged();
  233. void AdvancedChangedRestart();
  234. void UpdateStreamDelayEstimate();
  235. void UpdateAutomaticReplayBufferCheckboxes();
  236. void AdvOutRecCheckWarnings();
  237. void SimpleRecordingQualityChanged();
  238. void SimpleRecordingEncoderChanged();
  239. void SimpleRecordingQualityLosslessWarning(int idx);
  240. void SimpleReplayBufferChanged();
  241. void SimpleStreamingEncoderChanged();
  242. protected:
  243. virtual void closeEvent(QCloseEvent *event);
  244. public:
  245. OBSBasicSettings(QWidget *parent);
  246. ~OBSBasicSettings();
  247. };