cutter/src/dialogs/preferences/PreferencesDialog.h
2018-03-21 21:33:40 +01:00

36 lines
592 B
C++

#ifndef PREFERENCESDIALOG_H
#define PREFERENCESDIALOG_H
#include <QDialog>
#include <QPushButton>
#include <memory>
#include "Cutter.h"
namespace Ui {
class PreferencesDialog;
}
class PreferencesDialog : public QDialog
{
Q_OBJECT
public:
enum class Section { General, Disassembly };
explicit PreferencesDialog(QWidget *parent = nullptr);
~PreferencesDialog();
void showSection(Section section);
/*signals:
void saveAsDefault();
void resetToDefault();*/
private:
std::unique_ptr<Ui::PreferencesDialog> ui;
};
#endif //PREFERENCESDIALOG_H