-
Notifications
You must be signed in to change notification settings - Fork 24
/
preferencesdialog.h
41 lines (32 loc) · 991 Bytes
/
preferencesdialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef PREFERENCESDIALOG_H
#define PREFERENCESDIALOG_H
#include <QDialog>
namespace Ui {
class PreferencesDialog;
}
class FileCache;
class PreferencesDialog : public QDialog
{
Q_OBJECT
public:
explicit PreferencesDialog(FileCache* file_cache, QWidget *parent = 0);
~PreferencesDialog();
void readSettings();
void writeSettings();
private slots:
void onRejected();
void on_customJavaPathEdit_textEdited(const QString &);
void on_customJavaPathButton_clicked();
void on_customPlantUmlEdit_textEdited(const QString &);
void on_customPlantUmlButton_clicked();
void on_assistantXmlButton_clicked();
void on_customGraphizEdit_textEdited(const QString &);
void on_customGraphizButton_clicked();
void on_customCacheEdit_textEdited(const QString &);
void on_customCacheButton_clicked();
void on_clearCacheButton_clicked();
private:
Ui::PreferencesDialog *m_ui;
FileCache* m_fileCache;
};
#endif // PREFERENCESDIALOG_H