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.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/noncore/apps/confedit/editwidget.h b/noncore/apps/confedit/editwidget.h
new file mode 100644
index 0000000..673166f
--- a/dev/null
+++ b/noncore/apps/confedit/editwidget.h
@@ -0,0 +1,37 @@
1#ifndef EDITWIDGET_H
2#define EDITWIDGET_H
3
4#include <qvariant.h>
5#include <qwidget.h>
6class QVBoxLayout;
7class QHBoxLayout;
8class QGridLayout;
9class QLabel;
10class QLineEdit;
11class QListViewItem;
12class ListViewItemConfigEntry;
13class QTimer;
14class QPopupMenu;
15
16class EditWidget : public QWidget
17{
18 Q_OBJECT
19
20public:
21 EditWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
22 ~EditWidget();
23
24 QLabel *TextLabelKey;
25 QLabel *TextLabelValue;
26 QLabel *TextFileName;
27 QLineEdit *LineEditGroup;
28 QLineEdit *LineEditKey;
29 QLineEdit *LineEditValue;
30 void isKey(bool h);
31protected:
32 QGridLayout* EditWidgetLayout;
33
34private:
35};
36
37#endif // EDITWIDGET_H