Mercurial > hg > svgui
annotate widgets/widgets.pro @ 224:9465b5375235
* Fix #1672407 confused by plugin-named files in cwd (or home?)
* Fix #1491848 crash when loading new file while transform plugin runs
* Fix #1502287 Background remains black after spectrogram layer deleted
* Fix #1604477 Replacing the main audio file silences secondary audio file
* Fix failure to initialise property box layout to last preference on startup
* Fix resample/wrong-rate display in Pane, ensure that right rate is chosen
if all current models have an acceptable rate even if previous main model
had a different one
* Fix "global zoom" broken in previous commit
* Some fixes to spectrogram cache area updating (makes spectrogram appear
more quickly, previously it had a tendency to refresh with empty space)
* Fixes to colour 3d plot normalization
author | Chris Cannam |
---|---|
date | Thu, 08 Mar 2007 16:53:08 +0000 |
parents | d2334a77db73 |
children | 6f46179086c0 |
rev | line source |
---|---|
Chris@128 | 1 TEMPLATE = lib |
Chris@128 | 2 |
Chris@215 | 3 SV_UNIT_PACKAGES = vamp-hostsdk fftw3f |
Chris@128 | 4 load(../sv.prf) |
Chris@128 | 5 |
Chris@128 | 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions |
Chris@128 | 7 QT += xml |
Chris@128 | 8 |
Chris@128 | 9 TARGET = svwidgets |
Chris@128 | 10 |
Chris@128 | 11 DEPENDPATH += . .. |
Chris@128 | 12 INCLUDEPATH += . .. |
Chris@128 | 13 OBJECTS_DIR = tmp_obj |
Chris@128 | 14 MOC_DIR = tmp_moc |
Chris@128 | 15 |
Chris@128 | 16 # Input |
Chris@128 | 17 HEADERS += AudioDial.h \ |
Chris@128 | 18 Fader.h \ |
Chris@128 | 19 ItemEditDialog.h \ |
Chris@128 | 20 LayerTree.h \ |
Chris@128 | 21 LEDButton.h \ |
Chris@128 | 22 ListInputDialog.h \ |
Chris@189 | 23 NotifyingCheckBox.h \ |
Chris@189 | 24 NotifyingComboBox.h \ |
Chris@189 | 25 NotifyingPushButton.h \ |
Chris@190 | 26 NotifyingTabBar.h \ |
Chris@172 | 27 Panner.h \ |
Chris@128 | 28 PluginParameterBox.h \ |
Chris@128 | 29 PluginParameterDialog.h \ |
Chris@128 | 30 PropertyBox.h \ |
Chris@132 | 31 PropertyStack.h \ |
Chris@188 | 32 RangeInputDialog.h \ |
Chris@151 | 33 SubdividingMenu.h \ |
Chris@139 | 34 Thumbwheel.h \ |
Chris@139 | 35 WindowShapePreview.h \ |
Chris@139 | 36 WindowTypeSelector.h |
Chris@128 | 37 SOURCES += AudioDial.cpp \ |
Chris@128 | 38 Fader.cpp \ |
Chris@128 | 39 ItemEditDialog.cpp \ |
Chris@128 | 40 LayerTree.cpp \ |
Chris@128 | 41 LEDButton.cpp \ |
Chris@128 | 42 ListInputDialog.cpp \ |
Chris@189 | 43 NotifyingCheckBox.cpp \ |
Chris@189 | 44 NotifyingComboBox.cpp \ |
Chris@189 | 45 NotifyingPushButton.cpp \ |
Chris@190 | 46 NotifyingTabBar.cpp \ |
Chris@172 | 47 Panner.cpp \ |
Chris@128 | 48 PluginParameterBox.cpp \ |
Chris@128 | 49 PluginParameterDialog.cpp \ |
Chris@128 | 50 PropertyBox.cpp \ |
Chris@132 | 51 PropertyStack.cpp \ |
Chris@188 | 52 RangeInputDialog.cpp \ |
Chris@151 | 53 SubdividingMenu.cpp \ |
Chris@139 | 54 Thumbwheel.cpp \ |
Chris@139 | 55 WindowShapePreview.cpp \ |
Chris@139 | 56 WindowTypeSelector.cpp |