Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /trunk/StandCore.pro

Parent Directory Parent Directory | Revision Log Revision Log


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

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26