1 #include "PreferencesDialog.h"
3 PreferencesDialog::PreferencesDialog(QWidget * parent)
8 connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
9 connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
12 PreferencesDialog::~PreferencesDialog()
16 QString PreferencesDialog::getCompilerPath()
18 return compilerPath->text();
21 void PreferencesDialog::setCompilerPath(QString path)
23 return compilerPath->setText(path);
26 QString PreferencesDialog::getFilesPath()
28 return filesPath->text();
31 void PreferencesDialog::setFilesPath(QString path)
33 return filesPath->setText(path);
36 QString PreferencesDialog::getGenPath()
38 return genPath->text();
41 void PreferencesDialog::setGenPath(QString path)
43 return genPath->setText(path);