25 |
25 |
26 class ConfigDialog : public QDialog { |
26 class ConfigDialog : public QDialog { |
27 Q_OBJECT |
27 Q_OBJECT |
28 |
28 |
29 public: |
29 public: |
30 QLabel* qLDrawPathLabel; |
30 QLabel* qLDrawPathLabel, *qGLBackgroundLabel; |
31 QLineEdit* qLDrawPath; |
31 QLineEdit* qLDrawPath; |
32 QPushButton* qLDrawPathFindButton; |
32 QPushButton* qLDrawPathFindButton; |
|
33 QPushButton* qGLBackgroundButton; |
33 |
34 |
34 QDialogButtonBox* qButtons; |
35 QDialogButtonBox* qButtons; |
35 |
36 |
36 ConfigDialog (ForgeWindow* parent); |
37 ConfigDialog (ForgeWindow* parent); |
|
38 ~ConfigDialog (); |
37 static void staticDialog (ForgeWindow* window); |
39 static void staticDialog (ForgeWindow* window); |
|
40 |
|
41 private: |
|
42 void setButtonBackground (QPushButton* qButton, str zValue); |
38 |
43 |
39 private slots: |
44 private slots: |
40 void slot_findLDrawPath (); |
45 void slot_findLDrawPath (); |
|
46 void slot_setGLBackground (); |
41 }; |
47 }; |