author | unC0Rr |
Thu, 07 May 2015 17:29:12 +0300 | |
changeset 10936 | 104727dfaa1b |
child 11015 | 7a905f0070ce |
permissions | -rw-r--r-- |
10936
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
1 |
#ifndef MAINWINDOW_H |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
2 |
#define MAINWINDOW_H |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
3 |
|
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
4 |
#include <QMainWindow> |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
5 |
|
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
6 |
namespace Ui { |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
7 |
class MainWindow; |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
8 |
} |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
9 |
|
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
10 |
class MainWindow : public QMainWindow |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
11 |
{ |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
12 |
Q_OBJECT |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
13 |
|
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
14 |
public: |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
15 |
explicit MainWindow(QWidget *parent = 0); |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
16 |
~MainWindow(); |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
17 |
|
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
18 |
private slots: |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
19 |
void on_pbLoad_clicked(); |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
20 |
|
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
21 |
void on_pbSave_clicked(); |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
22 |
|
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
23 |
private: |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
24 |
Ui::MainWindow *ui; |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
25 |
}; |
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
26 |
|
104727dfaa1b
Long awaited hwmap<->txt converter, which took less than hour to make
unC0Rr
parents:
diff
changeset
|
27 |
#endif // MAINWINDOW_H |