1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-19 10:15:36 +00:00
transmission/qt/AboutDialog.h
2015-06-12 22:12:12 +00:00

34 lines
561 B
C++

/*
* This file Copyright (C) 2010-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
* $Id$
*/
#ifndef QTR_ABOUT_DIALOG_H
#define QTR_ABOUT_DIALOG_H
#include <QDialog>
#include "ui_AboutDialog.h"
class AboutDialog: public QDialog
{
Q_OBJECT
public:
AboutDialog (QWidget * parent = nullptr);
virtual ~AboutDialog () {}
public slots:
void showCredits ();
private:
Ui::AboutDialog ui;
QDialog * myLicenseDialog;
};
#endif // QTR_ABOUT_DIALOG_H