comparison widgets/ItemEditDialog.cpp @ 101:0f36cdf407a6 sv1-v0.9rc1

* Make vertical scale alignment modes work in note layer as well as time-value layer, and several significant fixes to it * Make it possible to draw notes properly on the note layer * Show units (and frequencies etc in note layer's case) in the time-value and note layer description boxes * Minor fix to item edit dialog layout * Some minor menu rearrangement * Comment out a lot of debug output * Add SV website and reference URLs to Help menu, and add code to (attempt to) open them in the user's preferred browser
author Chris Cannam
date Fri, 12 May 2006 14:40:43 +0000
parents ad1fe715b480
children 4edaff85875d
comparison
equal deleted inserted replaced
100:0db5e7492ce8 101:0f36cdf407a6
116 116
117 m_realDurationUSecsSpinBox = new QSpinBox; 117 m_realDurationUSecsSpinBox = new QSpinBox;
118 m_realDurationUSecsSpinBox->setMaximum(999999); 118 m_realDurationUSecsSpinBox->setMaximum(999999);
119 m_realDurationUSecsSpinBox->setSuffix(tr(" usec")); 119 m_realDurationUSecsSpinBox->setSuffix(tr(" usec"));
120 m_realDurationUSecsSpinBox->setSingleStep(singleStep); 120 m_realDurationUSecsSpinBox->setSingleStep(singleStep);
121 subgrid->addWidget(m_realDurationUSecsSpinBox, subrow, 3); 121 subgrid->addWidget(m_realDurationUSecsSpinBox, subrow, 2);
122 connect(m_realDurationUSecsSpinBox, SIGNAL(valueChanged(int)), 122 connect(m_realDurationUSecsSpinBox, SIGNAL(valueChanged(int)),
123 this, SLOT(realDurationUSecsChanged(int))); 123 this, SLOT(realDurationUSecsChanged(int)));
124 124
125 ++subrow; 125 ++subrow;
126 } 126 }