window-basic-settings.hpp 7.3 KB

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