2015-03-17 19:00:10 -07:00
|
|
|
#include "visibility-item-widget.hpp"
|
|
|
|
#include "visibility-checkbox.hpp"
|
|
|
|
#include "qt-wrappers.hpp"
|
|
|
|
#include "obs-app.hpp"
|
|
|
|
#include <QListWidget>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QLabel>
|
|
|
|
|
|
|
|
VisibilityItemWidget::VisibilityItemWidget(obs_source_t *source_)
|
2019-06-22 22:13:45 -07:00
|
|
|
: source(source_),
|
|
|
|
enabledSignal(obs_source_get_signal_handler(source), "enable",
|
|
|
|
OBSSourceEnabled, this),
|
|
|
|
renamedSignal(obs_source_get_signal_handler(source), "rename",
|
|
|
|
OBSSourceRenamed, this)
|
2015-03-17 19:00:10 -07:00
|
|
|
{
|
|
|
|
const char *name = obs_source_get_name(source);
|
|
|
|
bool enabled = obs_source_enabled(source);
|
|
|
|
|
|
|
|
vis = new VisibilityCheckBox();
|
|
|
|
vis->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum);
|
|
|
|
/* Fix for non-apple systems where the spacing would be too big */
|
|
|
|
#ifndef __APPLE__
|
|
|
|
vis->setMaximumSize(16, 16);
|
|
|
|
#endif
|
|
|
|
vis->setChecked(enabled);
|
|
|
|
|
|
|
|
label = new QLabel(QT_UTF8(name));
|
|
|
|
label->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
|
|
|
|
|
|
|
|
QHBoxLayout *itemLayout = new QHBoxLayout();
|
|
|
|
itemLayout->addWidget(vis);
|
|
|
|
itemLayout->addWidget(label);
|
|
|
|
itemLayout->setContentsMargins(5, 2, 5, 2);
|
|
|
|
|
|
|
|
setLayout(itemLayout);
|
|
|
|
setStyleSheet("background-color: rgba(255, 255, 255, 0);");
|
|
|
|
|
2019-06-22 22:13:45 -07:00
|
|
|
connect(vis, SIGNAL(clicked(bool)), this,
|
|
|
|
SLOT(VisibilityClicked(bool)));
|
2015-03-17 19:00:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void VisibilityItemWidget::OBSSourceEnabled(void *param, calldata_t *data)
|
|
|
|
{
|
|
|
|
VisibilityItemWidget *window =
|
2019-06-22 22:13:45 -07:00
|
|
|
reinterpret_cast<VisibilityItemWidget *>(param);
|
2015-03-17 19:00:10 -07:00
|
|
|
bool enabled = calldata_bool(data, "enabled");
|
|
|
|
|
|
|
|
QMetaObject::invokeMethod(window, "SourceEnabled",
|
2019-06-22 22:13:45 -07:00
|
|
|
Q_ARG(bool, enabled));
|
2015-03-17 19:00:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void VisibilityItemWidget::OBSSourceRenamed(void *param, calldata_t *data)
|
|
|
|
{
|
|
|
|
VisibilityItemWidget *window =
|
2019-06-22 22:13:45 -07:00
|
|
|
reinterpret_cast<VisibilityItemWidget *>(param);
|
2015-03-17 19:00:10 -07:00
|
|
|
const char *name = calldata_string(data, "new_name");
|
|
|
|
|
|
|
|
QMetaObject::invokeMethod(window, "SourceRenamed",
|
2019-06-22 22:13:45 -07:00
|
|
|
Q_ARG(QString, QT_UTF8(name)));
|
2015-03-17 19:00:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void VisibilityItemWidget::VisibilityClicked(bool visible)
|
|
|
|
{
|
2019-10-05 22:33:25 -07:00
|
|
|
obs_source_set_enabled(source, visible);
|
2017-06-17 17:10:42 -07:00
|
|
|
}
|
|
|
|
|
2015-03-17 19:00:10 -07:00
|
|
|
void VisibilityItemWidget::SourceEnabled(bool enabled)
|
|
|
|
{
|
|
|
|
if (vis->isChecked() != enabled)
|
|
|
|
vis->setChecked(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VisibilityItemWidget::SourceRenamed(QString name)
|
|
|
|
{
|
|
|
|
if (label && name != label->text())
|
|
|
|
label->setText(name);
|
|
|
|
}
|
|
|
|
|
2019-06-22 22:13:45 -07:00
|
|
|
void VisibilityItemWidget::SetColor(const QColor &color, bool active_,
|
|
|
|
bool selected_)
|
2015-03-17 19:00:10 -07:00
|
|
|
{
|
|
|
|
/* Do not update unless the state has actually changed */
|
|
|
|
if (active_ == active && selected_ == selected)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QPalette pal = vis->palette();
|
|
|
|
pal.setColor(QPalette::WindowText, color);
|
|
|
|
vis->setPalette(pal);
|
|
|
|
|
|
|
|
label->setStyleSheet(QString("color: %1;").arg(color.name()));
|
|
|
|
|
|
|
|
active = active_;
|
|
|
|
selected = selected_;
|
|
|
|
}
|
|
|
|
|
|
|
|
VisibilityItemDelegate::VisibilityItemDelegate(QObject *parent)
|
|
|
|
: QStyledItemDelegate(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void VisibilityItemDelegate::paint(QPainter *painter,
|
2019-06-22 22:13:45 -07:00
|
|
|
const QStyleOptionViewItem &option,
|
|
|
|
const QModelIndex &index) const
|
2015-03-17 19:00:10 -07:00
|
|
|
{
|
|
|
|
QStyledItemDelegate::paint(painter, option, index);
|
|
|
|
|
|
|
|
QObject *parentObj = parent();
|
2019-06-22 22:13:45 -07:00
|
|
|
QListWidget *list = qobject_cast<QListWidget *>(parentObj);
|
2015-03-17 19:00:10 -07:00
|
|
|
if (!list)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QListWidgetItem *item = list->item(index.row());
|
|
|
|
VisibilityItemWidget *widget =
|
2019-06-22 22:13:45 -07:00
|
|
|
qobject_cast<VisibilityItemWidget *>(list->itemWidget(item));
|
2015-03-17 19:00:10 -07:00
|
|
|
if (!widget)
|
|
|
|
return;
|
|
|
|
|
|
|
|
bool selected = option.state.testFlag(QStyle::State_Selected);
|
|
|
|
bool active = option.state.testFlag(QStyle::State_Active);
|
|
|
|
|
|
|
|
QPalette palette = list->palette();
|
2015-05-01 03:53:20 -07:00
|
|
|
#if defined(_WIN32) || defined(__APPLE__)
|
2019-06-22 22:13:45 -07:00
|
|
|
QPalette::ColorGroup group = active ? QPalette::Active
|
|
|
|
: QPalette::Inactive;
|
2015-05-01 03:53:20 -07:00
|
|
|
#else
|
|
|
|
QPalette::ColorGroup group = QPalette::Active;
|
|
|
|
#endif
|
2015-03-17 19:00:10 -07:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
QPalette::ColorRole highlightRole = QPalette::WindowText;
|
|
|
|
#else
|
|
|
|
QPalette::ColorRole highlightRole = QPalette::HighlightedText;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QPalette::ColorRole role;
|
|
|
|
|
|
|
|
if (selected && active)
|
|
|
|
role = highlightRole;
|
|
|
|
else
|
|
|
|
role = QPalette::WindowText;
|
|
|
|
|
|
|
|
widget->SetColor(palette.color(group, role), active, selected);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetupVisibilityItem(QListWidget *list, QListWidgetItem *item,
|
2019-06-22 22:13:45 -07:00
|
|
|
obs_source_t *source)
|
2015-03-17 19:00:10 -07:00
|
|
|
{
|
|
|
|
VisibilityItemWidget *baseWidget = new VisibilityItemWidget(source);
|
|
|
|
|
|
|
|
item->setSizeHint(baseWidget->sizeHint());
|
|
|
|
list->setItemWidget(item, baseWidget);
|
|
|
|
}
|