diff options
author | deva <deva> | 2008-08-20 10:28:35 +0000 |
---|---|---|
committer | deva <deva> | 2008-08-20 10:28:35 +0000 |
commit | 3eebecacd576c35605aff01324ec66ad9825b0d7 (patch) | |
tree | a4f58503967707cdc1ecab07a0b15b67d32bdab6 /client/widgets/window.cc | |
parent | 45702265ce206381bcb02a53b413ad987897b02b (diff) |
Fixed various small bugs.
Diffstat (limited to 'client/widgets/window.cc')
-rw-r--r-- | client/widgets/window.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/client/widgets/window.cc b/client/widgets/window.cc index bda3667..c385d04 100644 --- a/client/widgets/window.cc +++ b/client/widgets/window.cc @@ -31,6 +31,8 @@ Window::Window(QDomNode &node, MacroWindow *macrowindow) : QWidget(NULL), Widget(node, macrowindow) { + setWindowFlags(Qt::WindowContextHelpButtonHint | Qt::WindowSystemMenuHint); + QDomElement elem = node.toElement(); if(elem.hasAttribute("width")) { @@ -43,6 +45,10 @@ Window::Window(QDomNode &node, MacroWindow *macrowindow) resize(width(), elem.attribute("height").toInt()); } + if(elem.hasAttribute("help")) { + setToolTip(elem.attribute("help")); + } + if(elem.hasAttribute("fixed")) { if(elem.attribute("fixed") == "true") { setFixedSize(width(), height()); |