summaryrefslogtreecommitdiffstats
path: root/proverb/src/mainwindow.h
blob: a4fa9774477b9545c2e18e03b725aa892fe7774c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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