summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/editwidget.h
Unidiff
Diffstat (limited to 'noncore/apps/confedit/editwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/confedit/editwidget.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/noncore/apps/confedit/editwidget.h b/noncore/apps/confedit/editwidget.h
index 673166f..8261c85 100644
--- a/noncore/apps/confedit/editwidget.h
+++ b/noncore/apps/confedit/editwidget.h
@@ -18,16 +18,20 @@ class EditWidget : public QWidget
18 Q_OBJECT 18 Q_OBJECT
19 19
20public: 20public:
21 enum{ Entry, Group, File, Nothing};
22
21 EditWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 23 EditWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
22 ~EditWidget(); 24 ~EditWidget();
23 25
24 QLabel *TextLabelKey; 26 QLabel *TextLabelKey;
25 QLabel *TextLabelValue; 27 QLabel *TextLabelValue;
28 QLabel *TextLabelGroup;
29 QLabel *TextLabelFileName;
26 QLabel *TextFileName; 30 QLabel *TextFileName;
27 QLineEdit *LineEditGroup; 31 QLineEdit *LineEditGroup;
28 QLineEdit *LineEditKey; 32 QLineEdit *LineEditKey;
29 QLineEdit *LineEditValue; 33 QLineEdit *LineEditValue;
30 void isKey(bool h); 34 void layoutType(int t);
31protected: 35protected:
32 QGridLayout* EditWidgetLayout; 36 QGridLayout* EditWidgetLayout;
33 37