Chris@0
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@0
|
2
|
Chris@0
|
3 /*
|
Chris@0
|
4 Sonic Visualiser
|
Chris@0
|
5 An audio file viewer and annotation editor.
|
Chris@0
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@77
|
7 This file copyright 2006 Chris Cannam and QMUL.
|
Chris@0
|
8
|
Chris@0
|
9 This program is free software; you can redistribute it and/or
|
Chris@0
|
10 modify it under the terms of the GNU General Public License as
|
Chris@0
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@0
|
12 License, or (at your option) any later version. See the file
|
Chris@0
|
13 COPYING included with this distribution for more information.
|
Chris@0
|
14 */
|
Chris@0
|
15
|
Chris@0
|
16 #include "MainWindow.h"
|
Chris@0
|
17
|
Chris@1
|
18 #include "system/System.h"
|
Chris@1
|
19 #include "system/Init.h"
|
Chris@0
|
20 #include "base/TempDirectory.h"
|
Chris@0
|
21 #include "base/PropertyContainer.h"
|
Chris@0
|
22 #include "base/Preferences.h"
|
Chris@120
|
23 #include "widgets/TipDialog.h"
|
Chris@282
|
24 #include "rdf/SimpleSPARQLQuery.h"
|
Chris@0
|
25
|
Chris@0
|
26 #include <QMetaType>
|
Chris@0
|
27 #include <QApplication>
|
Chris@0
|
28 #include <QDesktopWidget>
|
Chris@0
|
29 #include <QMessageBox>
|
Chris@0
|
30 #include <QTranslator>
|
Chris@0
|
31 #include <QLocale>
|
Chris@5
|
32 #include <QSettings>
|
Chris@7
|
33 #include <QIcon>
|
Chris@11
|
34 #include <QSessionManager>
|
Chris@165
|
35 #include <QDir>
|
Chris@231
|
36 #include <QSplashScreen>
|
Chris@252
|
37 #include <QTimer>
|
Chris@0
|
38
|
Chris@0
|
39 #include <iostream>
|
Chris@0
|
40 #include <signal.h>
|
Chris@0
|
41
|
Chris@215
|
42 #ifdef HAVE_FFTW3F
|
Chris@215
|
43 #include <fftw3.h>
|
Chris@215
|
44 #endif
|
Chris@215
|
45
|
Chris@127
|
46 /*! \mainpage Sonic Visualiser
|
Chris@127
|
47
|
Chris@127
|
48 \section interesting Summary of interesting classes
|
Chris@127
|
49
|
Chris@127
|
50 - Data models: Model and subclasses, e.g. WaveFileModel
|
Chris@127
|
51
|
Chris@127
|
52 - Graphical layers: Layer and subclasses, displayed on View and its
|
Chris@127
|
53 subclass widgets.
|
Chris@127
|
54
|
Chris@127
|
55 - Main window class, document class, and file parser: MainWindow,
|
Chris@127
|
56 Document, SVFileReader
|
Chris@127
|
57
|
Chris@127
|
58 - Turning one model (e.g. audio) into another (e.g. more audio, or a
|
Chris@244
|
59 curve extracted from it): Transform, encapsulating the data that need
|
Chris@244
|
60 to be stored to be able to reproduce a given transformation;
|
Chris@244
|
61 TransformFactory, for discovering the available types of transform;
|
Chris@244
|
62 ModelTransformerFactory, ModelTransformer and subclasses, providing
|
Chris@244
|
63 the mechanisms for applying transforms to data models
|
Chris@127
|
64
|
Chris@127
|
65 - Creating the plugins used by transforms: RealTimePluginFactory,
|
Chris@129
|
66 FeatureExtractionPluginFactory. See also the API documentation for
|
Chris@129
|
67 Vamp feature extraction plugins at
|
Chris@129
|
68 http://www.vamp-plugins.org/code-doc/.
|
Chris@127
|
69
|
Chris@127
|
70 - File reading and writing code: AudioFileReader and subclasses,
|
Chris@127
|
71 WavFileWriter, DataFileReader, SVFileReader
|
Chris@127
|
72
|
Chris@127
|
73 - FFT calculation and cacheing: FFTModel, FFTDataServer
|
Chris@127
|
74
|
Chris@127
|
75 - Widgets that show groups of editable properties: PropertyBox for
|
Chris@127
|
76 layer properties (contained in a PropertyStack), PluginParameterBox
|
Chris@127
|
77 for plugins (contained in a PluginParameterDialog)
|
Chris@127
|
78
|
Chris@127
|
79 - Audio playback: AudioCallbackPlaySource and subclasses,
|
Chris@127
|
80 AudioCallbackPlayTarget and subclasses, AudioGenerator
|
Chris@127
|
81
|
Chris@127
|
82 \section model Data sources: the Model hierarchy
|
Chris@127
|
83
|
Chris@127
|
84 A Model is something containing, or knowing how to obtain, data.
|
Chris@127
|
85
|
Chris@127
|
86 For example, WaveFileModel is a model that knows how to get data
|
Chris@127
|
87 from an audio file; SparseTimeValueModel is a model containing
|
Chris@127
|
88 editable "curve" data.
|
Chris@127
|
89
|
Chris@127
|
90 Models typically subclass one of a number of abstract subclasses of
|
Chris@127
|
91 Model. For example, WaveFileModel subclasses DenseTimeValueModel,
|
Chris@127
|
92 which describes an interface for models that have a value at each
|
Chris@127
|
93 time point for a given sampling resolution. (Note that
|
Chris@127
|
94 WaveFileModel does not actually read the files itself: it uses
|
Chris@127
|
95 AudioFileReader classes for that. It just makes data from the
|
Chris@127
|
96 files available in a Model.) SparseTimeValueModel uses the
|
Chris@127
|
97 SparseModel template class, which provides most of the
|
Chris@127
|
98 implementation for models that contain a series of points of some
|
Chris@127
|
99 sort -- also used by NoteModel, TextModel, and
|
Chris@127
|
100 SparseOneDimensionalModel.
|
Chris@127
|
101
|
Chris@127
|
102 Everything that goes on the screen originates from a model, via a
|
Chris@127
|
103 layer (see below). The models are contained in a Document object.
|
Chris@127
|
104 There is no containment hierarchy or ordering of models in the
|
Chris@127
|
105 document. One model is the main model, which defines the sample
|
Chris@127
|
106 rate for playback.
|
Chris@127
|
107
|
Chris@127
|
108 A model may also be marked as a "derived" model, which means it was
|
Chris@127
|
109 generated from another model using some transform (feature
|
Chris@127
|
110 extraction or effect plugin, etc) -- the idea being that they can
|
Chris@127
|
111 be re-generated using the same transform if a new source model is
|
Chris@127
|
112 loaded.
|
Chris@127
|
113
|
Chris@127
|
114 \section layer Things that can display data: the Layer hierarchy
|
Chris@127
|
115
|
Chris@127
|
116 A Layer is something that knows how to draw parts of a model onto a
|
Chris@127
|
117 timeline.
|
Chris@127
|
118
|
Chris@127
|
119 For example, WaveformLayer is a layer which draws waveforms, based
|
Chris@127
|
120 on WaveFileModel; TimeValueLayer draws curves, based on
|
Chris@127
|
121 SparseTimeValueModel; SpectrogramLayer draws spectrograms, based on
|
Chris@127
|
122 WaveFileModel (via FFTModel).
|
Chris@127
|
123
|
Chris@127
|
124 The most basic functions of a layer are: to draw itself onto a
|
Chris@127
|
125 Pane, against a timeline on the x axis; and to permit user
|
Chris@127
|
126 interaction. If you were thinking of adding the capability to
|
Chris@127
|
127 display a new sort of something, then you would want to add a new
|
Chris@127
|
128 layer type. (You may also need a new model type, depending on
|
Chris@127
|
129 whether any existing model can capture the data you need.)
|
Chris@127
|
130 Depending on the sort of data in question, there are various
|
Chris@127
|
131 existing layers that might be appropriate to start from -- for
|
Chris@127
|
132 example, a layer that displays images that the user has imported
|
Chris@127
|
133 and associated with particular times might have something in common
|
Chris@127
|
134 with the existing TextLayer which displays pieces of text that are
|
Chris@127
|
135 associated with particular times.
|
Chris@127
|
136
|
Chris@127
|
137 Although layers are visual objects, they are contained in the
|
Chris@127
|
138 Document in Sonic Visualiser rather than being managed together
|
Chris@127
|
139 with display widgets. The Sonic Visualiser file format has
|
Chris@127
|
140 separate data and layout sections, and the layers are defined in
|
Chris@127
|
141 the data section and then referred to in the layout section which
|
Chris@127
|
142 determines which layers may go on which panes (see Pane below).
|
Chris@127
|
143
|
Chris@127
|
144 Once a layer class is defined, some basic data about it needs to be
|
Chris@127
|
145 set up in the LayerFactory class, and then it will appear in the
|
Chris@127
|
146 menus and so on on the main window.
|
Chris@127
|
147
|
Chris@127
|
148 \section view Widgets that are used to show layers: The View hierarchy
|
Chris@127
|
149
|
Chris@127
|
150 A View is a widget that displays a stack of layers. The most
|
Chris@127
|
151 important subclass is Pane, the widget that is used to show most of
|
Chris@127
|
152 the data in the main window of Sonic Visualiser.
|
Chris@127
|
153
|
Chris@127
|
154 All a pane really does is contain a set of layers and get them to
|
Chris@127
|
155 render themselves (one on top of the other, with the topmost layer
|
Chris@127
|
156 being the one that is currently interacted with), cache the
|
Chris@127
|
157 results, negotiate user interaction with them, and so on. This is
|
Chris@127
|
158 generally fiddly, if not especially interesting. Panes are
|
Chris@127
|
159 strictly layout objects and are not stored in the Document class;
|
Chris@127
|
160 instead the MainWindow contains a PaneStack widget (the widget that
|
Chris@127
|
161 takes up most of Sonic Visualiser's main window) which contains a
|
Chris@127
|
162 set of panes stacked vertically.
|
Chris@127
|
163
|
Chris@127
|
164 Another View subclass is Overview, which is the widget that
|
Chris@127
|
165 contains that green waveform showing the entire file at the bottom
|
Chris@127
|
166 of the window.
|
Chris@127
|
167
|
Chris@127
|
168 */
|
Chris@127
|
169
|
Chris@0
|
170 static QMutex cleanupMutex;
|
Chris@0
|
171
|
Chris@0
|
172 static void
|
Chris@0
|
173 signalHandler(int /* signal */)
|
Chris@0
|
174 {
|
Chris@0
|
175 // Avoid this happening more than once across threads
|
Chris@0
|
176
|
Chris@0
|
177 cleanupMutex.lock();
|
Chris@0
|
178 std::cerr << "signalHandler: cleaning up and exiting" << std::endl;
|
Chris@0
|
179 TempDirectory::getInstance()->cleanup();
|
Chris@0
|
180 exit(0); // without releasing mutex
|
Chris@0
|
181 }
|
Chris@0
|
182
|
Chris@11
|
183 class SVApplication : public QApplication
|
Chris@11
|
184 {
|
Chris@11
|
185 public:
|
Chris@11
|
186 SVApplication(int argc, char **argv) :
|
Chris@11
|
187 QApplication(argc, argv),
|
Chris@11
|
188 m_mainWindow(0) { }
|
Chris@11
|
189 virtual ~SVApplication() { }
|
Chris@11
|
190
|
Chris@11
|
191 void setMainWindow(MainWindow *mw) { m_mainWindow = mw; }
|
Chris@11
|
192 void releaseMainWindow() { m_mainWindow = 0; }
|
Chris@11
|
193
|
Chris@11
|
194 virtual void commitData(QSessionManager &manager) {
|
Chris@11
|
195 if (!m_mainWindow) return;
|
Chris@11
|
196 bool mayAskUser = manager.allowsInteraction();
|
Chris@11
|
197 bool success = m_mainWindow->commitData(mayAskUser);
|
Chris@11
|
198 manager.release();
|
Chris@11
|
199 if (!success) manager.cancel();
|
Chris@11
|
200 }
|
Chris@11
|
201
|
Chris@11
|
202 protected:
|
Chris@11
|
203 MainWindow *m_mainWindow;
|
Chris@11
|
204 };
|
Chris@11
|
205
|
Chris@0
|
206 int
|
Chris@0
|
207 main(int argc, char **argv)
|
Chris@0
|
208 {
|
Chris@11
|
209 SVApplication application(argc, argv);
|
Chris@0
|
210
|
Chris@46
|
211 QStringList args = application.arguments();
|
Chris@46
|
212
|
Chris@0
|
213 signal(SIGINT, signalHandler);
|
Chris@0
|
214 signal(SIGTERM, signalHandler);
|
Chris@0
|
215
|
Chris@0
|
216 #ifndef Q_WS_WIN32
|
Chris@0
|
217 signal(SIGHUP, signalHandler);
|
Chris@0
|
218 signal(SIGQUIT, signalHandler);
|
Chris@0
|
219 #endif
|
Chris@0
|
220
|
Chris@0
|
221 svSystemSpecificInitialisation();
|
Chris@0
|
222
|
Chris@46
|
223 bool audioOutput = true;
|
Chris@70
|
224 bool oscSupport = true;
|
Chris@70
|
225
|
Chris@133
|
226 if (args.contains("--help") || args.contains("-h") || args.contains("-?")) {
|
Chris@70
|
227 std::cerr << QApplication::tr(
|
Chris@70
|
228 "\nSonic Visualiser is a program for viewing and exploring audio data\nfor semantic music analysis and annotation.\n\nUsage:\n\n %1 [--no-audio] [--no-osc] [<file> ...]\n\n --no-audio: Do not attempt to open an audio output device\n --no-osc: Do not provide an Open Sound Control port for remote control\n <file>: One or more Sonic Visualiser (.sv) and audio files may be provided.\n").arg(argv[0]).toStdString() << std::endl;
|
Chris@70
|
229 exit(2);
|
Chris@70
|
230 }
|
Chris@70
|
231
|
Chris@46
|
232 if (args.contains("--no-audio")) audioOutput = false;
|
Chris@70
|
233 if (args.contains("--no-osc")) oscSupport = false;
|
Chris@46
|
234
|
Chris@6
|
235 QApplication::setOrganizationName("sonic-visualiser");
|
Chris@5
|
236 QApplication::setOrganizationDomain("sonicvisualiser.org");
|
Chris@213
|
237 QApplication::setApplicationName(QApplication::tr("Sonic Visualiser"));
|
Chris@141
|
238
|
Chris@231
|
239 QPixmap pixmap(":/icons/sv-splash.png");
|
Chris@231
|
240 QSplashScreen splash(pixmap);
|
Chris@231
|
241
|
Chris@231
|
242 QSettings settings;
|
Chris@237
|
243
|
Chris@237
|
244 settings.beginGroup("Preferences");
|
Chris@237
|
245 if (settings.value("show-splash", true).toBool()) {
|
Chris@231
|
246 splash.show();
|
Chris@252
|
247 QTimer::singleShot(5000, &splash, SLOT(hide()));
|
Chris@231
|
248 application.processEvents();
|
Chris@231
|
249 }
|
Chris@237
|
250 settings.endGroup();
|
Chris@231
|
251
|
Chris@278
|
252 settings.beginGroup("RDF");
|
Chris@278
|
253 if (!settings.contains("rdf-indices")) {
|
Chris@278
|
254 QStringList list;
|
Chris@278
|
255 list << "http://www.vamp-plugins.org/rdf/plugins/index.txt";
|
Chris@278
|
256 settings.setValue("rdf-indices", list);
|
Chris@278
|
257 }
|
Chris@278
|
258 settings.endGroup();
|
Chris@278
|
259
|
Chris@282
|
260 SimpleSPARQLQuery::setImplementationPreference
|
Chris@282
|
261 (SimpleSPARQLQuery::UseDatastore);
|
Chris@282
|
262 // (SimpleSPARQLQuery::UseDirectParser);
|
Chris@282
|
263
|
Chris@141
|
264 QIcon icon;
|
Chris@141
|
265 int sizes[] = { 16, 22, 24, 32, 48, 64, 128 };
|
Chris@141
|
266 for (int i = 0; i < sizeof(sizes)/sizeof(sizes[0]); ++i) {
|
Chris@141
|
267 icon.addFile(QString(":icons/sv-%1x%2.png").arg(sizes[i]).arg(sizes[i]));
|
Chris@141
|
268 }
|
Chris@141
|
269 QApplication::setWindowIcon(icon);
|
Chris@7
|
270
|
Chris@0
|
271 QString language = QLocale::system().name();
|
Chris@0
|
272
|
Chris@0
|
273 QTranslator qtTranslator;
|
Chris@0
|
274 QString qtTrName = QString("qt_%1").arg(language);
|
Chris@253
|
275 std::cerr << "Loading " << qtTrName.toStdString() << "... ";
|
Chris@165
|
276 bool success = false;
|
Chris@165
|
277 if (!(success = qtTranslator.load(qtTrName))) {
|
Chris@165
|
278 QString qtDir = getenv("QTDIR");
|
Chris@165
|
279 if (qtDir != "") {
|
Chris@165
|
280 success = qtTranslator.load
|
Chris@165
|
281 (qtTrName, QDir(qtDir).filePath("translations"));
|
Chris@165
|
282 }
|
Chris@165
|
283 }
|
Chris@165
|
284 if (!success) {
|
Chris@253
|
285 std::cerr << "Failed\nFailed to load Qt translation for locale" << std::endl;
|
Chris@253
|
286 } else {
|
Chris@253
|
287 std::cerr << "Done" << std::endl;
|
Chris@165
|
288 }
|
Chris@0
|
289 application.installTranslator(&qtTranslator);
|
Chris@0
|
290
|
Chris@0
|
291 QTranslator svTranslator;
|
Chris@0
|
292 QString svTrName = QString("sonic-visualiser_%1").arg(language);
|
Chris@253
|
293 std::cerr << "Loading " << svTrName.toStdString() << "... ";
|
Chris@0
|
294 svTranslator.load(svTrName, ":i18n");
|
Chris@253
|
295 std::cerr << "Done" << std::endl;
|
Chris@0
|
296 application.installTranslator(&svTranslator);
|
Chris@0
|
297
|
Chris@187
|
298 StoreStartupLocale();
|
Chris@187
|
299
|
Chris@0
|
300 // Permit size_t and PropertyName to be used as args in queued signal calls
|
Chris@0
|
301 qRegisterMetaType<size_t>("size_t");
|
Chris@0
|
302 qRegisterMetaType<PropertyContainer::PropertyName>("PropertyContainer::PropertyName");
|
Chris@0
|
303
|
Chris@222
|
304 MainWindow *gui = new MainWindow(audioOutput, oscSupport);
|
Chris@222
|
305 application.setMainWindow(gui);
|
Chris@247
|
306 QObject::connect(gui, SIGNAL(hideSplash()), &splash, SLOT(hide()));
|
Chris@0
|
307
|
Chris@0
|
308 QDesktopWidget *desktop = QApplication::desktop();
|
Chris@0
|
309 QRect available = desktop->availableGeometry();
|
Chris@0
|
310
|
Chris@0
|
311 int width = available.width() * 2 / 3;
|
Chris@0
|
312 int height = available.height() / 2;
|
Chris@0
|
313 if (height < 450) height = available.height() * 2 / 3;
|
Chris@0
|
314 if (width > height * 2) width = height * 2;
|
Chris@0
|
315
|
Chris@237
|
316 settings.beginGroup("MainWindow");
|
Chris@5
|
317 QSize size = settings.value("size", QSize(width, height)).toSize();
|
Chris@222
|
318 gui->resize(size);
|
Chris@5
|
319 if (settings.contains("position")) {
|
Chris@222
|
320 gui->move(settings.value("position").toPoint());
|
Chris@5
|
321 }
|
Chris@5
|
322 settings.endGroup();
|
Chris@5
|
323
|
Chris@222
|
324 gui->show();
|
Chris@64
|
325
|
Chris@118
|
326 // The MainWindow class seems to have trouble dealing with this if
|
Chris@118
|
327 // it tries to adapt to this preference before the constructor is
|
Chris@118
|
328 // complete. As a lazy hack, apply it explicitly from here
|
Chris@222
|
329 gui->preferenceChanged("Property Box Layout");
|
Chris@118
|
330
|
Chris@54
|
331 bool haveSession = false;
|
Chris@54
|
332 bool haveMainModel = false;
|
Chris@145
|
333 bool havePriorCommandLineModel = false;
|
Chris@46
|
334
|
Chris@54
|
335 for (QStringList::iterator i = args.begin(); i != args.end(); ++i) {
|
Chris@54
|
336
|
Chris@83
|
337 MainWindow::FileOpenStatus status = MainWindow::FileOpenFailed;
|
Chris@54
|
338
|
Chris@54
|
339 if (i == args.begin()) continue;
|
Chris@54
|
340 if (i->startsWith('-')) continue;
|
Chris@54
|
341
|
Chris@54
|
342 QString path = *i;
|
Chris@54
|
343
|
Chris@54
|
344 if (path.endsWith("sv")) {
|
Chris@54
|
345 if (!haveSession) {
|
Chris@222
|
346 status = gui->openSessionFile(path);
|
Chris@82
|
347 if (status == MainWindow::FileOpenSucceeded) {
|
Chris@54
|
348 haveSession = true;
|
Chris@54
|
349 haveMainModel = true;
|
Chris@54
|
350 }
|
Chris@54
|
351 } else {
|
Chris@54
|
352 std::cerr << "WARNING: Ignoring additional session file argument \"" << path.toStdString() << "\"" << std::endl;
|
Chris@82
|
353 status = MainWindow::FileOpenSucceeded;
|
Chris@54
|
354 }
|
Chris@54
|
355 }
|
Chris@82
|
356 if (status != MainWindow::FileOpenSucceeded) {
|
Chris@54
|
357 if (!haveMainModel) {
|
Chris@222
|
358 status = gui->open(path, MainWindow::ReplaceMainModel);
|
Chris@145
|
359 if (status == MainWindow::FileOpenSucceeded) {
|
Chris@145
|
360 haveMainModel = true;
|
Chris@145
|
361 }
|
Chris@54
|
362 } else {
|
Chris@145
|
363 if (haveSession && !havePriorCommandLineModel) {
|
Chris@222
|
364 status = gui->open(path, MainWindow::AskUser);
|
Chris@145
|
365 if (status == MainWindow::FileOpenSucceeded) {
|
Chris@145
|
366 havePriorCommandLineModel = true;
|
Chris@145
|
367 }
|
Chris@145
|
368 } else {
|
Chris@222
|
369 status = gui->open(path, MainWindow::CreateAdditionalModel);
|
Chris@145
|
370 }
|
Chris@54
|
371 }
|
Chris@54
|
372 }
|
Chris@82
|
373 if (status == MainWindow::FileOpenFailed) {
|
Chris@270
|
374 splash.hide();
|
Chris@54
|
375 QMessageBox::critical
|
Chris@222
|
376 (gui, QMessageBox::tr("Failed to open file"),
|
Chris@197
|
377 QMessageBox::tr("File or URL \"%1\" could not be opened").arg(path));
|
Chris@270
|
378 } else if (status == MainWindow::FileOpenWrongMode) {
|
Chris@270
|
379 splash.hide();
|
Chris@270
|
380 QMessageBox::critical
|
Chris@270
|
381 (gui, QMessageBox::tr("Failed to open file"),
|
Chris@270
|
382 QMessageBox::tr("<b>Audio required</b><p>Please load at least one audio file before importing annotation data"));
|
Chris@54
|
383 }
|
Chris@180
|
384 }
|
Chris@180
|
385
|
Chris@215
|
386 #ifdef HAVE_FFTW3F
|
Chris@215
|
387 settings.beginGroup("FFTWisdom");
|
Chris@215
|
388 QString wisdom = settings.value("wisdom").toString();
|
Chris@215
|
389 if (wisdom != "") {
|
Chris@215
|
390 fftwf_import_wisdom_from_string(wisdom.toLocal8Bit().data());
|
Chris@215
|
391 }
|
Chris@267
|
392 #ifdef HAVE_FFTW3
|
Chris@267
|
393 wisdom = settings.value("wisdom_d").toString();
|
Chris@267
|
394 if (wisdom != "") {
|
Chris@267
|
395 fftw_import_wisdom_from_string(wisdom.toLocal8Bit().data());
|
Chris@267
|
396 }
|
Chris@267
|
397 #endif
|
Chris@215
|
398 settings.endGroup();
|
Chris@215
|
399 #endif
|
Chris@180
|
400
|
Chris@231
|
401 splash.finish(gui);
|
Chris@180
|
402
|
Chris@123
|
403 /*
|
Chris@120
|
404 TipDialog tipDialog;
|
Chris@120
|
405 if (tipDialog.isOK()) {
|
Chris@120
|
406 tipDialog.exec();
|
Chris@120
|
407 }
|
Chris@123
|
408 */
|
Chris@0
|
409 int rv = application.exec();
|
Chris@0
|
410
|
Chris@0
|
411 cleanupMutex.lock();
|
Chris@0
|
412 TempDirectory::getInstance()->cleanup();
|
Chris@222
|
413
|
Chris@11
|
414 application.releaseMainWindow();
|
Chris@5
|
415
|
Chris@215
|
416 #ifdef HAVE_FFTW3F
|
Chris@267
|
417 settings.beginGroup("FFTWisdom");
|
Chris@215
|
418 char *cwisdom = fftwf_export_wisdom_to_string();
|
Chris@215
|
419 if (cwisdom) {
|
Chris@215
|
420 settings.setValue("wisdom", cwisdom);
|
Chris@215
|
421 fftwf_free(cwisdom);
|
Chris@215
|
422 }
|
Chris@267
|
423 #ifdef HAVE_FFTW3
|
Chris@267
|
424 cwisdom = fftw_export_wisdom_to_string();
|
Chris@267
|
425 if (cwisdom) {
|
Chris@267
|
426 settings.setValue("wisdom_d", cwisdom);
|
Chris@267
|
427 fftw_free(cwisdom);
|
Chris@267
|
428 }
|
Chris@267
|
429 #endif
|
Chris@267
|
430 settings.endGroup();
|
Chris@215
|
431 #endif
|
Chris@215
|
432
|
Chris@222
|
433 delete gui;
|
Chris@222
|
434
|
Chris@0
|
435 return rv;
|
Chris@0
|
436 }
|