mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
33 lines
575 B
C++
33 lines
575 B
C++
#ifndef SAVEPROJECTDIALOG_H
|
|
#define SAVEPROJECTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QAbstractButton>
|
|
|
|
#include <memory>
|
|
|
|
namespace Ui {
|
|
class SaveProjectDialog;
|
|
}
|
|
|
|
class SaveProjectDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit SaveProjectDialog(bool quit, QWidget *parent = nullptr);
|
|
~SaveProjectDialog();
|
|
|
|
virtual void accept() override;
|
|
|
|
private slots:
|
|
void on_buttonBox_clicked(QAbstractButton *button);
|
|
void on_selectProjectsDirButton_clicked();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::SaveProjectDialog> ui;
|
|
};
|
|
|
|
#endif // SAVEPROJECTDIALOG_H
|