finished moving field data retrieving to row

This commit is contained in:
itsmattkc
2019-04-11 00:02:50 +10:00
parent 14ae903000
commit d3bc1d4f06
78 changed files with 1189 additions and 676 deletions
+23
View File
@@ -0,0 +1,23 @@
#include "buttonwidget.h"
ButtonWidget::ButtonWidget(Effect* parent, const QString& name, const QString& text) :
EffectRow(parent, nullptr, name, false, false)
{
ButtonField* button_field = new ButtonField(this, text);
connect(button_field, SIGNAL(CheckedChanged(bool)), this, SIGNAL(CheckedChanged(bool)));
connect(button_field, SIGNAL(Toggled(bool)), this, SIGNAL(Toggled(bool)));
connect(this, SLOT(SetChecked(bool)), button_field, SLOT(SetChecked(bool)));
AddField(button_field);
}
void ButtonWidget::SetCheckable(bool c)
{
static_cast<ButtonField*>(Field(0))->SetCheckable(c);
}
void ButtonWidget::SetChecked(bool c)
{
static_cast<ButtonField*>(Field(0))->SetChecked(c);
}