transmission 2.83
[tomato.git] / release / src-rt-6.x.4708 / router / transmission / qt / about.h
blob4d19d0786423a868e4315fbaa53aaf8a7446601f
1 /*
2 * This file Copyright (C) 2010-2014 Mnemosyne LLC
4 * It may be used under the GNU GPL versions 2 or 3
5 * or any future license endorsed by Mnemosyne LLC.
7 * $Id: about.h 14241 2014-01-21 03:10:30Z jordan $
8 */
10 #ifndef ABOUT_DIALOG_H
11 #define ABOUT_DIALOG_H
13 #include <QDialog>
15 class AboutDialog: public QDialog
17 Q_OBJECT
19 private:
20 QDialog * myLicenseDialog;
22 public:
23 AboutDialog (QWidget * parent = 0);
24 ~AboutDialog () {}
25 QWidget * createAboutTab ();
26 QWidget * createAuthorsTab ();
27 QWidget * createLicenseTab ();
29 public slots:
30 void showCredits ();
34 #endif