mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
bebc2ec36d
* Replace 0 and Q_NULLPTR with nullptr * Use c++11 foreach
29 lines
463 B
C++
29 lines
463 B
C++
#ifndef ABOUTDIALOG_H
|
|
#define ABOUTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <memory>
|
|
|
|
namespace Ui {
|
|
class AboutDialog;
|
|
}
|
|
|
|
class AboutDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDialog(QWidget *parent = nullptr);
|
|
~AboutDialog();
|
|
|
|
private slots:
|
|
void on_buttonBox_rejected();
|
|
void on_showVersionButton_clicked();
|
|
void on_showPluginsButton_clicked();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::AboutDialog> ui;
|
|
};
|
|
|
|
#endif // ABOUTDIALOG_H
|