redesigned QJackMMC to be always listening, threadsafe
[jackctlmmc.git] / qt / src / mainWindow.h
blob3d3f130b14de7a8517be8279e125335c7c8d5b6f
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>
26 #include <QPointer>
28 extern "C" {
29 #include "../../common.h"
32 class QValidator;
33 class SequencerThread;
35 #define QJACKMMC_CONFIG "/.qjackmmc"
37 class MainWindow : public QMainWindow, public Ui::QjackMMC
39 Q_OBJECT
41 public:
42 MainWindow();
43 bool init(int argc, char *argv[]);
44 virtual ~MainWindow();
46 public slots:
47 // these are autoconnected by virtue of their naming convention. QT4 voodoo
48 void on_actionQuit_triggered();
49 void on_actionWhat_triggered();
50 void on_actionAbout_triggered();
51 void on_loadButton_clicked();
52 void on_saveButton_clicked();
54 // input validator slots
55 void onValidateFps();
56 void onValidateJitter();
57 void onValidateDeviceID();
59 // checkbox slots
60 void onVerboseChanged(bool checked);
61 void onRealtimeChanged(bool checked);
63 // other slots
64 void onMessageReceived(QString message);
66 protected:
67 bool initSound(int argc, char *argv[]);
68 void loadConfig(QFile& loadFile);
69 void setDefaultSettings();
71 QPointer<SequencerThread> m_sequencerThread;
72 MidiSettings m_settings; //< shared between threads, Always lock m_settingsMutex when accessing!
73 QMutex m_settingsMutex; //< guards m_settings