| 1 |
haruneko24 |
6 |
QT += core |
| 2 |
|
|
QT += gui |
| 3 |
|
|
QT += multimedia |
| 4 |
|
|
QT += xml |
| 5 |
|
|
|
| 6 |
|
|
include(dependency.pri) |
| 7 |
|
|
TEMPLATE = lib |
| 8 |
|
|
DESTDIR = $${LIB_DIR} |
| 9 |
haruneko24 |
84 |
|
| 10 |
|
|
win32-msvc* { |
| 11 |
haruneko24 |
6 |
TARGET = $${LIB_PREFIX}stand$${LIB_SUFFIX} |
| 12 |
haruneko24 |
84 |
} |
| 13 |
|
|
else { |
| 14 |
|
|
TARGET = stand |
| 15 |
|
|
} |
| 16 |
haruneko24 |
6 |
|
| 17 |
haruneko24 |
84 |
|
| 18 |
haruneko24 |
6 |
CONFIG += mobility |
| 19 |
|
|
CONFIG += staticlib |
| 20 |
|
|
MOBILITY = multimedia |
| 21 |
|
|
|
| 22 |
|
|
SOURCES += \ |
| 23 |
|
|
io/RiffFile.cpp \ |
| 24 |
|
|
io/RiffChunk.cpp \ |
| 25 |
|
|
utility/Utility.cpp \ |
| 26 |
|
|
math/SmootMatching.cpp \ |
| 27 |
|
|
math/NormalDistribution.cpp \ |
| 28 |
|
|
math/Matrix.cpp \ |
| 29 |
|
|
math/MathSet.cpp \ |
| 30 |
|
|
math/GmmSet.cpp \ |
| 31 |
|
|
math/GmmData.cpp \ |
| 32 |
|
|
sequence/importer/SimpleImporter.cpp \ |
| 33 |
|
|
sequence/VibratoHandle.cpp \ |
| 34 |
|
|
sequence/Track.cpp \ |
| 35 |
|
|
sequence/Tempo.cpp \ |
| 36 |
|
|
sequence/SingerEvent.cpp \ |
| 37 |
|
|
sequence/Sequence.cpp \ |
| 38 |
|
|
sequence/NoteEvent.cpp \ |
| 39 |
|
|
sequence/LyricHandle.cpp \ |
| 40 |
|
|
sequence/ControlCurve.cpp \ |
| 41 |
|
|
sequence/importer/VsqTextImporter.cpp \ |
| 42 |
|
|
sequence/Measure.cpp \ |
| 43 |
|
|
io/midi/MidiFile.cpp \ |
| 44 |
|
|
io/midi/MidiChunk.cpp \ |
| 45 |
|
|
io/midi/MidiEvent.cpp \ |
| 46 |
|
|
io/midi/MetaEvent.cpp \ |
| 47 |
|
|
io/midi/ExclusiveEvent.cpp \ |
| 48 |
|
|
sequence/importer/VsqImporter.cpp \ |
| 49 |
|
|
math/Pca.cpp \ |
| 50 |
|
|
io/utau/UtauLibrary.cpp \ |
| 51 |
|
|
io/utau/PrefixMap.cpp \ |
| 52 |
|
|
io/utau/CharacterSettings.cpp \ |
| 53 |
|
|
utility/MessageHandler.cpp \ |
| 54 |
|
|
delegate/TrackDelegate.cpp \ |
| 55 |
|
|
delegate/PitchDelegate.cpp \ |
| 56 |
|
|
delegate/NoteDelegate.cpp \ |
| 57 |
|
|
delegate/FileopenDelegate.cpp \ |
| 58 |
|
|
delegate/ComboboxDelegate.cpp \ |
| 59 |
|
|
utility/task/Task.cpp \ |
| 60 |
|
|
utility/task/Worker.cpp \ |
| 61 |
|
|
utility/envelope/VolumeComputer.cpp \ |
| 62 |
|
|
utility/envelope/F0Computer.cpp \ |
| 63 |
|
|
utility/envelope/Envelope.cpp \ |
| 64 |
|
|
utility/task/Manager.cpp \ |
| 65 |
|
|
gui/EditorWindow.cpp \ |
| 66 |
|
|
gui/EditorWidgetConstructor.cpp \ |
| 67 |
|
|
gui/EditorWidget.cpp \ |
| 68 |
|
|
gui/helper/WaveAnalysisTask.cpp \ |
| 69 |
|
|
gui/helper/TimeComputingTask.cpp \ |
| 70 |
|
|
gui/helper/EnvelopeComputingTask.cpp \ |
| 71 |
|
|
model/TreeItemModel.cpp \ |
| 72 |
|
|
model/TreeItem.cpp \ |
| 73 |
|
|
model/TrackItem.cpp \ |
| 74 |
|
|
model/SequenceModel.cpp \ |
| 75 |
|
|
model/PhonemeItem.cpp \ |
| 76 |
|
|
model/MeasureItem.cpp \ |
| 77 |
|
|
model/EventItem.cpp \ |
| 78 |
|
|
model/xml/TreeXmlFactory.cpp \ |
| 79 |
|
|
model/xml/SequenceXmlFactory.cpp \ |
| 80 |
|
|
model/importer/UtauCorpusImporter.cpp \ |
| 81 |
|
|
view/ViewSettings.cpp \ |
| 82 |
|
|
view/ViewArea.cpp \ |
| 83 |
|
|
view/TrackView.cpp \ |
| 84 |
|
|
view/TrackSelector.cpp \ |
| 85 |
|
|
view/TrackNameView.cpp \ |
| 86 |
|
|
view/SingerView.cpp \ |
| 87 |
|
|
view/PianoView.cpp \ |
| 88 |
|
|
view/MeasureView.cpp \ |
| 89 |
|
|
view/ControlView.cpp \ |
| 90 |
|
|
view/ControlSelector.cpp \ |
| 91 |
|
|
view/ControlArea.cpp \ |
| 92 |
|
|
view/AbstractPianoroll.cpp \ |
| 93 |
|
|
view/helper/PitchPainter.cpp \ |
| 94 |
|
|
delegate/command/LyricChangeCommand.cpp \ |
| 95 |
haruneko24 |
9 |
io/audio/AudioTrack.cpp \ |
| 96 |
haruneko24 |
12 |
io/audio/AudioStream.cpp \ |
| 97 |
|
|
io/audio/AudioChunk.cpp \ |
| 98 |
haruneko24 |
21 |
io/audio/AudioRenderer.cpp \ |
| 99 |
|
|
io/audio/WaveWriter.cpp \ |
| 100 |
|
|
io/audio/WaveReader.cpp \ |
| 101 |
haruneko24 |
22 |
io/audio/helper/AudioHelpr.cpp \ |
| 102 |
|
|
synthesis/Vocoder.cpp \ |
| 103 |
haruneko24 |
23 |
synthesis/VocoderInfo.cpp \ |
| 104 |
haruneko24 |
24 |
synthesis/VocoderFrame.cpp \ |
| 105 |
|
|
synthesis/SynthesizerNote.cpp \ |
| 106 |
haruneko24 |
25 |
synthesis/SynthesizerExpression.cpp \ |
| 107 |
haruneko24 |
27 |
synthesis/SynthesizerTrack.cpp \ |
| 108 |
haruneko24 |
28 |
synthesis/SynthesizerPhrase.cpp \ |
| 109 |
haruneko24 |
29 |
synthesis/AbstractSynthesizer.cpp \ |
| 110 |
haruneko24 |
32 |
synthesis/AbstractVocoderEngine.cpp \ |
| 111 |
|
|
synthesis/AbstractCorpus.cpp \ |
| 112 |
haruneko24 |
35 |
synthesis/WaveCorpus.cpp \ |
| 113 |
haruneko24 |
36 |
synthesis/WorldEngine.cpp \ |
| 114 |
|
|
math/dsp/tandem_ap.cpp \ |
| 115 |
|
|
math/dsp/synthesis_ap.cpp \ |
| 116 |
|
|
math/dsp/synthesis.cpp \ |
| 117 |
|
|
math/dsp/star.cpp \ |
| 118 |
|
|
math/dsp/platinum.cpp \ |
| 119 |
|
|
math/dsp/matlabfunctions.cpp \ |
| 120 |
|
|
math/dsp/fft.cpp \ |
| 121 |
|
|
math/dsp/dio.cpp \ |
| 122 |
haruneko24 |
40 |
math/dsp/common.cpp \ |
| 123 |
haruneko24 |
49 |
utility/envelope/PulseLocationComputer.cpp \ |
| 124 |
haruneko24 |
50 |
utility/envelope/SquareAmpliferComputer.cpp \ |
| 125 |
haruneko24 |
51 |
gui/EditorProperty.cpp \ |
| 126 |
haruneko24 |
52 |
gui/helper/WaveSynthesisTask.cpp \ |
| 127 |
haruneko24 |
55 |
gui/TrackPreferenceDialog.cpp \ |
| 128 |
haruneko24 |
57 |
gui/SynthesizerFactory.cpp \ |
| 129 |
|
|
echoes/AbstractStyleGenerator.cpp \ |
| 130 |
|
|
gui/helper/PreferenceItem.cpp \ |
| 131 |
haruneko24 |
58 |
echoes/SimpleStyleGenerator.cpp \ |
| 132 |
haruneko24 |
59 |
gui/EditorPreferenceDialog.cpp \ |
| 133 |
|
|
gui/SingerPreferenceItem.cpp \ |
| 134 |
|
|
model/SingerModel.cpp \ |
| 135 |
|
|
model/ControlItem.cpp \ |
| 136 |
haruneko24 |
60 |
model/xml/SingerXmlFactory.cpp \ |
| 137 |
haruneko24 |
61 |
gui/helper/PreferenceFileDelegate.cpp \ |
| 138 |
|
|
echoes/EchoesSegment.cpp \ |
| 139 |
|
|
echoes/EchoesAnalysis.cpp \ |
| 140 |
haruneko24 |
64 |
echoes/EchoesInfo.cpp \ |
| 141 |
|
|
echoes/EchoesStyleModel.cpp \ |
| 142 |
|
|
echoes/EchoesQuery.cpp \ |
| 143 |
haruneko24 |
67 |
echoes/EchoesPhrase.cpp \ |
| 144 |
haruneko24 |
68 |
echoes/EchoesStyleGenerator.cpp \ |
| 145 |
haruneko24 |
74 |
view/helper/ControlCommand.cpp \ |
| 146 |
|
|
gui/StyleGeneratorFactory.cpp \ |
| 147 |
haruneko24 |
82 |
gui/EchoesStyleDialog.cpp \ |
| 148 |
|
|
view/helper/AbstractMouseAction.cpp \ |
| 149 |
|
|
view/helper/SelectorMouseAction.cpp \ |
| 150 |
haruneko24 |
83 |
view/helper/NoteMoveCommand.cpp \ |
| 151 |
haruneko24 |
85 |
view/helper/PencilMouseAction.cpp \ |
| 152 |
haruneko24 |
87 |
view/helper/NoteInsertCommand.cpp \ |
| 153 |
|
|
view/helper/NoteDeleteCommand.cpp \ |
| 154 |
|
|
view/helper/F0PencilMouseAction.cpp \ |
| 155 |
haruneko24 |
89 |
view/helper/EraserMouseAction.cpp \ |
| 156 |
|
|
echoes/dialog/PhraseView.cpp |
| 157 |
haruneko24 |
6 |
|
| 158 |
|
|
HEADERS += \ |
| 159 |
|
|
configure.h \ |
| 160 |
|
|
io/RiffFile.h \ |
| 161 |
|
|
io/RiffChunk.h \ |
| 162 |
|
|
utility/Utility.h \ |
| 163 |
|
|
math/SmootMatching.h \ |
| 164 |
|
|
math/NormalDistribution.h \ |
| 165 |
|
|
math/Matrix.h \ |
| 166 |
|
|
math/MathSet.h \ |
| 167 |
|
|
math/GmmSet.h \ |
| 168 |
|
|
math/GmmData.h \ |
| 169 |
|
|
sequence/importer/SimpleImporter.h \ |
| 170 |
|
|
sequence/importer/Interpreter.h \ |
| 171 |
|
|
sequence/importer/Importer.h \ |
| 172 |
|
|
sequence/VibratoHandle.h \ |
| 173 |
|
|
sequence/Track.h \ |
| 174 |
|
|
sequence/Tempo.h \ |
| 175 |
|
|
sequence/SingerEvent.h \ |
| 176 |
|
|
sequence/Sequence.h \ |
| 177 |
|
|
sequence/NoteEvent.h \ |
| 178 |
|
|
sequence/LyricHandle.h \ |
| 179 |
|
|
sequence/ControlCurve.h \ |
| 180 |
|
|
sequence/AbstractHandle.h \ |
| 181 |
|
|
sequence/AbstractEvent.h \ |
| 182 |
|
|
sequence/importer/Exporter.h \ |
| 183 |
|
|
sequence/importer/VsqTextImporter.h \ |
| 184 |
|
|
sequence/Measure.h \ |
| 185 |
|
|
io/midi/MidiFile.h \ |
| 186 |
|
|
io/midi/MidiChunk.h \ |
| 187 |
|
|
io/midi/MidiEvent.h \ |
| 188 |
|
|
io/midi/MetaEvent.h \ |
| 189 |
|
|
io/midi/ExclusiveEvent.h \ |
| 190 |
|
|
sequence/importer/VsqImporter.h \ |
| 191 |
|
|
math/Pca.h \ |
| 192 |
|
|
io/utau/UtauPhoneme.h \ |
| 193 |
|
|
io/utau/UtauLibrary.h \ |
| 194 |
|
|
io/utau/PrefixMap.h \ |
| 195 |
|
|
io/utau/CharacterSettings.h \ |
| 196 |
|
|
utility/MessageHandler.h \ |
| 197 |
|
|
delegate/TrackDelegate.h \ |
| 198 |
|
|
delegate/PitchDelegate.h \ |
| 199 |
|
|
delegate/NoteDelegate.h \ |
| 200 |
|
|
delegate/FileopenDelegate.h \ |
| 201 |
|
|
delegate/ComboboxDelegate.h \ |
| 202 |
|
|
utility/task/Task.h \ |
| 203 |
|
|
utility/task/Worker.h \ |
| 204 |
|
|
utility/envelope/VolumeComputer.h \ |
| 205 |
|
|
utility/envelope/F0Computer.h \ |
| 206 |
|
|
utility/envelope/EnvelopeComputer.h \ |
| 207 |
|
|
utility/envelope/Envelope.h \ |
| 208 |
|
|
utility/task/Manager.h \ |
| 209 |
|
|
gui/EditorWindow.h \ |
| 210 |
|
|
gui/EditorWidget.h \ |
| 211 |
|
|
gui/helper/WaveAnalysisTask.h \ |
| 212 |
|
|
gui/helper/EnvelopeComputingTask.h \ |
| 213 |
|
|
gui/helper/TimeComputingTask.h \ |
| 214 |
|
|
model/xml/TreeXmlFactory.h \ |
| 215 |
|
|
model/xml/SequenceXmlFactory.h \ |
| 216 |
|
|
view/ViewSettings.h \ |
| 217 |
|
|
view/ViewArea.h \ |
| 218 |
|
|
view/TrackView.h \ |
| 219 |
|
|
view/TrackSelector.h \ |
| 220 |
|
|
view/TrackNameView.h \ |
| 221 |
|
|
view/SingerView.h \ |
| 222 |
|
|
view/PianoView.h \ |
| 223 |
|
|
view/MeasureView.h \ |
| 224 |
|
|
view/ControlView.h \ |
| 225 |
|
|
view/ControlSelector.h \ |
| 226 |
|
|
view/ControlArea.h \ |
| 227 |
|
|
view/AbstractPianoroll.h \ |
| 228 |
|
|
view/helper/PitchPainter.h \ |
| 229 |
|
|
model/TreeItemModel.h \ |
| 230 |
|
|
model/TreeItem.h \ |
| 231 |
|
|
model/TrackItem.h \ |
| 232 |
|
|
model/SequenceModel.h \ |
| 233 |
|
|
model/PhonemeItem.h \ |
| 234 |
|
|
model/MeasureItem.h \ |
| 235 |
|
|
model/EventItem.h \ |
| 236 |
|
|
utility/ControlPoint.h \ |
| 237 |
|
|
delegate/command/LyricChangeCommand.h \ |
| 238 |
haruneko24 |
9 |
io/audio/AudioTrack.h \ |
| 239 |
haruneko24 |
12 |
io/audio/AudioStream.h \ |
| 240 |
|
|
io/audio/AudioChunk.h \ |
| 241 |
haruneko24 |
21 |
io/audio/AudioRenderer.h \ |
| 242 |
|
|
io/audio/ChunkReader.h \ |
| 243 |
|
|
io/audio/ChunkWriter.h \ |
| 244 |
|
|
io/audio/WaveWriter.h \ |
| 245 |
|
|
io/audio/WaveReader.h \ |
| 246 |
haruneko24 |
22 |
io/audio/helper/AudioHelper.h \ |
| 247 |
|
|
synthesis/Vocoder.h \ |
| 248 |
|
|
synthesis/VocoderInfo.h \ |
| 249 |
haruneko24 |
24 |
synthesis/VocoderFrame.h \ |
| 250 |
|
|
synthesis/SynthesizerNote.h \ |
| 251 |
haruneko24 |
25 |
synthesis/SynthesizerExpression.h \ |
| 252 |
haruneko24 |
27 |
synthesis/SynthesizerTrack.h \ |
| 253 |
haruneko24 |
28 |
synthesis/SynthesizerPhrase.h \ |
| 254 |
haruneko24 |
29 |
synthesis/AbstractSynthesizer.h \ |
| 255 |
haruneko24 |
30 |
synthesis/AbstractVocoderEngine.h \ |
| 256 |
|
|
model/importer/UtauCorpusImporter.h \ |
| 257 |
haruneko24 |
32 |
model/importer/ModelImporter.h \ |
| 258 |
|
|
synthesis/AbstractCorpus.h \ |
| 259 |
haruneko24 |
35 |
synthesis/WaveCorpus.h \ |
| 260 |
haruneko24 |
36 |
synthesis/WorldEngine.h \ |
| 261 |
|
|
math/dsp/tandem_ap.h \ |
| 262 |
|
|
math/dsp/synthesis_ap.h \ |
| 263 |
|
|
math/dsp/synthesis.h \ |
| 264 |
|
|
math/dsp/star.h \ |
| 265 |
|
|
math/dsp/platinum.h \ |
| 266 |
|
|
math/dsp/matlabfunctions.h \ |
| 267 |
|
|
math/dsp/fft.h \ |
| 268 |
|
|
math/dsp/dio.h \ |
| 269 |
|
|
math/dsp/constant_numbers.h \ |
| 270 |
haruneko24 |
40 |
math/dsp/common.h \ |
| 271 |
haruneko24 |
49 |
utility/envelope/PulseLocationComputer.h \ |
| 272 |
haruneko24 |
50 |
utility/envelope/SquareAmpliferComputer.h \ |
| 273 |
haruneko24 |
51 |
gui/EditorProperty.h \ |
| 274 |
haruneko24 |
52 |
gui/helper/WaveSynthesisTask.h \ |
| 275 |
haruneko24 |
55 |
gui/TrackPreferenceDialog.h \ |
| 276 |
haruneko24 |
57 |
gui/SynthesizerFactory.h \ |
| 277 |
|
|
echoes/AbstractStyleGenerator.h \ |
| 278 |
|
|
gui/helper/PreferenceItem.h \ |
| 279 |
haruneko24 |
58 |
echoes/SimpleStyleGenerator.h \ |
| 280 |
haruneko24 |
59 |
gui/EditorPreferenceDialog.h \ |
| 281 |
|
|
gui/SingerPreferenceItem.h \ |
| 282 |
|
|
model/SingerModel.h \ |
| 283 |
|
|
model/ControlItem.h \ |
| 284 |
haruneko24 |
60 |
model/xml/SingerXmlFactory.h \ |
| 285 |
haruneko24 |
61 |
gui/helper/PreferenceFileDelegate.h \ |
| 286 |
|
|
echoes/EchoesSegment.h \ |
| 287 |
|
|
echoes/EchoesAnalysis.h \ |
| 288 |
haruneko24 |
64 |
echoes/EchoesInfo.h \ |
| 289 |
|
|
echoes/EchoesStyleModel.h \ |
| 290 |
|
|
echoes/EchoesQuery.h \ |
| 291 |
haruneko24 |
67 |
echoes/EchoesPhrase.h \ |
| 292 |
haruneko24 |
68 |
echoes/EchoesStyleGenerator.h \ |
| 293 |
haruneko24 |
74 |
view/helper/ControlCommand.h \ |
| 294 |
|
|
gui/StyleGeneratorFactory.h \ |
| 295 |
haruneko24 |
82 |
gui/EchoesStyleDialog.h \ |
| 296 |
|
|
view/helper/AbstractMouseAction.h \ |
| 297 |
|
|
view/helper/SelectorMouseAction.h \ |
| 298 |
haruneko24 |
83 |
view/helper/NoteMoveCommand.h \ |
| 299 |
haruneko24 |
85 |
view/helper/PencilMouseAction.h \ |
| 300 |
haruneko24 |
87 |
view/helper/NoteInsertCommand.h \ |
| 301 |
|
|
view/helper/NoteDeleteCommand.h \ |
| 302 |
|
|
view/helper/F0PencilMouseAction.h \ |
| 303 |
haruneko24 |
89 |
view/helper/EraserMouseAction.h \ |
| 304 |
|
|
echoes/dialog/PhraseView.h |
| 305 |
haruneko24 |
6 |
|
| 306 |
|
|
FORMS += \ |
| 307 |
haruneko24 |
52 |
gui/EditorWindow.ui \ |
| 308 |
haruneko24 |
58 |
gui/TrackPreferenceDialog.ui \ |
| 309 |
haruneko24 |
74 |
gui/EditorPreferenceDialog.ui \ |
| 310 |
|
|
gui/EchoesStyleDialog.ui |
| 311 |
haruneko24 |
6 |
|
| 312 |
|
|
RESOURCES += \ |
| 313 |
|
|
gui/EditorWindow.qrc \ |
| 314 |
|
|
gui/EditorWindow.qrc |