window-basic-properties.cpp 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. /******************************************************************************
  2. Copyright (C) 2014 by Hugh Bailey <[email protected]>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ******************************************************************************/
  14. #include "obs-app.hpp"
  15. #include "window-basic-properties.hpp"
  16. #include "window-basic-main.hpp"
  17. #include "qt-wrappers.hpp"
  18. #include "display-helpers.hpp"
  19. #include "properties-view.hpp"
  20. #include <QCloseEvent>
  21. #include <QScreen>
  22. #include <QWindow>
  23. #include <QMessageBox>
  24. using namespace std;
  25. OBSBasicProperties::OBSBasicProperties(QWidget *parent, OBSSource source_)
  26. : QDialog (parent),
  27. main (qobject_cast<OBSBasic*>(parent)),
  28. acceptClicked (false),
  29. ui (new Ui::OBSBasicProperties),
  30. source (source_),
  31. removedSignal (obs_source_get_signal_handler(source),
  32. "remove", OBSBasicProperties::SourceRemoved,
  33. this),
  34. renamedSignal (obs_source_get_signal_handler(source),
  35. "rename", OBSBasicProperties::SourceRenamed,
  36. this),
  37. oldSettings (obs_data_create()),
  38. buttonBox (new QDialogButtonBox(this))
  39. {
  40. int cx = (int)config_get_int(App()->GlobalConfig(), "PropertiesWindow",
  41. "cx");
  42. int cy = (int)config_get_int(App()->GlobalConfig(), "PropertiesWindow",
  43. "cy");
  44. buttonBox->setStandardButtons(QDialogButtonBox::Ok |
  45. QDialogButtonBox::Cancel);
  46. buttonBox->setObjectName(QStringLiteral("buttonBox"));
  47. ui->setupUi(this);
  48. if (cx > 400 && cy > 400)
  49. resize(cx, cy);
  50. /* The OBSData constructor increments the reference once */
  51. obs_data_release(oldSettings);
  52. OBSData settings = obs_source_get_settings(source);
  53. obs_data_apply(oldSettings, settings);
  54. obs_data_release(settings);
  55. view = new OBSPropertiesView(settings, source,
  56. (PropertiesReloadCallback)obs_source_properties,
  57. (PropertiesUpdateCallback)obs_source_update);
  58. layout()->addWidget(view);
  59. layout()->addWidget(buttonBox);
  60. layout()->setAlignment(buttonBox, Qt::AlignRight | Qt::AlignBottom);
  61. layout()->setAlignment(view, Qt::AlignBottom);
  62. view->setMaximumHeight(250);
  63. view->setMinimumHeight(150);
  64. view->show();
  65. installEventFilter(CreateShortcutFilter());
  66. connect(view, SIGNAL(PropertiesResized()),
  67. this, SLOT(OnPropertiesResized()));
  68. connect(windowHandle(), &QWindow::screenChanged, [this]() {
  69. QSize size = GetPixelSize(ui->preview);
  70. obs_display_resize(display, size.width(), size.height());
  71. });
  72. const char *name = obs_source_get_name(source);
  73. setWindowTitle(QTStr("Basic.PropertiesWindow").arg(QT_UTF8(name)));
  74. obs_source_inc_showing(source);
  75. updatePropertiesSignal.Connect(obs_source_get_signal_handler(source),
  76. "update_properties",
  77. OBSBasicProperties::UpdateProperties,
  78. this);
  79. }
  80. OBSBasicProperties::~OBSBasicProperties()
  81. {
  82. obs_source_dec_showing(source);
  83. main->SaveProject();
  84. }
  85. void OBSBasicProperties::SourceRemoved(void *data, calldata_t *params)
  86. {
  87. QMetaObject::invokeMethod(static_cast<OBSBasicProperties*>(data),
  88. "close");
  89. UNUSED_PARAMETER(params);
  90. }
  91. void OBSBasicProperties::SourceRenamed(void *data, calldata_t *params)
  92. {
  93. const char *name = calldata_string(params, "new_name");
  94. QString title = QTStr("Basic.PropertiesWindow").arg(QT_UTF8(name));
  95. QMetaObject::invokeMethod(static_cast<OBSBasicProperties*>(data),
  96. "setWindowTitle", Q_ARG(QString, title));
  97. }
  98. void OBSBasicProperties::UpdateProperties(void *data, calldata_t *)
  99. {
  100. QMetaObject::invokeMethod(static_cast<OBSBasicProperties*>(data)->view,
  101. "ReloadProperties");
  102. }
  103. void OBSBasicProperties::on_buttonBox_clicked(QAbstractButton *button)
  104. {
  105. QDialogButtonBox::ButtonRole val = buttonBox->buttonRole(button);
  106. if (val == QDialogButtonBox::AcceptRole) {
  107. acceptClicked = true;
  108. close();
  109. if (view->DeferUpdate())
  110. view->UpdateSettings();
  111. }
  112. if (val == QDialogButtonBox::RejectRole) {
  113. obs_data_t *settings = obs_source_get_settings(source);
  114. obs_data_clear(settings);
  115. obs_data_release(settings);
  116. if (view->DeferUpdate())
  117. obs_data_apply(settings, oldSettings);
  118. else
  119. obs_source_update(source, oldSettings);
  120. close();
  121. }
  122. }
  123. void OBSBasicProperties::DrawPreview(void *data, uint32_t cx, uint32_t cy)
  124. {
  125. OBSBasicProperties *window = static_cast<OBSBasicProperties*>(data);
  126. if (!window->source)
  127. return;
  128. uint32_t sourceCX = max(obs_source_get_width(window->source), 1u);
  129. uint32_t sourceCY = max(obs_source_get_height(window->source), 1u);
  130. int x, y;
  131. int newCX, newCY;
  132. float scale;
  133. GetScaleAndCenterPos(sourceCX, sourceCY, cx, cy, x, y, scale);
  134. newCX = int(scale * float(sourceCX));
  135. newCY = int(scale * float(sourceCY));
  136. gs_viewport_push();
  137. gs_projection_push();
  138. gs_ortho(0.0f, float(sourceCX), 0.0f, float(sourceCY),
  139. -100.0f, 100.0f);
  140. gs_set_viewport(x, y, newCX, newCY);
  141. obs_source_video_render(window->source);
  142. gs_projection_pop();
  143. gs_viewport_pop();
  144. }
  145. void OBSBasicProperties::OnPropertiesResized()
  146. {
  147. QSize size = GetPixelSize(ui->preview);
  148. obs_display_resize(display, size.width(), size.height());
  149. }
  150. void OBSBasicProperties::resizeEvent(QResizeEvent *event)
  151. {
  152. if (isVisible()) {
  153. QSize size = GetPixelSize(ui->preview);
  154. obs_display_resize(display, size.width(), size.height());
  155. }
  156. QDialog::resizeEvent(event);
  157. }
  158. void OBSBasicProperties::Cleanup()
  159. {
  160. // remove draw callback and release display in case our drawable
  161. // surfaces go away before the destructor gets called
  162. obs_display_remove_draw_callback(display,
  163. OBSBasicProperties::DrawPreview, this);
  164. display = nullptr;
  165. config_set_int(App()->GlobalConfig(), "PropertiesWindow", "cx",
  166. width());
  167. config_set_int(App()->GlobalConfig(), "PropertiesWindow", "cy",
  168. height());
  169. }
  170. void OBSBasicProperties::reject()
  171. {
  172. if (!acceptClicked && (CheckSettings() != 0)) {
  173. if (!ConfirmQuit()) {
  174. return;
  175. }
  176. }
  177. Cleanup();
  178. done(0);
  179. }
  180. void OBSBasicProperties::closeEvent(QCloseEvent *event)
  181. {
  182. if (!acceptClicked && (CheckSettings() != 0)) {
  183. if (!ConfirmQuit()) {
  184. event->ignore();
  185. return;
  186. }
  187. }
  188. QDialog::closeEvent(event);
  189. if (!event->isAccepted())
  190. return;
  191. Cleanup();
  192. }
  193. void OBSBasicProperties::Init()
  194. {
  195. gs_init_data init_data = {};
  196. show();
  197. QSize previewSize = GetPixelSize(ui->preview);
  198. init_data.cx = uint32_t(previewSize.width());
  199. init_data.cy = uint32_t(previewSize.height());
  200. init_data.format = GS_RGBA;
  201. QTToGSWindow(ui->preview->winId(), init_data.window);
  202. display = obs_display_create(&init_data);
  203. if (display)
  204. obs_display_add_draw_callback(display,
  205. OBSBasicProperties::DrawPreview, this);
  206. }
  207. int OBSBasicProperties::CheckSettings()
  208. {
  209. OBSData currentSettings = obs_source_get_settings(source);
  210. const char *oldSettingsJson = obs_data_get_json(oldSettings);
  211. const char *currentSettingsJson = obs_data_get_json(currentSettings);
  212. int ret = strcmp(currentSettingsJson, oldSettingsJson);
  213. obs_data_release(currentSettings);
  214. return ret;
  215. }
  216. bool OBSBasicProperties::ConfirmQuit()
  217. {
  218. QMessageBox::StandardButton button;
  219. button = QMessageBox::question(this,
  220. QTStr("Basic.PropertiesWindow.ConfirmTitle"),
  221. QTStr("Basic.PropertiesWindow.Confirm"),
  222. QMessageBox::Save | QMessageBox::Discard |
  223. QMessageBox::Cancel);
  224. switch (button) {
  225. case QMessageBox::Save:
  226. if (view->DeferUpdate())
  227. view->UpdateSettings();
  228. // Do nothing because the settings are already updated
  229. break;
  230. case QMessageBox::Discard:
  231. obs_source_update(source, oldSettings);
  232. break;
  233. case QMessageBox::Cancel:
  234. return false;
  235. break;
  236. default:
  237. /* If somehow the dialog fails to show, just default to
  238. * saving the settings. */
  239. break;
  240. }
  241. return true;
  242. }