Mercurial > hg > svgui
annotate layer/layer.pro @ 283:86a112b5b319
* Make it possible to "measure" a feature on the spectrogram by double-
clicking in measure mode
* Make shift-click-drag (for zoom to region) work in measure mode as well
as navigate mode. It would be nice to be able to shift-doubleclick to
zoom on a feature directly using a combination of these last two features,
but that isn't possible yet.
* Make Del delete the measurement under the mouse pointer.
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2007 15:36:37 +0000 |
parents | b9380f679f70 |
children | 9dd432665059 |
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@283 | 19 ImageRegionFinder.h \ |
Chris@128 | 20 Layer.h \ |
Chris@128 | 21 LayerFactory.h \ |
Chris@128 | 22 NoteLayer.h \ |
Chris@195 | 23 PaintAssistant.h \ |
Chris@274 | 24 SliceableLayer.h \ |
Chris@274 | 25 SliceLayer.h \ |
Chris@128 | 26 SpectrogramLayer.h \ |
Chris@133 | 27 SpectrumLayer.h \ |
Chris@128 | 28 TextLayer.h \ |
Chris@128 | 29 TimeInstantLayer.h \ |
Chris@128 | 30 TimeRulerLayer.h \ |
Chris@128 | 31 TimeValueLayer.h \ |
Chris@128 | 32 WaveformLayer.h |
Chris@128 | 33 SOURCES += Colour3DPlotLayer.cpp \ |
Chris@196 | 34 ColourMapper.cpp \ |
Chris@283 | 35 ImageRegionFinder.cpp \ |
Chris@128 | 36 Layer.cpp \ |
Chris@128 | 37 LayerFactory.cpp \ |
Chris@128 | 38 NoteLayer.cpp \ |
Chris@195 | 39 PaintAssistant.cpp \ |
Chris@274 | 40 SliceLayer.cpp \ |
Chris@128 | 41 SpectrogramLayer.cpp \ |
Chris@133 | 42 SpectrumLayer.cpp \ |
Chris@128 | 43 TextLayer.cpp \ |
Chris@128 | 44 TimeInstantLayer.cpp \ |
Chris@128 | 45 TimeRulerLayer.cpp \ |
Chris@128 | 46 TimeValueLayer.cpp \ |
Chris@128 | 47 WaveformLayer.cpp |