File indexing completed on 2024-06-16 05:12:01

0001 #ifndef PREFERENCESDIALOG_H
0002 #define PREFERENCESDIALOG_H
0003 
0004 #include <QDialog>
0005 
0006 namespace Ui {
0007 class PreferencesDialog;
0008 }
0009 
0010 class PreferencesDialog : public QDialog
0011 {
0012     Q_OBJECT
0013 
0014 public:
0015     explicit PreferencesDialog(QWidget *parent = 0);
0016     ~PreferencesDialog();
0017 
0018     QString generationPath() const;
0019     void setGenerationPath(const QString &generationPath);
0020 
0021     bool hasCustomPath();
0022 public slots:
0023     void selectDir();
0024 private:
0025     Ui::PreferencesDialog* ui;
0026 };
0027 
0028 #endif // PREFERENCESDIALOG_H