summaryrefslogtreecommitdiffstats
path: root/proverb/src/mainwindow.h
diff options
context:
space:
mode:
authorRahul <rahulrs@gmx.com>2009-03-13 21:09:38 -0400
committerRahul <rahulrs@gmx.com>2009-03-13 21:09:38 -0400
commit886b09e5d997af17d1b0a9c7fad6e952a94bed45 (patch)
tree3deedb4643dd0a225830150ecec257d20c218194 /proverb/src/mainwindow.h
parent2cea4faae67f7ec777bd781b0f77bac0abc527a9 (diff)
downloadRachana.git-886b09e5d997af17d1b0a9c7fad6e952a94bed45.tar.gz
Rachana.git-886b09e5d997af17d1b0a9c7fad6e952a94bed45.tar.xz
Rachana.git-886b09e5d997af17d1b0a9c7fad6e952a94bed45.zip
proverb
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
+
+
+
+