diff options
Diffstat (limited to 'c++-libbu++/src/gatscon/mainwnd.h')
-rw-r--r-- | c++-libbu++/src/gatscon/mainwnd.h | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/c++-libbu++/src/gatscon/mainwnd.h b/c++-libbu++/src/gatscon/mainwnd.h index d1ae080..2a5c3fa 100644 --- a/c++-libbu++/src/gatscon/mainwnd.h +++ b/c++-libbu++/src/gatscon/mainwnd.h | |||
@@ -1,3 +1,10 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libgats library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
1 | #ifndef MAIN_WND_H | 8 | #ifndef MAIN_WND_H |
2 | #define MAIN_WND_H | 9 | #define MAIN_WND_H |
3 | 10 | ||
@@ -5,22 +12,22 @@ | |||
5 | 12 | ||
6 | class MainWnd : public QMainWindow, protected Ui::MainWnd | 13 | class MainWnd : public QMainWindow, protected Ui::MainWnd |
7 | { | 14 | { |
8 | Q_OBJECT; | 15 | Q_OBJECT; |
9 | public: | 16 | public: |
10 | MainWnd(); | 17 | MainWnd(); |
11 | virtual ~MainWnd(); | 18 | virtual ~MainWnd(); |
12 | 19 | ||
13 | public slots: | 20 | public slots: |
14 | void connect(); | 21 | void connect(); |
15 | void proxy(); | 22 | void proxy(); |
16 | void open(); | 23 | void open(); |
17 | void newFile(); | 24 | void newFile(); |
18 | void save(); | 25 | void save(); |
19 | void saveAs(); | 26 | void saveAs(); |
20 | 27 | ||
21 | private: | 28 | private: |
22 | QString sCurFile; | 29 | QString sCurFile; |
23 | class QLabel *pMode; | 30 | class QLabel *pMode; |
24 | }; | 31 | }; |
25 | 32 | ||
26 | #endif | 33 | #endif |