8e9c51724feeea7d0e0727852b1e6d1a29dba714
[cuteexplorer] / src / mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3
4 #include <QMainWindow>
5
6 namespace Ui {
7     class MainWindow;
8 }
9
10 class MainWindow : public QMainWindow {
11     Q_OBJECT
12 public:
13     MainWindow(QWidget *parent = 0);
14     ~MainWindow();
15
16
17 protected:
18     void changeEvent(QEvent *e);
19     void keyPressEvent(QKeyEvent *e);
20     void keyReleaseEvent(QKeyEvent *e);
21 private slots:
22    void locationLineEnterKeyHandler();
23 private:
24     Ui::MainWindow *ui;
25
26 };
27
28 #endif // MAINWINDOW_H