1/*
2 * This file Copyright (C) Mnemosyne LLC
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foundation.
7 *
8 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
9 *
10 * $Id: about.h 11092 2010-08-01 20:36:13Z charles $
11 */
12
13#ifndef ABOUT_DIALOG_H
14#define ABOUT_DIALOG_H
15
16#include <QDialog>
17
18class AboutDialog: public QDialog
19{
20        Q_OBJECT
21
22    private:
23        QDialog * myLicenseDialog;
24
25    public:
26        AboutDialog( QWidget * parent = 0 );
27        ~AboutDialog( ) { }
28        QWidget * createAboutTab( );
29        QWidget * createAuthorsTab( );
30        QWidget * createLicenseTab( );
31
32    public slots:
33        void showCredits( );
34
35};
36
37#endif
38