f53df7da64
Code submissions have continually suffered from formatting inconsistencies that constantly have to be addressed. Using clang-format simplifies this by making code formatting more consistent, and allows automation of the code formatting so that maintainers can focus more on the code itself instead of code formatting.
171 lines
4.8 KiB
C++
171 lines
4.8 KiB
C++
#include <QVBoxLayout>
|
|
#include <QHBoxLayout>
|
|
#include <QGridLayout>
|
|
#include <QScrollArea>
|
|
#include <QPushButton>
|
|
#include <QLabel>
|
|
#include "window-basic-adv-audio.hpp"
|
|
#include "window-basic-main.hpp"
|
|
#include "item-widget-helpers.hpp"
|
|
#include "adv-audio-control.hpp"
|
|
#include "obs-app.hpp"
|
|
#include "qt-wrappers.hpp"
|
|
|
|
Q_DECLARE_METATYPE(OBSSource);
|
|
|
|
OBSBasicAdvAudio::OBSBasicAdvAudio(QWidget *parent)
|
|
: QDialog(parent),
|
|
sourceAddedSignal(obs_get_signal_handler(), "source_activate",
|
|
OBSSourceAdded, this),
|
|
sourceRemovedSignal(obs_get_signal_handler(), "source_deactivate",
|
|
OBSSourceRemoved, this)
|
|
{
|
|
QScrollArea *scrollArea;
|
|
QVBoxLayout *vlayout;
|
|
QWidget *widget;
|
|
QLabel *label;
|
|
|
|
int idx = 0;
|
|
mainLayout = new QGridLayout;
|
|
mainLayout->setContentsMargins(0, 0, 0, 0);
|
|
label = new QLabel(QTStr("Basic.AdvAudio.Name"));
|
|
label->setAlignment(Qt::AlignHCenter);
|
|
mainLayout->addWidget(label, 0, idx++);
|
|
label = new QLabel(QTStr("Basic.AdvAudio.Volume"));
|
|
label->setAlignment(Qt::AlignHCenter);
|
|
mainLayout->addWidget(label, 0, idx++);
|
|
label = new QLabel(QTStr("Basic.AdvAudio.Mono"));
|
|
label->setAlignment(Qt::AlignHCenter);
|
|
mainLayout->addWidget(label, 0, idx++);
|
|
label = new QLabel(QTStr("Basic.AdvAudio.Balance"));
|
|
label->setAlignment(Qt::AlignHCenter);
|
|
mainLayout->addWidget(label, 0, idx++);
|
|
label = new QLabel(QTStr("Basic.AdvAudio.SyncOffset"));
|
|
label->setAlignment(Qt::AlignHCenter);
|
|
mainLayout->addWidget(label, 0, idx++);
|
|
#if defined(_WIN32) || defined(__APPLE__) || HAVE_PULSEAUDIO
|
|
label = new QLabel(QTStr("Basic.AdvAudio.Monitoring"));
|
|
label->setAlignment(Qt::AlignHCenter);
|
|
mainLayout->addWidget(label, 0, idx++);
|
|
#endif
|
|
label = new QLabel(QTStr("Basic.AdvAudio.AudioTracks"));
|
|
label->setAlignment(Qt::AlignHCenter);
|
|
mainLayout->addWidget(label, 0, idx++);
|
|
|
|
controlArea = new QWidget;
|
|
controlArea->setLayout(mainLayout);
|
|
controlArea->setSizePolicy(QSizePolicy::Preferred,
|
|
QSizePolicy::Preferred);
|
|
|
|
vlayout = new QVBoxLayout;
|
|
vlayout->addWidget(controlArea);
|
|
//vlayout->setAlignment(controlArea, Qt::AlignTop);
|
|
widget = new QWidget;
|
|
widget->setLayout(vlayout);
|
|
widget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
|
|
|
|
scrollArea = new QScrollArea;
|
|
scrollArea->setWidget(widget);
|
|
scrollArea->setWidgetResizable(true);
|
|
|
|
QPushButton *closeButton = new QPushButton(QTStr("Close"));
|
|
|
|
QHBoxLayout *buttonLayout = new QHBoxLayout;
|
|
buttonLayout->addStretch();
|
|
buttonLayout->addWidget(closeButton);
|
|
|
|
vlayout = new QVBoxLayout;
|
|
vlayout->setContentsMargins(11, 11, 11, 11);
|
|
vlayout->addWidget(scrollArea);
|
|
vlayout->addLayout(buttonLayout);
|
|
setLayout(vlayout);
|
|
|
|
connect(closeButton, &QPushButton::clicked, [this]() { close(); });
|
|
|
|
installEventFilter(CreateShortcutFilter());
|
|
|
|
/* enum user scene/sources */
|
|
obs_enum_sources(EnumSources, this);
|
|
|
|
resize(1000, 340);
|
|
setWindowTitle(QTStr("Basic.AdvAudio"));
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
setSizeGripEnabled(true);
|
|
setWindowModality(Qt::NonModal);
|
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
|
}
|
|
|
|
OBSBasicAdvAudio::~OBSBasicAdvAudio()
|
|
{
|
|
OBSBasic *main = reinterpret_cast<OBSBasic *>(parent());
|
|
|
|
for (size_t i = 0; i < controls.size(); ++i)
|
|
delete controls[i];
|
|
|
|
main->SaveProject();
|
|
}
|
|
|
|
bool OBSBasicAdvAudio::EnumSources(void *param, obs_source_t *source)
|
|
{
|
|
OBSBasicAdvAudio *dialog = reinterpret_cast<OBSBasicAdvAudio *>(param);
|
|
uint32_t flags = obs_source_get_output_flags(source);
|
|
|
|
if ((flags & OBS_SOURCE_AUDIO) != 0 && obs_source_active(source))
|
|
dialog->AddAudioSource(source);
|
|
|
|
return true;
|
|
}
|
|
|
|
void OBSBasicAdvAudio::OBSSourceAdded(void *param, calldata_t *calldata)
|
|
{
|
|
OBSSource source((obs_source_t *)calldata_ptr(calldata, "source"));
|
|
|
|
QMetaObject::invokeMethod(reinterpret_cast<OBSBasicAdvAudio *>(param),
|
|
"SourceAdded", Q_ARG(OBSSource, source));
|
|
}
|
|
|
|
void OBSBasicAdvAudio::OBSSourceRemoved(void *param, calldata_t *calldata)
|
|
{
|
|
OBSSource source((obs_source_t *)calldata_ptr(calldata, "source"));
|
|
|
|
QMetaObject::invokeMethod(reinterpret_cast<OBSBasicAdvAudio *>(param),
|
|
"SourceRemoved", Q_ARG(OBSSource, source));
|
|
}
|
|
|
|
inline void OBSBasicAdvAudio::AddAudioSource(obs_source_t *source)
|
|
{
|
|
OBSAdvAudioCtrl *control = new OBSAdvAudioCtrl(mainLayout, source);
|
|
|
|
InsertQObjectByName(controls, control);
|
|
|
|
for (auto control : controls) {
|
|
control->ShowAudioControl(mainLayout);
|
|
}
|
|
}
|
|
|
|
void OBSBasicAdvAudio::SourceAdded(OBSSource source)
|
|
{
|
|
uint32_t flags = obs_source_get_output_flags(source);
|
|
|
|
if ((flags & OBS_SOURCE_AUDIO) == 0)
|
|
return;
|
|
|
|
AddAudioSource(source);
|
|
}
|
|
|
|
void OBSBasicAdvAudio::SourceRemoved(OBSSource source)
|
|
{
|
|
uint32_t flags = obs_source_get_output_flags(source);
|
|
|
|
if ((flags & OBS_SOURCE_AUDIO) == 0)
|
|
return;
|
|
|
|
for (size_t i = 0; i < controls.size(); i++) {
|
|
if (controls[i]->GetSource() == source) {
|
|
delete controls[i];
|
|
controls.erase(controls.begin() + i);
|
|
break;
|
|
}
|
|
}
|
|
}
|