added wwwpage and changed structure
[cuteexplorer] / cuteexplorer / src / mainwindow.h
diff --git a/cuteexplorer/src/mainwindow.h b/cuteexplorer/src/mainwindow.h
new file mode 100644 (file)
index 0000000..b2fa0f9
--- /dev/null
@@ -0,0 +1,31 @@
+#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+
+#include <QMainWindow>
+
+namespace Ui {
+    class MainWindow;
+}
+
+class MainWindow : public QMainWindow {
+    Q_OBJECT
+public:
+    MainWindow(QWidget *parent = 0);
+    ~MainWindow();
+
+public slots:
+    void showHelp();
+    void showAbout();
+protected:
+    void changeEvent(QEvent *e);
+    void keyPressEvent(QKeyEvent *e);
+    void keyReleaseEvent(QKeyEvent *e);
+private slots:
+   void locationLineEnterKeyHandler();
+
+private:
+    Ui::MainWindow *ui;
+
+};
+
+#endif // MAINWINDOW_H