Vespucci  1.0.0
settingsdialog.h
Go to the documentation of this file.
1 #ifndef SETTINGSDIALOG_H
2 #define SETTINGSDIALOG_H
3 
4 #include <QDialog>
6 namespace Ui {
7 class SettingsDialog;
8 }
9 
10 class SettingsDialog : public QDialog
11 {
12  Q_OBJECT
13 
14 public:
15  explicit SettingsDialog(QWidget *parent, QSharedPointer<VespucciWorkspace> ws);
16  ~SettingsDialog();
17 
18 private slots:
19  void on_buttonBox_accepted();
20 
21 private:
22  Ui::SettingsDialog *ui;
23  QSharedPointer<VespucciWorkspace> workspace_;
24  QSettings *settings_;
25 };
26 
27 #endif // SETTINGSDIALOG_H
Definition: ahcadialog.h:26