annotate widgets/widgets.pro @ 188:dd573e090eed

* Add range input dialog * Make Panner support middle-click/ctrl-left-click to reset and emit doubleClicked when doubleClicked instead of resetting * Use range input dialog to enter new values for panner on double-click
author Chris Cannam
date Fri, 12 Jan 2007 21:52:56 +0000
parents d0b95a8cac96
children 5b7472db612b
rev   line source
Chris@128 1 TEMPLATE = lib
Chris@128 2
Chris@129 3 SV_UNIT_PACKAGES = vamp-sdk
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@172 23 Panner.h \
Chris@128 24 PluginParameterBox.h \
Chris@128 25 PluginParameterDialog.h \
Chris@128 26 PropertyBox.h \
Chris@132 27 PropertyStack.h \
Chris@188 28 RangeInputDialog.h \
Chris@151 29 SubdividingMenu.h \
Chris@139 30 Thumbwheel.h \
Chris@139 31 WindowShapePreview.h \
Chris@139 32 WindowTypeSelector.h
Chris@128 33 SOURCES += AudioDial.cpp \
Chris@128 34 Fader.cpp \
Chris@128 35 ItemEditDialog.cpp \
Chris@128 36 LayerTree.cpp \
Chris@128 37 LEDButton.cpp \
Chris@128 38 ListInputDialog.cpp \
Chris@172 39 Panner.cpp \
Chris@128 40 PluginParameterBox.cpp \
Chris@128 41 PluginParameterDialog.cpp \
Chris@128 42 PropertyBox.cpp \
Chris@132 43 PropertyStack.cpp \
Chris@188 44 RangeInputDialog.cpp \
Chris@151 45 SubdividingMenu.cpp \
Chris@139 46 Thumbwheel.cpp \
Chris@139 47 WindowShapePreview.cpp \
Chris@139 48 WindowTypeSelector.cpp