window-basic-settings.hpp 7.7 KB

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