1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-30 11:36:07 +00:00
transmission/qt/AboutDialog.h
Mike Gelfand 971cc6d2d9 Remove context help button from dialogs on Windows
We don't currently (if ever) provide context help, so the button is
useless. Moreover, on Windows 10 it's even larger than before and
sometimes title text doesn't fit because of it.
2015-09-01 20:19:26 +00:00

39 lines
652 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 <QPointer>
#include "BaseDialog.h"
#include "ui_AboutDialog.h"
class LicenseDialog;
class AboutDialog: public BaseDialog
{
Q_OBJECT
public:
AboutDialog (QWidget * parent = nullptr);
virtual ~AboutDialog () {}
private slots:
void showCredits ();
void showLicense ();
private:
Ui::AboutDialog ui;
QPointer<LicenseDialog> myLicenseDialog;
};
#endif // QTR_ABOUT_DIALOG_H