71e110571cc7e7f9b2237b6374d69b9c45e5c27d
[jackctlmmc.git] / qt / src / mainWindow.h
blob71e110571cc7e7f9b2237b6374d69b9c45e5c27d
1 /***************************************************************************
2 * Copyright (C) 2009 by Alex Montgomery and Nedko Arnaudov *
3 * check@Adaon *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 #include "ui_qjackmmc.h"
22 #include "../../config.h"
24 #include <QFile>
25 #include <QMutex>
27 extern "C" {
28 #include "../../common.h"
31 class QValidator;
32 class SequencerThread;
34 #define QJACKMMC_CONFIG "/.qjackmmc"
36 class MainWindow : public QMainWindow, public Ui::QjackMMC
38 Q_OBJECT
40 public:
41 MainWindow();
42 bool init(int argc, char *argv[]);
43 virtual ~MainWindow();
45 public slots:
46 // these are autoconnected by virtue of their naming convention. QT4 voodoo
47 void on_actionQuit_triggered();
48 void on_actionWhat_triggered();
49 void on_actionAbout_triggered();
50 void on_startButton_clicked();
51 void on_loadButton_clicked();
52 void on_saveButton_clicked();
54 void onMessageReceived(QString message);
56 protected:
57 bool initSound(int argc, char *argv[]);
58 void loadConfig(QFile& loadFile);
59 void enableRelevantWidgets(bool isRunning);
61 SequencerThread* sequencerThread;
62 MidiSettings m_settings; //< shared between threads, Always lock m_settingsMutex when accessing!
63 QMutex m_settingsMutex; //< guards m_settings