35 lines
533 B
C++
35 lines
533 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.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QPointer>
|
|
|
|
#include "BaseDialog.h"
|
|
|
|
#include "ui_AboutDialog.h"
|
|
|
|
class LicenseDialog;
|
|
|
|
class AboutDialog : public BaseDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AboutDialog(QWidget* parent = nullptr);
|
|
|
|
private slots:
|
|
void showCredits();
|
|
void showLicense();
|
|
|
|
private:
|
|
Ui::AboutDialog ui;
|
|
|
|
QPointer<LicenseDialog> myLicenseDialog;
|
|
};
|