summaryrefslogtreecommitdiff
path: root/client/widgets/label.h
diff options
context:
space:
mode:
authordeva <deva>2010-08-12 10:57:04 +0000
committerdeva <deva>2010-08-12 10:57:04 +0000
commitd9338083192084613e5530b02710b796252d342b (patch)
treee0ec2b36e0de62328e5fd5d3b597f6ee71d1b18f /client/widgets/label.h
parentdbab8458dcce186e7eb7a114a83f759d7db5445a (diff)
New scripting system part2.
Diffstat (limited to 'client/widgets/label.h')
-rw-r--r--client/widgets/label.h21
1 files changed, 9 insertions, 12 deletions
diff --git a/client/widgets/label.h b/client/widgets/label.h
index ff905a7..529a79e 100644
--- a/client/widgets/label.h
+++ b/client/widgets/label.h
@@ -28,27 +28,24 @@
#define __PRACRO_LABEL_H__
#include "widget.h"
-#include <QWidget>
-#include <QLabel>
+
#include <QDomNode>
-class Label : public QLabel, public Widget
+class QLabel;
+class Label : public Widget
{
Q_OBJECT
public:
Label(QDomNode &node, MacroWindow *macrowindow);
+ ~Label();
- void connectFrom(const char *signal,
- const QObject *receiver, const char *method);
-
- void connectTo(const QObject *sender, const char *signal,
- const char *method);
+ QString value() { return ""; }
+ void setValue(QString, QString) {}
- void setVisibility(bool visible);
+ void setWdgValid(bool) {}
- void disable();
- void enable();
- bool isDisabled();
+private:
+ QLabel *label;
};
#endif/*__PRACRO_LABEL_H__*/