annotate base/base.pro @ 284:41d64b873d87

* continue to pick "new" colours for coloured layers even when all colours have been used at least once, rather than sticking on the last one * some messing about with application palette settings * when replacing an audio file, retain the previous playback settings for any layers that depended on the old file * re-check plugin program setting when a parameter changes -- so a plugin can decide to reset the program if the parameters no longer match those for the current program * fix failure to update check-boxes for toggled plugin parameters when their parameters are changed by program changes
author Chris Cannam
date Thu, 09 Aug 2007 14:40:03 +0000
parents 3b8008d09541
children 20097c32d15d
rev   line source
Chris@150 1 TEMPLATE = lib
Chris@150 2
Chris@150 3 SV_UNIT_PACKAGES =
Chris@150 4 load(../sv.prf)
Chris@150 5
Chris@150 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
Chris@150 7
Chris@150 8 TARGET = svbase
Chris@150 9
Chris@150 10 DEPENDPATH += .
Chris@150 11 INCLUDEPATH += . ..
Chris@150 12 OBJECTS_DIR = tmp_obj
Chris@150 13 MOC_DIR = tmp_moc
Chris@150 14
Chris@150 15 # Input
Chris@150 16 HEADERS += AudioLevel.h \
Chris@150 17 AudioPlaySource.h \
Chris@150 18 Clipboard.h \
Chris@277 19 ColourDatabase.h \
Chris@277 20 ColourMapper.h \
Chris@150 21 Command.h \
Chris@150 22 CommandHistory.h \
Chris@150 23 Exceptions.h \
Chris@224 24 LogRange.h \
Chris@150 25 Pitch.h \
Chris@150 26 PlayParameterRepository.h \
Chris@150 27 PlayParameters.h \
Chris@150 28 Preferences.h \
Chris@150 29 Profiler.h \
Chris@150 30 PropertyContainer.h \
Chris@189 31 RangeMapper.h \
Chris@150 32 RealTime.h \
Chris@150 33 RecentFiles.h \
Chris@150 34 ResizeableBitset.h \
Chris@150 35 RingBuffer.h \
Chris@150 36 Scavenger.h \
Chris@150 37 Selection.h \
Chris@168 38 StorageAdviser.h \
Chris@150 39 TempDirectory.h \
Chris@150 40 Thread.h \
Chris@150 41 UnitDatabase.h \
Chris@150 42 Window.h \
Chris@150 43 XmlExportable.h \
Chris@150 44 ZoomConstraint.h
Chris@150 45 SOURCES += AudioLevel.cpp \
Chris@150 46 Clipboard.cpp \
Chris@277 47 ColourDatabase.cpp \
Chris@277 48 ColourMapper.cpp \
Chris@150 49 Command.cpp \
Chris@150 50 CommandHistory.cpp \
Chris@150 51 Exceptions.cpp \
Chris@224 52 LogRange.cpp \
Chris@150 53 Pitch.cpp \
Chris@150 54 PlayParameterRepository.cpp \
Chris@150 55 PlayParameters.cpp \
Chris@150 56 Preferences.cpp \
Chris@150 57 Profiler.cpp \
Chris@150 58 PropertyContainer.cpp \
Chris@189 59 RangeMapper.cpp \
Chris@150 60 RealTime.cpp \
Chris@150 61 RecentFiles.cpp \
Chris@150 62 Selection.cpp \
Chris@168 63 StorageAdviser.cpp \
Chris@150 64 TempDirectory.cpp \
Chris@150 65 Thread.cpp \
Chris@150 66 UnitDatabase.cpp \
Chris@150 67 XmlExportable.cpp