transmission/qt/about.h

35 lines
581 B
C++

/*
* This file Copyright (C) 2010-2014 Mnemosyne LLC
*
* It may be used under the GNU Public License v2 or v3 licenses,
* 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