comparison widgets/PluginParameterBox.cpp @ 208:8495187c13ce

* Further fixes for Vamp API change, and update to support API versioning * Add plugin, output and parameter descriptions to GUI * Avoid squished panner in heads-up-display on pane when time-value or note layer is on top
author Chris Cannam
date Tue, 27 Feb 2007 12:51:38 +0000
parents a5b3c9f580c1
children e6d0b097d102
comparison
equal deleted inserted replaced
207:a5b3c9f580c1 208:8495187c13ce
113 113
114 //!!! would be nice to ensure the default value corresponds to 114 //!!! would be nice to ensure the default value corresponds to
115 // an integer! 115 // an integer!
116 116
117 QLabel *label = new QLabel(name); 117 QLabel *label = new QLabel(name);
118 if (params[i].description != "") {
119 label->setToolTip(params[i].description.c_str());
120 }
118 m_layout->addWidget(label, i + offset, 0); 121 m_layout->addWidget(label, i + offset, 0);
119 122
120 ParamRec rec; 123 ParamRec rec;
121 rec.param = params[i]; 124 rec.param = params[i];
122 rec.dial = 0; 125 rec.dial = 0;