summaryrefslogtreecommitdiffstats
path: root/proverb/src/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'proverb/src/mainwindow.h')
-rw-r--r--proverb/src/mainwindow.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/proverb/src/mainwindow.h b/proverb/src/mainwindow.h
new file mode 100644
index 0000000..a4fa977
--- /dev/null
+++ b/proverb/src/mainwindow.h
@@ -0,0 +1,26 @@
+#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+//
+#include <QMainWindow>
+#include "ui_mainwindow.h"
+#include "tabdialog.h"
+//
+class MainWindow : public QMainWindow, public Ui::MainWindow
+{
+Q_OBJECT
+public:
+ MainWindow( QWidget * parent = 0, Qt::WFlags f = 0 );
+
+private slots:
+ void getProverb(void);
+ void about(void);
+
+private:
+ void loadFile(const QString &fileName);
+
+};
+#endif
+
+
+
+