Home
last modified time | relevance | path

Searched refs:rangeCheckBox (Results 1 – 2 of 2) sorted by relevance

/dports/audio/csoundqt/CsoundQt-0.9.8.1/src/
H A Dqutegraph.cpp1766 rangeCheckBox = new QCheckBox("Fixed Range", dialog); in createPropertiesDialog()
1767 rangeCheckBox->setToolTip("If checked the range is fixed to the value set on the right." in createPropertiesDialog()
1770 rangeCheckBox->setChecked(range > 0.0); in createPropertiesDialog()
1771 layout->addWidget(rangeCheckBox, 5, 1, Qt::AlignRight|Qt::AlignVCenter); in createPropertiesDialog()
1781 connect(rangeCheckBox, SIGNAL(toggled(bool)), rangeSpinBox, SLOT(setEnabled(bool))); in createPropertiesDialog()
1794 bool fixedrange = rangeCheckBox->isChecked(); in applyProperties()
H A Dqutegraph.h292 QCheckBox *rangeCheckBox; variable