diff options
author | senator <senator> | 2007-08-22 10:23:33 +0000 |
---|---|---|
committer | senator <senator> | 2007-08-22 10:23:33 +0000 |
commit | 47750e70ba9171c10e32a1033b68ae2b614799fa (patch) | |
tree | 5b799493a9d2941ba26e540570a4121b764b950a /client/widgets/label.cc | |
parent | 50496c06eebb902d75e13667da0d87c9f454424a (diff) |
name have moved to widget in all classes. combobox is a dummy so far
Diffstat (limited to 'client/widgets/label.cc')
-rw-r--r-- | client/widgets/label.cc | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/client/widgets/label.cc b/client/widgets/label.cc index b1875e4..dd658d3 100644 --- a/client/widgets/label.cc +++ b/client/widgets/label.cc @@ -27,17 +27,19 @@ #include "label.h" #include <stdio.h> -Label::Label(QDomNode node) : QLabel() +Label::Label(QDomNode node) + : QLabel(), Widget(node) { QDomElement elem = node.toElement(); - if(elem.hasAttribute("name")) { - widget_name = elem.attribute("name"); - } else { - printf("XML ERROR!! Unnamed widget of type: %s\n", - elem.tagName().toStdString().c_str()); + if(elem.hasAttribute("width")) { + setMinimumWidth(elem.attribute("width").toInt()); } + if(elem.hasAttribute("height")) { + setMinimumWidth(elem.attribute("height").toInt()); + } + if(elem.hasAttribute("caption")) { setText(elem.attribute("caption")); } else { |