comparison widgets/PluginParameterDialog.cpp @ 65:7f608ec9a061

* More structural work on feature extraction plugin C <-> C++ adapter * Allow use of LADSPA/DSSI plugins with control outputs as feature extraction plugins (DSSI with MIDI output still to come) * Reorder labels on spectrogram status box * Minor tweaks in doc etc.
author Chris Cannam
date Mon, 27 Mar 2006 15:03:02 +0000
parents 10bcd53ddc71
children 6dad2724f3aa
comparison
equal deleted inserted replaced
64:10bcd53ddc71 65:7f608ec9a061
47 47
48 QLabel *nameLabel = new QLabel(plugin->getDescription().c_str()); 48 QLabel *nameLabel = new QLabel(plugin->getDescription().c_str());
49 nameLabel->setFont(font); 49 nameLabel->setFont(font);
50 50
51 QLabel *makerLabel = new QLabel(plugin->getMaker().c_str()); 51 QLabel *makerLabel = new QLabel(plugin->getMaker().c_str());
52 makerLabel->setFont(font); 52 // makerLabel->setFont(font);
53 53
54 QLabel *versionLabel = new QLabel(QString("%1") 54 QLabel *versionLabel = new QLabel(QString("%1")
55 .arg(plugin->getPluginVersion())); 55 .arg(plugin->getPluginVersion()));
56 versionLabel->setFont(font); 56 // versionLabel->setFont(font);
57 57
58 QLabel *copyrightLabel = new QLabel(plugin->getCopyright().c_str()); 58 QLabel *copyrightLabel = new QLabel(plugin->getCopyright().c_str());
59 copyrightLabel->setFont(font); 59 // copyrightLabel->setFont(font);
60 60
61 QLabel *typeLabel = new QLabel(plugin->getType().c_str()); 61 QLabel *typeLabel = new QLabel(plugin->getType().c_str());
62 typeLabel->setFont(font); 62 typeLabel->setFont(font);
63 63
64 subgrid->addWidget(new QLabel(tr("Name:")), 0, 0); 64 subgrid->addWidget(new QLabel(tr("Name:")), 0, 0);