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>
|
|
|
|
|
2014-12-25 19:39:45 +00:00
|
|
|
#include "ui_about.h"
|
|
|
|
|
2009-04-09 18:55:47 +00:00
|
|
|
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
|
|
|
public:
|
|
|
|
AboutDialog (QWidget * parent = 0);
|
|
|
|
~AboutDialog () {}
|
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
|
|
|
|
2014-12-25 19:39:45 +00:00
|
|
|
private:
|
|
|
|
QDialog * myLicenseDialog;
|
|
|
|
Ui::AboutDialog ui;
|
2009-04-09 18:55:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|