keepassxc/src/gui/AboutDialog.h

46 lines
1.2 KiB
C++
Raw Normal View History

2012-05-02 09:37:21 -04:00
/*
* Copyright (C) 2012 Felix Geyer <debfx@fobos.de>
2017-06-09 17:40:36 -04:00
* Copyright (C) 2017 KeePassXC Team <team@keepassxc.org>
2012-05-02 09:37:21 -04:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 or (at your option)
* version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KEEPASSX_ABOUTDIALOG_H
#define KEEPASSX_ABOUTDIALOG_H
#include <QDialog>
#include <QScopedPointer>
2012-05-02 09:37:21 -04:00
2018-03-31 16:01:30 -04:00
namespace Ui
{
2012-05-02 09:37:21 -04:00
class AboutDialog;
}
class AboutDialog : public QDialog
{
Q_OBJECT
public:
2015-07-24 12:28:12 -04:00
explicit AboutDialog(QWidget* parent = nullptr);
2012-05-02 09:37:21 -04:00
~AboutDialog();
2017-02-22 18:45:57 -05:00
protected slots:
void copyToClipboard();
2012-05-02 09:37:21 -04:00
private:
QScopedPointer<Ui::AboutDialog> m_ui;
};
#endif // KEEPASSX_ABOUTDIALOG_H