yolobs-studio/UI/qt-wrappers.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

121 lines
3.9 KiB
C++
Raw Permalink Normal View History

2016-02-23 23:16:51 +00:00
/******************************************************************************
Copyright (C) 2013 by Hugh Bailey <obs.jim@gmail.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
#pragma once
2018-12-16 16:14:58 +00:00
#include <QApplication>
2017-06-29 19:01:10 +00:00
#include <QMessageBox>
2016-02-23 23:16:51 +00:00
#include <QWidget>
2018-12-16 16:14:58 +00:00
#include <QThread>
2016-02-23 23:16:51 +00:00
#include <obs.hpp>
2019-07-27 12:47:10 +00:00
#include <functional>
2016-02-23 23:16:51 +00:00
#include <memory>
#include <vector>
#define QT_UTF8(str) QString::fromUtf8(str)
#define QT_TO_UTF8(str) str.toUtf8().constData()
class QDataStream;
2020-12-22 17:32:50 +00:00
class QComboBox;
2016-02-23 23:16:51 +00:00
class QWidget;
class QLayout;
2017-06-29 19:01:10 +00:00
class QString;
2016-02-23 23:16:51 +00:00
struct gs_window;
2017-06-29 19:01:10 +00:00
class OBSMessageBox {
public:
2019-09-22 21:19:10 +00:00
static QMessageBox::StandardButton
question(QWidget *parent, const QString &title, const QString &text,
QMessageBox::StandardButtons buttons =
QMessageBox::StandardButtons(QMessageBox::Yes |
QMessageBox::No),
QMessageBox::StandardButton defaultButton =
QMessageBox::NoButton);
static void information(QWidget *parent, const QString &title,
const QString &text);
static void warning(QWidget *parent, const QString &title,
const QString &text, bool enableRichText = false);
static void critical(QWidget *parent, const QString &title,
const QString &text);
2017-06-29 19:01:10 +00:00
};
2016-02-23 23:16:51 +00:00
void OBSErrorBox(QWidget *parent, const char *msg, ...);
void QTToGSWindow(WId windowId, gs_window &gswindow);
uint32_t TranslateQtKeyboardEventModifiers(Qt::KeyboardModifiers mods);
2019-09-22 21:19:10 +00:00
QDataStream &
operator<<(QDataStream &out,
const std::vector<std::shared_ptr<OBSSignal>> &signal_vec);
2016-02-23 23:16:51 +00:00
QDataStream &operator>>(QDataStream &in,
2019-09-22 21:19:10 +00:00
std::vector<std::shared_ptr<OBSSignal>> &signal_vec);
2016-02-23 23:16:51 +00:00
QDataStream &operator<<(QDataStream &out, const OBSScene &scene);
QDataStream &operator>>(QDataStream &in, OBSScene &scene);
QDataStream &operator<<(QDataStream &out, const OBSSceneItem &si);
QDataStream &operator>>(QDataStream &in, OBSSceneItem &si);
2019-07-27 12:47:10 +00:00
QThread *CreateQThread(std::function<void()> func);
void ExecuteFuncSafeBlock(std::function<void()> func);
2019-09-22 21:19:10 +00:00
void ExecuteFuncSafeBlockMsgBox(std::function<void()> func,
const QString &title, const QString &text);
2019-07-27 12:47:10 +00:00
/* allows executing without message boxes if starting up, otherwise with a
* message box */
void EnableThreadedMessageBoxes(bool enable);
2019-09-22 21:19:10 +00:00
void ExecThreadedWithoutBlocking(std::function<void()> func,
const QString &title, const QString &text);
2019-07-27 12:47:10 +00:00
2016-02-23 23:16:51 +00:00
class SignalBlocker {
QWidget *widget;
bool blocked;
public:
inline explicit SignalBlocker(QWidget *widget_) : widget(widget_)
{
blocked = widget->blockSignals(true);
}
2019-09-22 21:19:10 +00:00
inline ~SignalBlocker() { widget->blockSignals(blocked); }
2016-02-23 23:16:51 +00:00
};
void DeleteLayout(QLayout *layout);
2018-12-16 16:14:58 +00:00
static inline Qt::ConnectionType WaitConnection()
{
return QThread::currentThread() == qApp->thread()
2019-09-22 21:19:10 +00:00
? Qt::DirectConnection
: Qt::BlockingQueuedConnection;
2018-12-16 16:14:58 +00:00
}
2019-09-22 21:19:10 +00:00
bool LineEditCanceled(QEvent *event);
bool LineEditChanged(QEvent *event);
2020-03-25 08:07:22 +00:00
2020-12-22 17:32:50 +00:00
void SetComboItemEnabled(QComboBox *c, int idx, bool enabled);
2020-03-25 08:07:22 +00:00
void setThemeID(QWidget *widget, const QString &themeID);
2020-10-01 20:15:25 +00:00
QString SelectDirectory(QWidget *parent, QString title, QString path);
QString SaveFile(QWidget *parent, QString title, QString path,
QString extensions);
QString OpenFile(QWidget *parent, QString title, QString path,
QString extensions);
QStringList OpenFiles(QWidget *parent, QString title, QString path,
QString extensions);