|
@@ -165,6 +165,8 @@ class OBSBasic : public OBSMainWindow {
|
|
|
DESIGNABLE true)
|
|
|
Q_PROPERTY(QIcon defaultIcon READ GetDefaultIcon WRITE SetDefaultIcon
|
|
|
DESIGNABLE true)
|
|
|
+ Q_PROPERTY(QIcon audioProcessOutputIcon READ GetAudioProcessOutputIcon
|
|
|
+ WRITE SetAudioProcessOutputIcon DESIGNABLE true)
|
|
|
|
|
|
friend class OBSAbout;
|
|
|
friend class OBSBasicPreview;
|
|
@@ -560,6 +562,7 @@ private:
|
|
|
QIcon groupIcon;
|
|
|
QIcon sceneIcon;
|
|
|
QIcon defaultIcon;
|
|
|
+ QIcon audioProcessOutputIcon;
|
|
|
|
|
|
QIcon GetImageIcon() const;
|
|
|
QIcon GetColorIcon() const;
|
|
@@ -574,6 +577,7 @@ private:
|
|
|
QIcon GetMediaIcon() const;
|
|
|
QIcon GetBrowserIcon() const;
|
|
|
QIcon GetDefaultIcon() const;
|
|
|
+ QIcon GetAudioProcessOutputIcon() const;
|
|
|
|
|
|
QSlider *tBar;
|
|
|
bool tBarActive = false;
|
|
@@ -773,6 +777,7 @@ private slots:
|
|
|
void SetGroupIcon(const QIcon &icon);
|
|
|
void SetSceneIcon(const QIcon &icon);
|
|
|
void SetDefaultIcon(const QIcon &icon);
|
|
|
+ void SetAudioProcessOutputIcon(const QIcon &icon);
|
|
|
|
|
|
void TBarChanged(int value);
|
|
|
void TBarReleased();
|