| Line | |
|---|
| 1 | #ifndef FACT_MainWindow
|
|---|
| 2 | #define FACT_MainWindow
|
|---|
| 3 |
|
|---|
| 4 | #include "design.h"
|
|---|
| 5 |
|
|---|
| 6 | #include <QtGui/QMainWindow>
|
|---|
| 7 |
|
|---|
| 8 | class MainWindow : public QMainWindow, protected Ui::MainWindow
|
|---|
| 9 | {
|
|---|
| 10 | Q_OBJECT;
|
|---|
| 11 |
|
|---|
| 12 | public:
|
|---|
| 13 | MainWindow(QWidget *p=0);
|
|---|
| 14 |
|
|---|
| 15 | private 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.