annotate main/main.cpp @ 362:a0ea7bcac15b macness

Now can load file when someone chooses from Mac Finder "Open with > Sonic Visualiser" - but currently *only* if the app is already running.
author Dan Stowell <dan.stowell@eecs.qmul.ac.uk>
date Mon, 11 Oct 2010 14:16:54 +0100
parents 3bb7eef5d45c
children 43205eda54bd
rev   line source
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@315 24 #include "transform/TransformFactory.h"
Chris@0 25
dan@362 26 #include <ApplicationServices/ApplicationServices.h>
dan@362 27 #include <Carbon/Carbon.h>
dan@362 28
Chris@0 29 #include <QMetaType>
Chris@0 30 #include <QApplication>
Chris@0 31 #include <QDesktopWidget>
Chris@0 32 #include <QMessageBox>
Chris@0 33 #include <QTranslator>
Chris@0 34 #include <QLocale>
Chris@5 35 #include <QSettings>
Chris@7 36 #include <QIcon>
Chris@11 37 #include <QSessionManager>
Chris@165 38 #include <QDir>
Chris@231 39 #include <QSplashScreen>
Chris@252 40 #include <QTimer>
Chris@331 41 #include <QPainter>
Chris@331 42
Chris@331 43 #include "../version.h"
Chris@0 44
Chris@0 45 #include <iostream>
Chris@0 46 #include <signal.h>
Chris@0 47
Chris@215 48 #ifdef HAVE_FFTW3F
Chris@215 49 #include <fftw3.h>
Chris@215 50 #endif
Chris@215 51
Chris@127 52 /*! \mainpage Sonic Visualiser
Chris@127 53
Chris@127 54 \section interesting Summary of interesting classes
Chris@127 55
Chris@127 56 - Data models: Model and subclasses, e.g. WaveFileModel
Chris@127 57
Chris@127 58 - Graphical layers: Layer and subclasses, displayed on View and its
Chris@127 59 subclass widgets.
Chris@127 60
Chris@127 61 - Main window class, document class, and file parser: MainWindow,
Chris@127 62 Document, SVFileReader
Chris@127 63
Chris@127 64 - Turning one model (e.g. audio) into another (e.g. more audio, or a
Chris@244 65 curve extracted from it): Transform, encapsulating the data that need
Chris@244 66 to be stored to be able to reproduce a given transformation;
Chris@244 67 TransformFactory, for discovering the available types of transform;
Chris@244 68 ModelTransformerFactory, ModelTransformer and subclasses, providing
Chris@244 69 the mechanisms for applying transforms to data models
Chris@127 70
Chris@127 71 - Creating the plugins used by transforms: RealTimePluginFactory,
Chris@129 72 FeatureExtractionPluginFactory. See also the API documentation for
Chris@129 73 Vamp feature extraction plugins at
Chris@129 74 http://www.vamp-plugins.org/code-doc/.
Chris@127 75
Chris@127 76 - File reading and writing code: AudioFileReader and subclasses,
Chris@127 77 WavFileWriter, DataFileReader, SVFileReader
Chris@127 78
Chris@127 79 - FFT calculation and cacheing: FFTModel, FFTDataServer
Chris@127 80
Chris@127 81 - Widgets that show groups of editable properties: PropertyBox for
Chris@127 82 layer properties (contained in a PropertyStack), PluginParameterBox
Chris@127 83 for plugins (contained in a PluginParameterDialog)
Chris@127 84
Chris@127 85 - Audio playback: AudioCallbackPlaySource and subclasses,
Chris@127 86 AudioCallbackPlayTarget and subclasses, AudioGenerator
Chris@127 87
Chris@127 88 \section model Data sources: the Model hierarchy
Chris@127 89
Chris@127 90 A Model is something containing, or knowing how to obtain, data.
Chris@127 91
Chris@127 92 For example, WaveFileModel is a model that knows how to get data
Chris@127 93 from an audio file; SparseTimeValueModel is a model containing
Chris@127 94 editable "curve" data.
Chris@127 95
Chris@127 96 Models typically subclass one of a number of abstract subclasses of
Chris@127 97 Model. For example, WaveFileModel subclasses DenseTimeValueModel,
Chris@127 98 which describes an interface for models that have a value at each
Chris@127 99 time point for a given sampling resolution. (Note that
Chris@127 100 WaveFileModel does not actually read the files itself: it uses
Chris@127 101 AudioFileReader classes for that. It just makes data from the
Chris@127 102 files available in a Model.) SparseTimeValueModel uses the
Chris@127 103 SparseModel template class, which provides most of the
Chris@127 104 implementation for models that contain a series of points of some
Chris@127 105 sort -- also used by NoteModel, TextModel, and
Chris@127 106 SparseOneDimensionalModel.
Chris@127 107
Chris@127 108 Everything that goes on the screen originates from a model, via a
Chris@127 109 layer (see below). The models are contained in a Document object.
Chris@127 110 There is no containment hierarchy or ordering of models in the
Chris@127 111 document. One model is the main model, which defines the sample
Chris@127 112 rate for playback.
Chris@127 113
Chris@127 114 A model may also be marked as a "derived" model, which means it was
Chris@127 115 generated from another model using some transform (feature
Chris@127 116 extraction or effect plugin, etc) -- the idea being that they can
Chris@127 117 be re-generated using the same transform if a new source model is
Chris@127 118 loaded.
Chris@127 119
Chris@127 120 \section layer Things that can display data: the Layer hierarchy
Chris@127 121
Chris@127 122 A Layer is something that knows how to draw parts of a model onto a
Chris@127 123 timeline.
Chris@127 124
Chris@127 125 For example, WaveformLayer is a layer which draws waveforms, based
Chris@127 126 on WaveFileModel; TimeValueLayer draws curves, based on
Chris@127 127 SparseTimeValueModel; SpectrogramLayer draws spectrograms, based on
Chris@127 128 WaveFileModel (via FFTModel).
Chris@127 129
Chris@127 130 The most basic functions of a layer are: to draw itself onto a
Chris@127 131 Pane, against a timeline on the x axis; and to permit user
Chris@127 132 interaction. If you were thinking of adding the capability to
Chris@127 133 display a new sort of something, then you would want to add a new
Chris@127 134 layer type. (You may also need a new model type, depending on
Chris@127 135 whether any existing model can capture the data you need.)
Chris@127 136 Depending on the sort of data in question, there are various
Chris@127 137 existing layers that might be appropriate to start from -- for
Chris@127 138 example, a layer that displays images that the user has imported
Chris@127 139 and associated with particular times might have something in common
Chris@127 140 with the existing TextLayer which displays pieces of text that are
Chris@127 141 associated with particular times.
Chris@127 142
Chris@127 143 Although layers are visual objects, they are contained in the
Chris@127 144 Document in Sonic Visualiser rather than being managed together
Chris@127 145 with display widgets. The Sonic Visualiser file format has
Chris@127 146 separate data and layout sections, and the layers are defined in
Chris@127 147 the data section and then referred to in the layout section which
Chris@127 148 determines which layers may go on which panes (see Pane below).
Chris@127 149
Chris@127 150 Once a layer class is defined, some basic data about it needs to be
Chris@127 151 set up in the LayerFactory class, and then it will appear in the
Chris@127 152 menus and so on on the main window.
Chris@127 153
Chris@127 154 \section view Widgets that are used to show layers: The View hierarchy
Chris@127 155
Chris@127 156 A View is a widget that displays a stack of layers. The most
Chris@127 157 important subclass is Pane, the widget that is used to show most of
Chris@127 158 the data in the main window of Sonic Visualiser.
Chris@127 159
Chris@127 160 All a pane really does is contain a set of layers and get them to
Chris@127 161 render themselves (one on top of the other, with the topmost layer
Chris@127 162 being the one that is currently interacted with), cache the
Chris@127 163 results, negotiate user interaction with them, and so on. This is
Chris@127 164 generally fiddly, if not especially interesting. Panes are
Chris@127 165 strictly layout objects and are not stored in the Document class;
Chris@127 166 instead the MainWindow contains a PaneStack widget (the widget that
Chris@127 167 takes up most of Sonic Visualiser's main window) which contains a
Chris@127 168 set of panes stacked vertically.
Chris@127 169
Chris@127 170 Another View subclass is Overview, which is the widget that
Chris@127 171 contains that green waveform showing the entire file at the bottom
Chris@127 172 of the window.
Chris@127 173
Chris@127 174 */
Chris@127 175
Chris@0 176 static QMutex cleanupMutex;
dan@362 177 static MainWindow *gui;
Chris@0 178
Chris@0 179 static void
Chris@0 180 signalHandler(int /* signal */)
Chris@0 181 {
Chris@0 182 // Avoid this happening more than once across threads
Chris@0 183
Chris@0 184 cleanupMutex.lock();
Chris@0 185 std::cerr << "signalHandler: cleaning up and exiting" << std::endl;
Chris@0 186 TempDirectory::getInstance()->cleanup();
Chris@0 187 exit(0); // without releasing mutex
Chris@0 188 }
Chris@0 189
Chris@11 190 class SVApplication : public QApplication
Chris@11 191 {
Chris@11 192 public:
Chris@296 193 SVApplication(int &argc, char **argv) :
Chris@11 194 QApplication(argc, argv),
Chris@11 195 m_mainWindow(0) { }
Chris@11 196 virtual ~SVApplication() { }
Chris@11 197
Chris@11 198 void setMainWindow(MainWindow *mw) { m_mainWindow = mw; }
Chris@11 199 void releaseMainWindow() { m_mainWindow = 0; }
Chris@11 200
Chris@11 201 virtual void commitData(QSessionManager &manager) {
Chris@11 202 if (!m_mainWindow) return;
Chris@11 203 bool mayAskUser = manager.allowsInteraction();
Chris@11 204 bool success = m_mainWindow->commitData(mayAskUser);
Chris@11 205 manager.release();
Chris@11 206 if (!success) manager.cancel();
Chris@11 207 }
Chris@11 208
dan@362 209 /** Application-global handler for filepaths passed in, e.g. as command-line arguments or apple events */
dan@362 210 static void handleFilepathArgument(QString path, QSplashScreen *splash){
dan@362 211 static bool haveSession = false;
dan@362 212 static bool haveMainModel = false;
dan@362 213 static bool havePriorCommandLineModel = false;
dan@362 214
dan@362 215 MainWindow::FileOpenStatus status = MainWindow::FileOpenFailed;
dan@362 216
dan@362 217 if (path.endsWith("sv")) {
dan@362 218 if (!haveSession) {
dan@362 219 status = gui->openSessionFile(path);
dan@362 220 if (status == MainWindow::FileOpenSucceeded) {
dan@362 221 haveSession = true;
dan@362 222 haveMainModel = true;
dan@362 223 }
dan@362 224 } else {
dan@362 225 std::cerr << "WARNING: Ignoring additional session file argument \"" << path.toStdString() << "\"" << std::endl;
dan@362 226 status = MainWindow::FileOpenSucceeded;
dan@362 227 }
dan@362 228 }
dan@362 229 if (status != MainWindow::FileOpenSucceeded) {
dan@362 230 if (!haveMainModel) {
dan@362 231 status = gui->open(path, MainWindow::ReplaceMainModel);
dan@362 232 if (status == MainWindow::FileOpenSucceeded) {
dan@362 233 haveMainModel = true;
dan@362 234 }
dan@362 235 } else {
dan@362 236 if (haveSession && !havePriorCommandLineModel) {
dan@362 237 status = gui->open(path, MainWindow::AskUser);
dan@362 238 if (status == MainWindow::FileOpenSucceeded) {
dan@362 239 havePriorCommandLineModel = true;
dan@362 240 }
dan@362 241 } else {
dan@362 242 status = gui->open(path, MainWindow::CreateAdditionalModel);
dan@362 243 }
dan@362 244 }
dan@362 245 }
dan@362 246 if (status == MainWindow::FileOpenFailed) {
dan@362 247 if (splash) splash->hide();
dan@362 248 QMessageBox::critical
dan@362 249 (gui, QMessageBox::tr("Failed to open file"),
dan@362 250 QMessageBox::tr("File or URL \"%1\" could not be opened").arg(path));
dan@362 251 } else if (status == MainWindow::FileOpenWrongMode) {
dan@362 252 if (splash) splash->hide();
dan@362 253 QMessageBox::critical
dan@362 254 (gui, QMessageBox::tr("Failed to open file"),
dan@362 255 QMessageBox::tr("<b>Audio required</b><p>Please load at least one audio file before importing annotation data"));
dan@362 256 }
dan@362 257 }
dan@362 258
dan@362 259 #ifdef Q_WS_MAC
dan@362 260 static pascal OSErr HandleOpenDocAE (const AppleEvent * theAppleEvent, AppleEvent * /* reply */, SInt32 /* handlerRefcon */) {
dan@362 261 AEDescList docList;
dan@362 262 FSRef theFSRef;
dan@362 263 long count = 0;
dan@362 264 OSErr err;
dan@362 265
dan@362 266 err = AEGetParamDesc(theAppleEvent, keyDirectObject, typeAEList, &docList);
dan@362 267 err = AECountItems(&docList, &count);
dan@362 268 if(count == 0){
dan@362 269 std::cerr << "SV warning: received apple open-documents event with no documents (count==0)" << std::endl;
dan@362 270 AEDisposeDesc(&docList);
dan@362 271 return noErr;
dan@362 272 }
dan@362 273 // NB we could be passed a list of files - however, SV on Mac currently can only open one at a time, so we simply open the first.
dan@362 274
dan@362 275 err = AEGetNthPtr(&docList, 1, typeFSRef, NULL, NULL, &theFSRef, sizeof(theFSRef), NULL);
dan@362 276
dan@362 277 // Call routine to open document with current reference.
dan@362 278 if(err == noErr){
dan@362 279 char uPath[1024];
dan@362 280 FSRefMakePath(&theFSRef, (UInt8*)uPath, 1023);
dan@362 281 std::cerr << "SV received Apple Event request to open " << uPath << std::endl;
dan@362 282 handleFilepathArgument(uPath, NULL);
dan@362 283 }
dan@362 284
dan@362 285 AEDisposeDesc(&docList);
dan@362 286 return noErr;
dan@362 287 }
dan@362 288 static OSErr InstallMacOSEventHandlers(void)
dan@362 289 {
dan@362 290 OSErr err;
dan@362 291 err = AEInstallEventHandler(kCoreEventClass, kAEOpenDocuments, NewAEEventHandlerUPP(HandleOpenDocAE), 0, false);
dan@362 292 std::cerr << "HandleOpenDocAE installed. " << err << std::endl;
dan@362 293 return err;
dan@362 294 }
dan@362 295 #endif // Q_WS_MAC
dan@362 296
Chris@11 297 protected:
Chris@11 298 MainWindow *m_mainWindow;
Chris@11 299 };
Chris@11 300
Chris@0 301 int
Chris@0 302 main(int argc, char **argv)
Chris@0 303 {
Chris@316 304 #ifdef Q_WS_X11
Chris@317 305 #if QT_VERSION >= 0x040500
Chris@342 306 // QApplication::setGraphicsSystem("raster");
Chris@316 307 #endif
Chris@316 308 #endif
Chris@316 309
Chris@11 310 SVApplication application(argc, argv);
Chris@0 311
Chris@46 312 QStringList args = application.arguments();
Chris@46 313
Chris@0 314 signal(SIGINT, signalHandler);
Chris@0 315 signal(SIGTERM, signalHandler);
Chris@0 316
Chris@0 317 #ifndef Q_WS_WIN32
Chris@0 318 signal(SIGHUP, signalHandler);
Chris@0 319 signal(SIGQUIT, signalHandler);
Chris@0 320 #endif
Chris@0 321
Chris@0 322 svSystemSpecificInitialisation();
Chris@0 323
Chris@46 324 bool audioOutput = true;
Chris@70 325 bool oscSupport = true;
Chris@70 326
Chris@133 327 if (args.contains("--help") || args.contains("-h") || args.contains("-?")) {
Chris@70 328 std::cerr << QApplication::tr(
Chris@70 329 "\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 330 exit(2);
Chris@70 331 }
Chris@70 332
Chris@46 333 if (args.contains("--no-audio")) audioOutput = false;
Chris@70 334 if (args.contains("--no-osc")) oscSupport = false;
Chris@46 335
Chris@6 336 QApplication::setOrganizationName("sonic-visualiser");
Chris@5 337 QApplication::setOrganizationDomain("sonicvisualiser.org");
Chris@213 338 QApplication::setApplicationName(QApplication::tr("Sonic Visualiser"));
Chris@141 339
Chris@283 340 QSplashScreen *splash = 0;
Chris@231 341
Chris@231 342 QSettings settings;
Chris@237 343
Chris@237 344 settings.beginGroup("Preferences");
Chris@237 345 if (settings.value("show-splash", true).toBool()) {
Chris@331 346 QPixmap pixmap(":/icons/sv-splash.png");
Chris@331 347 QPainter painter;
Chris@331 348 painter.begin(&pixmap);
Chris@331 349 QString text = QString("v%1").arg(SV_VERSION);
Chris@331 350 painter.drawText
Chris@331 351 (pixmap.width() - painter.fontMetrics().width(text) - 10,
Chris@331 352 10 + painter.fontMetrics().ascent(),
Chris@331 353 text);
Chris@331 354 painter.end();
Chris@283 355 splash = new QSplashScreen(pixmap);
Chris@283 356 splash->show();
Chris@283 357 QTimer::singleShot(5000, splash, SLOT(hide()));
Chris@231 358 application.processEvents();
Chris@231 359 }
Chris@237 360 settings.endGroup();
Chris@231 361
Chris@278 362 settings.beginGroup("RDF");
Chris@278 363 if (!settings.contains("rdf-indices")) {
Chris@278 364 QStringList list;
Chris@278 365 list << "http://www.vamp-plugins.org/rdf/plugins/index.txt";
Chris@278 366 settings.setValue("rdf-indices", list);
Chris@278 367 }
Chris@278 368 settings.endGroup();
Chris@278 369
Chris@141 370 QIcon icon;
Chris@141 371 int sizes[] = { 16, 22, 24, 32, 48, 64, 128 };
Chris@141 372 for (int i = 0; i < sizeof(sizes)/sizeof(sizes[0]); ++i) {
Chris@141 373 icon.addFile(QString(":icons/sv-%1x%2.png").arg(sizes[i]).arg(sizes[i]));
Chris@141 374 }
Chris@141 375 QApplication::setWindowIcon(icon);
Chris@7 376
Chris@0 377 QString language = QLocale::system().name();
Chris@0 378
Chris@0 379 QTranslator qtTranslator;
Chris@0 380 QString qtTrName = QString("qt_%1").arg(language);
Chris@253 381 std::cerr << "Loading " << qtTrName.toStdString() << "... ";
Chris@165 382 bool success = false;
Chris@165 383 if (!(success = qtTranslator.load(qtTrName))) {
Chris@165 384 QString qtDir = getenv("QTDIR");
Chris@165 385 if (qtDir != "") {
Chris@165 386 success = qtTranslator.load
Chris@165 387 (qtTrName, QDir(qtDir).filePath("translations"));
Chris@165 388 }
Chris@165 389 }
Chris@165 390 if (!success) {
Chris@253 391 std::cerr << "Failed\nFailed to load Qt translation for locale" << std::endl;
Chris@253 392 } else {
Chris@253 393 std::cerr << "Done" << std::endl;
Chris@165 394 }
Chris@0 395 application.installTranslator(&qtTranslator);
Chris@0 396
Chris@0 397 QTranslator svTranslator;
Chris@0 398 QString svTrName = QString("sonic-visualiser_%1").arg(language);
Chris@253 399 std::cerr << "Loading " << svTrName.toStdString() << "... ";
Chris@0 400 svTranslator.load(svTrName, ":i18n");
Chris@253 401 std::cerr << "Done" << std::endl;
Chris@0 402 application.installTranslator(&svTranslator);
Chris@0 403
Chris@187 404 StoreStartupLocale();
Chris@187 405
Chris@0 406 // Permit size_t and PropertyName to be used as args in queued signal calls
Chris@0 407 qRegisterMetaType<size_t>("size_t");
Chris@0 408 qRegisterMetaType<PropertyContainer::PropertyName>("PropertyContainer::PropertyName");
Chris@0 409
dan@362 410 gui = new MainWindow(audioOutput, oscSupport);
Chris@222 411 application.setMainWindow(gui);
Chris@283 412 if (splash) {
Chris@283 413 QObject::connect(gui, SIGNAL(hideSplash()), splash, SLOT(hide()));
Chris@283 414 }
Chris@0 415
Chris@0 416 QDesktopWidget *desktop = QApplication::desktop();
Chris@0 417 QRect available = desktop->availableGeometry();
Chris@0 418
Chris@0 419 int width = available.width() * 2 / 3;
Chris@0 420 int height = available.height() / 2;
Chris@0 421 if (height < 450) height = available.height() * 2 / 3;
Chris@0 422 if (width > height * 2) width = height * 2;
Chris@0 423
Chris@237 424 settings.beginGroup("MainWindow");
Chris@5 425 QSize size = settings.value("size", QSize(width, height)).toSize();
Chris@319 426 gui->resizeConstrained(size);
Chris@5 427 if (settings.contains("position")) {
Chris@297 428 QRect prevrect(settings.value("position").toPoint(), size);
Chris@297 429 if (!(available & prevrect).isEmpty()) {
Chris@297 430 gui->move(prevrect.topLeft());
Chris@297 431 }
Chris@5 432 }
Chris@5 433 settings.endGroup();
Chris@5 434
dan@362 435 #ifdef Q_WS_MAC
dan@362 436 application.InstallMacOSEventHandlers();
dan@362 437 #endif // Q_WS_MAC
dan@362 438
Chris@222 439 gui->show();
Chris@64 440
Chris@118 441 // The MainWindow class seems to have trouble dealing with this if
Chris@118 442 // it tries to adapt to this preference before the constructor is
Chris@118 443 // complete. As a lazy hack, apply it explicitly from here
Chris@222 444 gui->preferenceChanged("Property Box Layout");
Chris@118 445
Chris@54 446 for (QStringList::iterator i = args.begin(); i != args.end(); ++i) {
Chris@54 447
Chris@54 448 if (i == args.begin()) continue;
Chris@54 449 if (i->startsWith('-')) continue;
Chris@54 450
Chris@54 451 QString path = *i;
Chris@54 452
dan@362 453 SVApplication::handleFilepathArgument(path, splash);
Chris@180 454 }
Chris@180 455
Chris@215 456 #ifdef HAVE_FFTW3F
Chris@215 457 settings.beginGroup("FFTWisdom");
Chris@215 458 QString wisdom = settings.value("wisdom").toString();
Chris@215 459 if (wisdom != "") {
Chris@215 460 fftwf_import_wisdom_from_string(wisdom.toLocal8Bit().data());
Chris@215 461 }
Chris@267 462 #ifdef HAVE_FFTW3
Chris@267 463 wisdom = settings.value("wisdom_d").toString();
Chris@267 464 if (wisdom != "") {
Chris@267 465 fftw_import_wisdom_from_string(wisdom.toLocal8Bit().data());
Chris@267 466 }
Chris@267 467 #endif
Chris@215 468 settings.endGroup();
Chris@215 469 #endif
Chris@180 470
Chris@283 471 if (splash) splash->finish(gui);
Chris@283 472 delete splash;
Chris@180 473
Chris@123 474 /*
Chris@120 475 TipDialog tipDialog;
Chris@120 476 if (tipDialog.isOK()) {
Chris@120 477 tipDialog.exec();
Chris@120 478 }
Chris@123 479 */
Chris@0 480 int rv = application.exec();
Chris@0 481
Chris@298 482 gui->hide();
Chris@298 483
Chris@0 484 cleanupMutex.lock();
Chris@332 485
Chris@315 486 TransformFactory::deleteInstance();
Chris@0 487 TempDirectory::getInstance()->cleanup();
Chris@11 488 application.releaseMainWindow();
Chris@5 489
Chris@215 490 #ifdef HAVE_FFTW3F
Chris@267 491 settings.beginGroup("FFTWisdom");
Chris@215 492 char *cwisdom = fftwf_export_wisdom_to_string();
Chris@215 493 if (cwisdom) {
Chris@215 494 settings.setValue("wisdom", cwisdom);
Chris@332 495 free(cwisdom);
Chris@215 496 }
Chris@267 497 #ifdef HAVE_FFTW3
Chris@267 498 cwisdom = fftw_export_wisdom_to_string();
Chris@267 499 if (cwisdom) {
Chris@267 500 settings.setValue("wisdom_d", cwisdom);
Chris@332 501 free(cwisdom);
Chris@267 502 }
Chris@267 503 #endif
Chris@267 504 settings.endGroup();
Chris@215 505 #endif
Chris@215 506
Chris@222 507 delete gui;
Chris@222 508
Chris@0 509 return rv;
Chris@0 510 }