annotate layer/layer.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 cec1f78fbfca
children b9380f679f70
rev   line source
Chris@128 1 TEMPLATE = lib
Chris@128 2
Chris@202 3 SV_UNIT_PACKAGES = 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 = svlayer
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 += Colour3DPlotLayer.h \
Chris@196 18 ColourMapper.h \
Chris@128 19 Layer.h \
Chris@128 20 LayerFactory.h \
Chris@128 21 NoteLayer.h \
Chris@195 22 PaintAssistant.h \
Chris@128 23 SpectrogramLayer.h \
Chris@133 24 SpectrumLayer.h \
Chris@193 25 SliceLayer.h \
Chris@193 26 SliceableLayer.h \
Chris@128 27 TextLayer.h \
Chris@128 28 TimeInstantLayer.h \
Chris@128 29 TimeRulerLayer.h \
Chris@128 30 TimeValueLayer.h \
Chris@128 31 WaveformLayer.h
Chris@128 32 SOURCES += Colour3DPlotLayer.cpp \
Chris@196 33 ColourMapper.cpp \
Chris@128 34 Layer.cpp \
Chris@128 35 LayerFactory.cpp \
Chris@128 36 NoteLayer.cpp \
Chris@195 37 PaintAssistant.cpp \
Chris@128 38 SpectrogramLayer.cpp \
Chris@133 39 SpectrumLayer.cpp \
Chris@193 40 SliceLayer.cpp \
Chris@128 41 TextLayer.cpp \
Chris@128 42 TimeInstantLayer.cpp \
Chris@128 43 TimeRulerLayer.cpp \
Chris@128 44 TimeValueLayer.cpp \
Chris@128 45 WaveformLayer.cpp