Merge branch 'cache' into gui
[mdictionary] / trunk / src / base / gui / AboutWidget.h
1 #ifndef ABOUTWIDGET_H
2 #define ABOUTWIDGET_H
3
4 #include <QDialog>
5 #include <QWidget>
6 #include <QtGui>
7 #include "../../includes/GUIInterface.h"
8
9 class AboutWidget : public QDialog
10 {
11     Q_OBJECT
12 public:
13     AboutWidget(GUIInterface *parent = 0);
14 private:
15     QVBoxLayout* mainLayout;
16     QVBoxLayout *scrollLayout;
17     QLabel* mainLabel, * licenseLabel, *imageLabel;
18     QScrollArea* scroll;
19     QWidget* w;
20
21
22 };
23
24 #endif // ABOUTWIDGET_H