annotate svgui.pro @ 719:67e6d518ac27

Bodge in Matthias's suggested normalise-to-log as an option in spectrogram and colour 3d plot layers (not wired into gui)
author Chris Cannam
date Tue, 28 Jan 2014 17:37:42 +0000
parents 1a1448f7beb2
children ceb9a2992d96
rev   line source
chris@617 1
chris@617 2 TEMPLATE = lib
chris@617 3
Chris@624 4 exists(config.pri) {
Chris@624 5 include(config.pri)
Chris@624 6 }
Chris@624 7 win* {
Chris@624 8 !exists(config.pri) {
Chris@624 9 DEFINES += HAVE_BZ2 HAVE_FFTW3 HAVE_FFTW3F HAVE_SNDFILE HAVE_SAMPLERATE HAVE_VAMP HAVE_VAMPHOSTSDK HAVE_RUBBERBAND HAVE_DATAQUAY HAVE_LIBLO HAVE_MAD HAVE_ID3TAG
Chris@624 10 }
Chris@624 11 }
chris@617 12
chris@617 13 CONFIG += staticlib qt thread warn_on stl rtti exceptions
chris@617 14 QT += network xml gui widgets
chris@617 15
chris@617 16 TARGET = svgui
chris@617 17
chris@617 18 DEPENDPATH += . ../svcore
chris@617 19 INCLUDEPATH += . ../svcore
chris@617 20 OBJECTS_DIR = o
chris@617 21 MOC_DIR = o
chris@617 22
chris@617 23 win32-g++ {
chris@617 24 INCLUDEPATH += ../sv-dependency-builds/win32-mingw/include
chris@617 25 }
chris@617 26 win32-msvc* {
chris@617 27 INCLUDEPATH += ../sv-dependency-builds/win32-msvc/include
chris@617 28 }
chris@617 29
chris@617 30 HEADERS += layer/Colour3DPlotLayer.h \
chris@617 31 layer/ColourDatabase.h \
chris@617 32 layer/ColourMapper.h \
Chris@699 33 layer/ColourScaleLayer.h \
chris@617 34 layer/ImageLayer.h \
chris@617 35 layer/ImageRegionFinder.h \
chris@617 36 layer/Layer.h \
chris@617 37 layer/LayerFactory.h \
Chris@698 38 layer/LinearNumericalScale.h \
Chris@698 39 layer/LogNumericalScale.h \
Chris@699 40 layer/LinearColourScale.h \
Chris@699 41 layer/LogColourScale.h \
chris@617 42 layer/NoteLayer.h \
chris@617 43 layer/PaintAssistant.h \
Chris@690 44 layer/PianoScale.h \
chris@617 45 layer/RegionLayer.h \
chris@617 46 layer/SingleColourLayer.h \
chris@617 47 layer/SliceableLayer.h \
chris@617 48 layer/SliceLayer.h \
chris@617 49 layer/SpectrogramLayer.h \
chris@617 50 layer/SpectrumLayer.h \
chris@617 51 layer/TextLayer.h \
chris@617 52 layer/TimeInstantLayer.h \
chris@617 53 layer/TimeRulerLayer.h \
chris@617 54 layer/TimeValueLayer.h \
Chris@698 55 layer/VerticalScaleLayer.h \
chris@617 56 layer/WaveformLayer.h
chris@617 57 SOURCES += layer/Colour3DPlotLayer.cpp \
chris@617 58 layer/ColourDatabase.cpp \
chris@617 59 layer/ColourMapper.cpp \
chris@617 60 layer/ImageLayer.cpp \
chris@617 61 layer/ImageRegionFinder.cpp \
chris@617 62 layer/Layer.cpp \
chris@617 63 layer/LayerFactory.cpp \
Chris@698 64 layer/LinearNumericalScale.cpp \
Chris@698 65 layer/LogNumericalScale.cpp \
Chris@699 66 layer/LinearColourScale.cpp \
Chris@699 67 layer/LogColourScale.cpp \
chris@617 68 layer/NoteLayer.cpp \
chris@617 69 layer/PaintAssistant.cpp \
Chris@690 70 layer/PianoScale.cpp \
chris@617 71 layer/RegionLayer.cpp \
chris@617 72 layer/SingleColourLayer.cpp \
chris@617 73 layer/SliceLayer.cpp \
chris@617 74 layer/SpectrogramLayer.cpp \
chris@617 75 layer/SpectrumLayer.cpp \
chris@617 76 layer/TextLayer.cpp \
chris@617 77 layer/TimeInstantLayer.cpp \
chris@617 78 layer/TimeRulerLayer.cpp \
chris@617 79 layer/TimeValueLayer.cpp \
chris@617 80 layer/WaveformLayer.cpp
chris@617 81
chris@617 82 HEADERS += view/Overview.h \
chris@617 83 view/Pane.h \
chris@617 84 view/PaneStack.h \
chris@617 85 view/View.h \
chris@617 86 view/ViewManager.h
chris@617 87 SOURCES += view/Overview.cpp \
chris@617 88 view/Pane.cpp \
chris@617 89 view/PaneStack.cpp \
chris@617 90 view/View.cpp \
chris@617 91 view/ViewManager.cpp
chris@617 92
chris@617 93 HEADERS += widgets/ActivityLog.h \
chris@617 94 widgets/AudioDial.h \
chris@617 95 widgets/ClickableLabel.h \
chris@617 96 widgets/ColourNameDialog.h \
chris@617 97 widgets/CommandHistory.h \
chris@617 98 widgets/CSVFormatDialog.h \
chris@617 99 widgets/Fader.h \
chris@617 100 widgets/InteractiveFileFinder.h \
chris@617 101 widgets/IconLoader.h \
chris@617 102 widgets/ImageDialog.h \
chris@617 103 widgets/ItemEditDialog.h \
chris@617 104 widgets/KeyReference.h \
chris@617 105 widgets/LabelCounterInputDialog.h \
chris@617 106 widgets/LayerTree.h \
chris@617 107 widgets/LayerTreeDialog.h \
chris@617 108 widgets/LEDButton.h \
chris@617 109 widgets/ListInputDialog.h \
chris@617 110 widgets/MIDIFileImportDialog.h \
chris@617 111 widgets/ModelDataTableDialog.h \
chris@617 112 widgets/NotifyingCheckBox.h \
chris@617 113 widgets/NotifyingComboBox.h \
chris@617 114 widgets/NotifyingPushButton.h \
chris@617 115 widgets/NotifyingTabBar.h \
chris@617 116 widgets/Panner.h \
chris@617 117 widgets/PluginParameterBox.h \
chris@617 118 widgets/PluginParameterDialog.h \
chris@617 119 widgets/ProgressDialog.h \
chris@617 120 widgets/PropertyBox.h \
chris@617 121 widgets/PropertyStack.h \
chris@617 122 widgets/RangeInputDialog.h \
chris@617 123 widgets/SelectableLabel.h \
chris@617 124 widgets/SubdividingMenu.h \
chris@617 125 widgets/TextAbbrev.h \
chris@617 126 widgets/Thumbwheel.h \
chris@617 127 widgets/TipDialog.h \
chris@617 128 widgets/TransformFinder.h \
chris@617 129 widgets/WindowShapePreview.h \
chris@617 130 widgets/WindowTypeSelector.h
chris@617 131 SOURCES += widgets/ActivityLog.cpp \
chris@617 132 widgets/AudioDial.cpp \
chris@617 133 widgets/ColourNameDialog.cpp \
chris@617 134 widgets/CommandHistory.cpp \
chris@617 135 widgets/CSVFormatDialog.cpp \
chris@617 136 widgets/Fader.cpp \
chris@617 137 widgets/InteractiveFileFinder.cpp \
chris@617 138 widgets/IconLoader.cpp \
chris@617 139 widgets/ImageDialog.cpp \
chris@617 140 widgets/ItemEditDialog.cpp \
chris@617 141 widgets/KeyReference.cpp \
chris@617 142 widgets/LabelCounterInputDialog.cpp \
chris@617 143 widgets/LayerTree.cpp \
chris@617 144 widgets/LayerTreeDialog.cpp \
chris@617 145 widgets/LEDButton.cpp \
chris@617 146 widgets/ListInputDialog.cpp \
chris@617 147 widgets/MIDIFileImportDialog.cpp \
chris@617 148 widgets/ModelDataTableDialog.cpp \
chris@617 149 widgets/NotifyingCheckBox.cpp \
chris@617 150 widgets/NotifyingComboBox.cpp \
chris@617 151 widgets/NotifyingPushButton.cpp \
chris@617 152 widgets/NotifyingTabBar.cpp \
chris@617 153 widgets/Panner.cpp \
chris@617 154 widgets/PluginParameterBox.cpp \
chris@617 155 widgets/PluginParameterDialog.cpp \
chris@617 156 widgets/ProgressDialog.cpp \
chris@617 157 widgets/PropertyBox.cpp \
chris@617 158 widgets/PropertyStack.cpp \
chris@617 159 widgets/RangeInputDialog.cpp \
chris@617 160 widgets/SelectableLabel.cpp \
chris@617 161 widgets/SubdividingMenu.cpp \
chris@617 162 widgets/TextAbbrev.cpp \
chris@617 163 widgets/Thumbwheel.cpp \
chris@617 164 widgets/TipDialog.cpp \
chris@617 165 widgets/TransformFinder.cpp \
chris@617 166 widgets/WindowShapePreview.cpp \
chris@617 167 widgets/WindowTypeSelector.cpp