frontend: Add new Idian widgets

Co-Authored-By: derrod <rodney@rodney.io>
This commit is contained in:
Warchamp7
2025-03-18 19:56:16 -07:00
committed by Ryan Foster
parent 50cdabbb5f
commit e8f6143769
33 changed files with 2519 additions and 11 deletions

View File

@@ -42,6 +42,10 @@
#endif
#include <wizards/AutoConfig.hpp>
#ifdef ENABLE_WIDGET_PLAYGROUND
#include "dialogs/OBSIdianPlayground.hpp"
#endif
#include <qt-wrappers.hpp>
#include <QDesktopServices>
@@ -635,6 +639,16 @@ void OBSBasic::on_stats_triggered()
stats = statsDlg;
}
void OBSBasic::on_widgetPlayground_triggered()
{
#ifdef ENABLE_WIDGET_PLAYGROUND
OBSIdianPlayground playground(this);
playground.setModal(true);
playground.show();
playground.exec();
#endif
}
void OBSBasic::on_actionShowAbout_triggered()
{
if (about)