1 #ifndef _VLP_EDITOR_PREFERENCESDIALOG_H
2 #define _VLP_EDITOR_PREFERENCESDIALOG_H
4 #include <QtGui/QDialog>
5 #include <QtCore/QString>
7 #include "ui/dialogs/PreferencesDialog.h"
10 * Program Unit Dialog class
11 * Displays dialog for generating code template for unit structure
13 class PreferencesDialog : public QDialog, private Ui::PreferencesDialog {
18 PreferencesDialog(QWidget * parent = 0);
28 * @return path to compiler
30 QString getCompilerPath();
35 * @param path compiler path
37 void setCompilerPath(QString path);
42 * @return path to files
44 QString getFilesPath();
49 * @param path files path
51 void setFilesPath(QString path);
63 * @param path gen path
65 void setGenPath(QString path);
68 #endif /* _VLP_EDITOR_PREFERENCESDIALOG_H */