summaryrefslogtreecommitdiff
path: root/noncore/apps/confedit/editwidget.h
Side-by-side diff
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 @@
+#ifndef EDITWIDGET_H
+#define EDITWIDGET_H
+
+#include <qvariant.h>
+#include <qwidget.h>
+class QVBoxLayout;
+class QHBoxLayout;
+class QGridLayout;
+class QLabel;
+class QLineEdit;
+class QListViewItem;
+class ListViewItemConfigEntry;
+class QTimer;
+class QPopupMenu;
+
+class EditWidget : public QWidget
+{
+ Q_OBJECT
+
+public:
+ EditWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
+ ~EditWidget();
+
+ QLabel *TextLabelKey;
+ QLabel *TextLabelValue;
+ QLabel *TextFileName;
+ QLineEdit *LineEditGroup;
+ QLineEdit *LineEditKey;
+ QLineEdit *LineEditValue;
+ void isKey(bool h);
+protected:
+ QGridLayout* EditWidgetLayout;
+
+private:
+};
+
+#endif // EDITWIDGET_H