2009-04-09 18:55:47 +00:00
|
|
|
/*
|
2014-01-18 20:56:57 +00:00
|
|
|
* This file Copyright (C) 2010-2014 Mnemosyne LLC
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
2009-05-31 19:33:48 +00:00
|
|
|
* $Id$
|
2009-04-09 18:55:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ABOUT_DIALOG_H
|
|
|
|
#define ABOUT_DIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
class AboutDialog: public QDialog
|
|
|
|
{
|
2013-01-26 01:19:54 +00:00
|
|
|
Q_OBJECT
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2013-01-26 01:19:54 +00:00
|
|
|
private:
|
|
|
|
QDialog * myLicenseDialog;
|
2009-05-08 18:52:06 +00:00
|
|
|
|
2013-01-26 01:19:54 +00:00
|
|
|
public:
|
|
|
|
AboutDialog (QWidget * parent = 0);
|
|
|
|
~AboutDialog () {}
|
|
|
|
QWidget * createAboutTab ();
|
|
|
|
QWidget * createAuthorsTab ();
|
|
|
|
QWidget * createLicenseTab ();
|
2009-04-26 19:08:49 +00:00
|
|
|
|
2013-01-26 01:19:54 +00:00
|
|
|
public slots:
|
|
|
|
void showCredits ();
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|