Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /trunk/StandCore.pro

Parent Directory Parent Directory | Revision Log Revision Log


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

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