annotate main/main.cpp @ 7:c3ef80114040

* Add zoom thumbwheels to Pane. Implement horizontal thumbwheel, and vertical depending on layer type (supported for waveform and spectrogram, though wrong for log-scale spectrogram at the moment). * Add bare bones of a spectrum layer. * Add window icon * Add shortcut for "insert time instant" on laptops without keypad enter (";") * Delete FFT processing thread when it exits (at least, next time we're asked for something interesting) * Get audio file extensions from the file readers, and thus from libsndfile for the wave file reader -- leads to rather a wide combo box in file dialog though * Better refresh order for spectrogram (redraw centre section first)
author Chris Cannam
date Fri, 04 Aug 2006 17:01:37 +0000
parents d4487202d0e8
children 0dbd08e365ce
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@0 7 This file copyright 2006 Chris Cannam.
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@0 23
Chris@0 24 #include <QMetaType>
Chris@0 25 #include <QApplication>
Chris@0 26 #include <QDesktopWidget>
Chris@0 27 #include <QMessageBox>
Chris@0 28 #include <QTranslator>
Chris@0 29 #include <QLocale>
Chris@5 30 #include <QSettings>
Chris@7 31 #include <QIcon>
Chris@0 32
Chris@0 33 #include <iostream>
Chris@0 34 #include <signal.h>
Chris@0 35
Chris@0 36 //!!! catch trappable signals, cleanup temporary directory etc
Chris@0 37 //!!! check for crap left over from previous run
Chris@0 38
Chris@0 39 static QMutex cleanupMutex;
Chris@0 40
Chris@0 41 static void
Chris@0 42 signalHandler(int /* signal */)
Chris@0 43 {
Chris@0 44 // Avoid this happening more than once across threads
Chris@0 45
Chris@0 46 cleanupMutex.lock();
Chris@0 47 std::cerr << "signalHandler: cleaning up and exiting" << std::endl;
Chris@0 48 TempDirectory::getInstance()->cleanup();
Chris@0 49 exit(0); // without releasing mutex
Chris@0 50 }
Chris@0 51
Chris@0 52 int
Chris@0 53 main(int argc, char **argv)
Chris@0 54 {
Chris@0 55 QApplication application(argc, argv);
Chris@0 56
Chris@0 57 signal(SIGINT, signalHandler);
Chris@0 58 signal(SIGTERM, signalHandler);
Chris@0 59
Chris@0 60 #ifndef Q_WS_WIN32
Chris@0 61 signal(SIGHUP, signalHandler);
Chris@0 62 signal(SIGQUIT, signalHandler);
Chris@0 63 #endif
Chris@0 64
Chris@0 65 svSystemSpecificInitialisation();
Chris@0 66
Chris@6 67 QApplication::setOrganizationName("sonic-visualiser");
Chris@5 68 QApplication::setOrganizationDomain("sonicvisualiser.org");
Chris@6 69 QApplication::setApplicationName("sonic-visualiser");
Chris@5 70
Chris@7 71 QApplication::setWindowIcon(QIcon(":icons/waveform.png"));
Chris@7 72
Chris@0 73 QString language = QLocale::system().name();
Chris@0 74
Chris@0 75 QTranslator qtTranslator;
Chris@0 76 QString qtTrName = QString("qt_%1").arg(language);
Chris@0 77 std::cerr << "Loading " << qtTrName.toStdString() << "..." << std::endl;
Chris@0 78 qtTranslator.load(qtTrName);
Chris@0 79 application.installTranslator(&qtTranslator);
Chris@0 80
Chris@0 81 QTranslator svTranslator;
Chris@0 82 QString svTrName = QString("sonic-visualiser_%1").arg(language);
Chris@0 83 std::cerr << "Loading " << svTrName.toStdString() << "..." << std::endl;
Chris@0 84 svTranslator.load(svTrName, ":i18n");
Chris@0 85 application.installTranslator(&svTranslator);
Chris@0 86
Chris@0 87 // Permit size_t and PropertyName to be used as args in queued signal calls
Chris@0 88 qRegisterMetaType<size_t>("size_t");
Chris@0 89 qRegisterMetaType<PropertyContainer::PropertyName>("PropertyContainer::PropertyName");
Chris@0 90
Chris@0 91 MainWindow gui;
Chris@0 92
Chris@0 93 QDesktopWidget *desktop = QApplication::desktop();
Chris@0 94 QRect available = desktop->availableGeometry();
Chris@0 95
Chris@0 96 int width = available.width() * 2 / 3;
Chris@0 97 int height = available.height() / 2;
Chris@0 98 if (height < 450) height = available.height() * 2 / 3;
Chris@0 99 if (width > height * 2) width = height * 2;
Chris@0 100
Chris@5 101 QSettings settings;
Chris@5 102 settings.beginGroup("MainWindow");
Chris@5 103 QSize size = settings.value("size", QSize(width, height)).toSize();
Chris@5 104 gui.resize(size);
Chris@5 105 if (settings.contains("position")) {
Chris@5 106 gui.move(settings.value("position").toPoint());
Chris@5 107 }
Chris@5 108 settings.endGroup();
Chris@5 109
Chris@0 110 gui.show();
Chris@0 111
Chris@0 112 if (argc > 1) {
Chris@0 113 QString path = argv[1];
Chris@0 114 bool success = false;
Chris@0 115 if (path.endsWith(".sv")) {
Chris@0 116 success = gui.openSessionFile(path);
Chris@0 117 }
Chris@0 118 if (!success) {
Chris@0 119 success = gui.openSomeFile(path);
Chris@0 120 }
Chris@0 121 if (!success) {
Chris@0 122 QMessageBox::critical(&gui, QMessageBox::tr("Failed to open file"),
Chris@0 123 QMessageBox::tr("File \"%1\" could not be opened").arg(path));
Chris@0 124 }
Chris@0 125 }
Chris@0 126
Chris@0 127 int rv = application.exec();
Chris@0 128 std::cerr << "application.exec() returned " << rv << std::endl;
Chris@0 129
Chris@0 130 cleanupMutex.lock();
Chris@0 131 TempDirectory::getInstance()->cleanup();
Chris@5 132
Chris@0 133 return rv;
Chris@0 134 }