12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #include "OBSDock.hpp"
- #include <widgets/OBSBasic.hpp>
- #include <QCheckBox>
- #include <QMessageBox>
- #include "moc_OBSDock.cpp"
- void OBSDock::closeEvent(QCloseEvent *event)
- {
- auto msgBox = []() {
- QMessageBox msgbox(App()->GetMainWindow());
- msgbox.setWindowTitle(QTStr("DockCloseWarning.Title"));
- msgbox.setText(QTStr("DockCloseWarning.Text"));
- msgbox.setIcon(QMessageBox::Icon::Information);
- msgbox.addButton(QMessageBox::Ok);
- QCheckBox *cb = new QCheckBox(QTStr("DoNotShowAgain"));
- msgbox.setCheckBox(cb);
- msgbox.exec();
- if (cb->isChecked()) {
- config_set_bool(App()->GetUserConfig(), "General", "WarnedAboutClosingDocks", true);
- config_save_safe(App()->GetUserConfig(), "tmp", nullptr);
- }
- };
- bool warned = config_get_bool(App()->GetUserConfig(), "General", "WarnedAboutClosingDocks");
- if (!OBSBasic::Get()->Closing() && !warned) {
- QMetaObject::invokeMethod(App(), "Exec", Qt::QueuedConnection, Q_ARG(VoidFunc, msgBox));
- }
- QDockWidget::closeEvent(event);
- if (widget() && event->isAccepted()) {
- QEvent widgetEvent(QEvent::Type(QEvent::User + QEvent::Close));
- qApp->sendEvent(widget(), &widgetEvent);
- }
- }
- void OBSDock::showEvent(QShowEvent *event)
- {
- QDockWidget::showEvent(event);
- }
|