source: trunk/FACT++/gui/MainWindow.h@ 10483

Last change on this file since 10483 was 10394, checked in by tbretz, 13 years ago
First version of the GUI.
File size: 597 bytes
Line 
1#ifndef FACT_MainWindow
2#define FACT_MainWindow
3
4#include "design.h"
5
6#include <QtGui/QMainWindow>
7
8class MainWindow : public QMainWindow, protected Ui::MainWindow
9{
10 Q_OBJECT;
11
12public:
13 MainWindow(QWidget *p=0);
14
15private slots:
16 /// Needs access to DimNetwork thus it is implemented in the derived class
17 virtual void on_fDimCmdSend_clicked(bool) { }
18
19 void on_fTabWidget_tabCloseRequested(int which);
20 void on_fChatSend_clicked(bool);
21 void on_fShutdown_clicked(bool);
22 void on_fShutdownAll_clicked(bool);
23 void on_fStatusFTMEnable_stateChanged(int state);
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.