From 886b09e5d997af17d1b0a9c7fad6e952a94bed45 Mon Sep 17 00:00:00 2001 From: Rahul Date: Fri, 13 Mar 2009 21:09:38 -0400 Subject: proverb --- proverb/src/mainwindow.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 proverb/src/mainwindow.h (limited to 'proverb/src/mainwindow.h') 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 +#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 + + + + -- cgit