34edbb96163cf4d4e5f1a7a031254eb21f563bdc
[jackctlmmc.git] / qt / src / mainWindow.h
blob34edbb96163cf4d4e5f1a7a031254eb21f563bdc
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"
23 #include <QFile>
25 extern "C" {
26 #include "../../common.h"
29 class QValidator;
30 class SequencerThread;
32 #define QJACKMMC_CONFIG "/.qjackmmc"
33 #define QJACKMMC_ABOUT "VERSION"
35 class MainWindow : public QMainWindow, public Ui::QjackMMC
37 Q_OBJECT
39 public:
40 MainWindow();
41 bool init(int argc, char *argv[]);
42 virtual ~MainWindow();
44 public slots:
45 // these are autoconnected by virtue of their naming convention. QT4 voodoo
46 void on_actionQuit_triggered();
47 void on_actionWhat_triggered();
48 void on_actionAbout_triggered();
49 void on_startButton_clicked();
50 void on_loadButton_clicked();
51 void on_saveButton_clicked();
53 void onMessageReceived(QString message);
55 protected:
56 bool initSound(int argc, char *argv[]);
57 void loadConfig(QFile& loadFile);
58 void enableRelevantWidgets(bool isRunning);
60 SequencerThread* sequencerThread;
61 MidiSettings m_settings;