tools/drawMapTest/mainwindow.h
author unc0rr
Sat, 27 Nov 2010 23:57:31 +0300
changeset 4425 2314bb0c433d
child 4427 c5193713055f
permissions -rw-r--r--
Small testing app for DrawMap scene
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4425
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
     1
#ifndef MAINWINDOW_H
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
     2
#define MAINWINDOW_H
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
     3
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
     4
#include <QMainWindow>
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
     5
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
     6
namespace Ui {
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
     7
    class MainWindow;
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
     8
}
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
     9
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    10
class MainWindow : public QMainWindow {
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    11
    Q_OBJECT
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    12
public:
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    13
    MainWindow(QWidget *parent = 0);
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    14
    ~MainWindow();
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    15
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    16
protected:
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    17
    void changeEvent(QEvent *e);
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    18
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    19
private:
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    20
    Ui::MainWindow *ui;
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    21
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    22
    virtual void resizeEvent(QResizeEvent * event);
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    23
};
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    24
2314bb0c433d Small testing app for DrawMap scene
unc0rr
parents:
diff changeset
    25
#endif // MAINWINDOW_H