comparison widgets/Fader.cpp @ 132:5d3a483856ff

* Add Thumbwheel widget for all our zooming needs * Use QSettings to save/restore window size and position -- precursor to switching our preferences to QSettings as well -- wish I'd noticed it sooner * Only suspend writes (not reads from the underlying cache objects) from the fft caches when repainting the spectrogram -- performance should now be significantly better
author Chris Cannam
date Thu, 03 Aug 2006 15:40:11 +0000
parents 82482231b6b1
children 48d19f278b15
comparison
equal deleted inserted replaced
131:eaae73b6bd28 132:5d3a483856ff
115 115
116 setValue(fval); 116 setValue(fval);
117 emit valueChanged(fval); 117 emit valueChanged(fval);
118 118
119 update(); 119 update();
120 }
121
122
123 void
124 Fader::mouseReleaseEvent(QMouseEvent *ev)
125 {
126 mouseMoveEvent(ev);
120 } 127 }
121 128
122 129
123 void 130 void
124 Fader::mouseDoubleClickEvent(QMouseEvent *) 131 Fader::mouseDoubleClickEvent(QMouseEvent *)