#ifndef PREFERENCES_H
#define PREFERENCES_H

#include <QDialog>
#include <QFileDialog>
#include <QSettings>
#include <QMessageBox>

#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
