#ifndef PREFERENCES_H #define PREFERENCES_H #include #include #include #include #include "utilvago.h" namespace Ui { class Preferences; } class Preferences : public QDialog { Q_OBJECT public: Preferences(QWidget *parent, QSettings *vagoSettings); ~Preferences(); public slots: void accept (); private slots: void on_pbChooseWorkspace_clicked(); void on_pbChooseAE_clicked(); void on_buttonBox_rejected(); private: Ui::Preferences *ui; QSettings *vagoSettings; }; #endif // PREFERENCES_H