183 lines
4.7 KiB
C++
183 lines
4.7 KiB
C++
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2022 Olive Team
|
|
|
|
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 3 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/>.
|
|
|
|
***/
|
|
|
|
#include "nodeparamviewconnectedlabel.h"
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include "common/qtutils.h"
|
|
#include "core.h"
|
|
#include "node/node.h"
|
|
#include "widget/collapsebutton/collapsebutton.h"
|
|
#include "widget/menu/menu.h"
|
|
#include "widget/nodeview/nodeviewundo.h"
|
|
|
|
namespace olive {
|
|
|
|
NodeParamViewConnectedLabel::NodeParamViewConnectedLabel(const NodeInput &input, QWidget *parent) :
|
|
QWidget(parent),
|
|
input_(input),
|
|
connected_node_(nullptr)
|
|
{
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
layout->setMargin(0);
|
|
|
|
QSizePolicy p = sizePolicy();
|
|
p.setHorizontalStretch(1);
|
|
p.setHorizontalPolicy(QSizePolicy::Expanding);
|
|
setSizePolicy(p);
|
|
|
|
// Set up label area
|
|
QHBoxLayout *label_layout = new QHBoxLayout();
|
|
label_layout->setSpacing(QtUtils::QFontMetricsWidth(fontMetrics(), QStringLiteral(" ")));
|
|
label_layout->setMargin(0);
|
|
layout->addLayout(label_layout);
|
|
|
|
CollapseButton *collapse_btn = new CollapseButton(this);
|
|
collapse_btn->setChecked(false);
|
|
label_layout->addWidget(collapse_btn);
|
|
|
|
label_layout->addWidget(new QLabel(tr("Connected to"), this));
|
|
|
|
connected_to_lbl_ = new ClickableLabel(this);
|
|
connected_to_lbl_->setCursor(Qt::PointingHandCursor);
|
|
connected_to_lbl_->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
connect(connected_to_lbl_, &ClickableLabel::MouseClicked, this, &NodeParamViewConnectedLabel::ConnectionClicked);
|
|
connect(connected_to_lbl_, &ClickableLabel::customContextMenuRequested, this, &NodeParamViewConnectedLabel::ShowLabelContextMenu);
|
|
label_layout->addWidget(connected_to_lbl_);
|
|
|
|
label_layout->addStretch();
|
|
|
|
// Set up "link" font
|
|
QFont link_font = connected_to_lbl_->font();
|
|
link_font.setUnderline(true);
|
|
connected_to_lbl_->setForegroundRole(QPalette::Link);
|
|
connected_to_lbl_->setFont(link_font);
|
|
|
|
if (input_.IsConnected()) {
|
|
InputConnected(input_.GetConnectedOutput(), input_);
|
|
} else {
|
|
InputDisconnected(nullptr, input_);
|
|
}
|
|
|
|
connect(input_.node(), &Node::InputConnected, this, &NodeParamViewConnectedLabel::InputConnected);
|
|
connect(input_.node(), &Node::InputDisconnected, this, &NodeParamViewConnectedLabel::InputDisconnected);
|
|
|
|
// Creating the tree is expensive, hold off until the user specifically requests it
|
|
value_tree_ = nullptr;
|
|
connect(collapse_btn, &CollapseButton::toggled, this, &NodeParamViewConnectedLabel::SetValueTreeVisible);
|
|
}
|
|
|
|
void NodeParamViewConnectedLabel::CreateTree()
|
|
{
|
|
// Set up table area
|
|
value_tree_ = new NodeValueTree(this);
|
|
layout()->addWidget(value_tree_);
|
|
}
|
|
|
|
void NodeParamViewConnectedLabel::SetTime(const rational &time)
|
|
{
|
|
time_ = time;
|
|
|
|
if (value_tree_ && value_tree_->isVisible()) {
|
|
UpdateValueTree();
|
|
}
|
|
}
|
|
|
|
void NodeParamViewConnectedLabel::InputConnected(Node *output, const NodeInput& input)
|
|
{
|
|
if (input_ != input) {
|
|
return;
|
|
}
|
|
|
|
connected_node_ = output;
|
|
|
|
UpdateLabel();
|
|
}
|
|
|
|
void NodeParamViewConnectedLabel::InputDisconnected(Node *output, const NodeInput &input)
|
|
{
|
|
if (input_ != input) {
|
|
return;
|
|
}
|
|
|
|
Q_UNUSED(output)
|
|
|
|
connected_node_ = nullptr;
|
|
|
|
UpdateLabel();
|
|
}
|
|
|
|
void NodeParamViewConnectedLabel::ShowLabelContextMenu()
|
|
{
|
|
Menu m(this);
|
|
|
|
QAction* disconnect_action = m.addAction(tr("Disconnect"));
|
|
connect(disconnect_action, &QAction::triggered, this, [this](){
|
|
Core::instance()->undo_stack()->push(new NodeEdgeRemoveCommand(connected_node_, input_));
|
|
});
|
|
|
|
m.exec(QCursor::pos());
|
|
}
|
|
|
|
void NodeParamViewConnectedLabel::ConnectionClicked()
|
|
{
|
|
if (connected_node_) {
|
|
emit RequestSelectNode(connected_node_);
|
|
}
|
|
}
|
|
|
|
void NodeParamViewConnectedLabel::UpdateLabel()
|
|
{
|
|
QString s;
|
|
|
|
if (connected_node_) {
|
|
s = connected_node_->Name();
|
|
} else {
|
|
s = tr("Nothing");
|
|
}
|
|
|
|
connected_to_lbl_->setText(s);
|
|
}
|
|
|
|
void NodeParamViewConnectedLabel::UpdateValueTree()
|
|
{
|
|
if (value_tree_) {
|
|
value_tree_->SetNode(input_, time_);
|
|
}
|
|
}
|
|
|
|
void NodeParamViewConnectedLabel::SetValueTreeVisible(bool e)
|
|
{
|
|
if (value_tree_) {
|
|
value_tree_->setVisible(e);
|
|
}
|
|
|
|
if (e) {
|
|
if (!value_tree_) {
|
|
CreateTree();
|
|
}
|
|
|
|
UpdateValueTree();
|
|
}
|
|
}
|
|
|
|
}
|