transmission/qt/about.h

35 lines
567 B
C++

/*
* This file Copyright (C) 2010-2014 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
* $Id$
*/
#ifndef ABOUT_DIALOG_H
#define ABOUT_DIALOG_H
#include <QDialog>
class AboutDialog: public QDialog
{
Q_OBJECT
private:
QDialog * myLicenseDialog;
public:
AboutDialog (QWidget * parent = 0);
~AboutDialog () {}
QWidget * createAboutTab ();
QWidget * createAuthorsTab ();
QWidget * createLicenseTab ();
public slots:
void showCredits ();
};
#endif