00001 #ifndef ABOUTDIALOG_H
00002 #define ABOUTDIALOG_H
00003
00004 #include <QDialog>
00005 #include "ui_AboutDialog.h"
00006 #include "../Data/aboutdata.h"
00007
00008 class AboutDialog : public QDialog, public Ui::AboutDialog
00009 {
00010 Q_OBJECT
00011 public:
00012 AboutDialog(AboutData *data, QWidget *parent = 0);
00013
00014 private:
00015 void setupTabs();
00016 AboutData *aboutData;
00017
00018 private slots:
00019 void showLicense(const QString&);
00020 };
00021
00022 #endif // ABOUTDIALOG_H