window-basic-settings.hpp 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  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 curAdvStreamEncoder;
  92. QString curAdvRecordEncoder;
  93. using AudioSource_t =
  94. std::tuple<OBSWeakSource,
  95. QPointer<QCheckBox>, QPointer<QSpinBox>,
  96. QPointer<QCheckBox>, QPointer<QSpinBox>>;
  97. std::vector<AudioSource_t> audioSources;
  98. std::vector<OBSSignal> audioSourceSignals;
  99. OBSSignal sourceCreated;
  100. OBSSignal channelChanged;
  101. std::vector<std::pair<bool, QPointer<OBSHotkeyWidget>>> hotkeys;
  102. OBSSignal hotkeyRegistered;
  103. OBSSignal hotkeyUnregistered;
  104. uint32_t outputCX = 0;
  105. uint32_t outputCY = 0;
  106. void SaveCombo(QComboBox *widget, const char *section,
  107. const char *value);
  108. void SaveComboData(QComboBox *widget, const char *section,
  109. const char *value);
  110. void SaveCheckBox(QAbstractButton *widget, const char *section,
  111. const char *value, bool invert = false);
  112. void SaveEdit(QLineEdit *widget, const char *section,
  113. const char *value);
  114. void SaveSpinBox(QSpinBox *widget, const char *section,
  115. const char *value);
  116. void SaveFormat(QComboBox *combo);
  117. void SaveEncoder(QComboBox *combo, const char *section,
  118. const char *value);
  119. inline bool Changed() const
  120. {
  121. return generalChanged || outputsChanged || stream1Changed ||
  122. audioChanged || videoChanged || advancedChanged ||
  123. hotkeysChanged;
  124. }
  125. inline void EnableApplyButton(bool en)
  126. {
  127. ui->buttonBox->button(QDialogButtonBox::Apply)->setEnabled(en);
  128. }
  129. inline void ClearChanged()
  130. {
  131. generalChanged = false;
  132. stream1Changed = false;
  133. outputsChanged = false;
  134. audioChanged = false;
  135. videoChanged = false;
  136. hotkeysChanged = false;
  137. advancedChanged= false;
  138. EnableApplyButton(false);
  139. }
  140. #ifdef _WIN32
  141. bool aeroWasDisabled = false;
  142. QCheckBox *toggleAero = nullptr;
  143. void ToggleDisableAero(bool checked);
  144. #endif
  145. void HookWidget(QWidget *widget, const char *signal, const char *slot);
  146. bool QueryChanges();
  147. void LoadServiceTypes();
  148. void LoadEncoderTypes();
  149. void LoadColorRanges();
  150. void LoadFormats();
  151. void ReloadCodecs(const ff_format_desc *formatDesc);
  152. void LoadGeneralSettings();
  153. void LoadStream1Settings();
  154. void LoadOutputSettings();
  155. void LoadAudioSettings();
  156. void LoadVideoSettings();
  157. void LoadHotkeySettings(obs_hotkey_id ignoreKey=OBS_INVALID_HOTKEY_ID);
  158. void LoadAdvancedSettings();
  159. void LoadSettings(bool changedOnly);
  160. OBSPropertiesView *CreateEncoderPropertyView(const char *encoder,
  161. const char *path, bool changed = false);
  162. /* general */
  163. void LoadLanguageList();
  164. void LoadThemeList();
  165. /* output */
  166. void LoadSimpleOutputSettings();
  167. void LoadAdvOutputStreamingSettings();
  168. void LoadAdvOutputStreamingEncoderProperties();
  169. void LoadAdvOutputRecordingSettings();
  170. void LoadAdvOutputRecordingEncoderProperties();
  171. void LoadAdvOutputFFmpegSettings();
  172. void LoadAdvOutputAudioSettings();
  173. void SetAdvOutputFFmpegEnablement(
  174. ff_codec_type encoderType, bool enabled,
  175. bool enableEncode = false);
  176. /* audio */
  177. void LoadListValues(QComboBox *widget, obs_property_t *prop, int index);
  178. void LoadAudioDevices();
  179. void LoadAudioSources();
  180. /* video */
  181. void LoadRendererList();
  182. void ResetDownscales(uint32_t cx, uint32_t cy);
  183. void LoadDownscaleFilters();
  184. void LoadResolutionLists();
  185. void LoadFPSData();
  186. void SaveGeneralSettings();
  187. void SaveStream1Settings();
  188. void SaveOutputSettings();
  189. void SaveAudioSettings();
  190. void SaveVideoSettings();
  191. void SaveHotkeySettings();
  192. void SaveAdvancedSettings();
  193. void SaveSettings();
  194. void UpdateSimpleOutStreamDelayEstimate();
  195. void UpdateAdvOutStreamDelayEstimate();
  196. void FillSimpleRecordingValues();
  197. void FillSimpleStreamingValues();
  198. void RecalcOutputResPixels(const char *resText);
  199. private slots:
  200. void on_theme_activated(int idx);
  201. void on_listWidget_itemSelectionChanged();
  202. void on_buttonBox_clicked(QAbstractButton *button);
  203. void on_streamType_currentIndexChanged(int idx);
  204. void on_simpleOutputBrowse_clicked();
  205. void on_advOutRecPathBrowse_clicked();
  206. void on_advOutFFPathBrowse_clicked();
  207. void on_advOutEncoder_currentIndexChanged(int idx);
  208. void on_advOutRecEncoder_currentIndexChanged(int idx);
  209. void on_advOutFFFormat_currentIndexChanged(int idx);
  210. void on_advOutFFAEncoder_currentIndexChanged(int idx);
  211. void on_advOutFFVEncoder_currentIndexChanged(int idx);
  212. void on_advOutFFType_currentIndexChanged(int idx);
  213. void on_colorFormat_currentIndexChanged(const QString &text);
  214. void on_filenameFormatting_textEdited(const QString &text);
  215. void on_outputResolution_editTextChanged(const QString &text);
  216. void on_baseResolution_editTextChanged(const QString &text);
  217. void on_disableOSXVSync_clicked();
  218. void GeneralChanged();
  219. void AudioChanged();
  220. void AudioChangedRestart();
  221. void ReloadAudioSources();
  222. void OutputsChanged();
  223. void Stream1Changed();
  224. void VideoChanged();
  225. void VideoChangedResolution();
  226. void VideoChangedRestart();
  227. void HotkeysChanged();
  228. void ReloadHotkeys(obs_hotkey_id ignoreKey=OBS_INVALID_HOTKEY_ID);
  229. void AdvancedChanged();
  230. void AdvancedChangedRestart();
  231. void UpdateStreamDelayEstimate();
  232. void AdvOutRecCheckWarnings();
  233. void SimpleRecordingQualityChanged();
  234. void SimpleRecordingEncoderChanged();
  235. void SimpleRecordingQualityLosslessWarning(int idx);
  236. void SimpleStreamingEncoderChanged();
  237. protected:
  238. virtual void closeEvent(QCloseEvent *event);
  239. public:
  240. OBSBasicSettings(QWidget *parent);
  241. };