comparison widgets/PluginParameterDialog.cpp @ 64:10bcd53ddc71

* Add icon for playback plugin edit button * Make playback plugins respond to parameter & program changes while their edit dialog is still visible
author Chris Cannam
date Thu, 23 Mar 2006 18:42:17 +0000
parents fb02fe13ff47
children 7f608ec9a061
comparison
equal deleted inserted replaced
63:fb02fe13ff47 64:10bcd53ddc71
86 QHBoxLayout *paramLayout = new QHBoxLayout; 86 QHBoxLayout *paramLayout = new QHBoxLayout;
87 paramLayout->setMargin(0); 87 paramLayout->setMargin(0);
88 paramBox->setLayout(paramLayout); 88 paramBox->setLayout(paramLayout);
89 89
90 m_parameterBox = new PluginParameterBox(m_plugin); 90 m_parameterBox = new PluginParameterBox(m_plugin);
91 connect(m_parameterBox, SIGNAL(pluginConfigurationChanged(QString)),
92 this, SIGNAL(pluginConfigurationChanged(QString)));
91 paramLayout->addWidget(m_parameterBox); 93 paramLayout->addWidget(m_parameterBox);
92 94
93 QHBoxLayout *hbox = new QHBoxLayout; 95 QHBoxLayout *hbox = new QHBoxLayout;
94 grid->addLayout(hbox, 2, 0); 96 grid->addLayout(hbox, 2, 0);
95 97