summaryrefslogtreecommitdiff
path: root/client/widgets/window.cc
diff options
context:
space:
mode:
authordeva <deva>2008-08-20 10:28:35 +0000
committerdeva <deva>2008-08-20 10:28:35 +0000
commit3eebecacd576c35605aff01324ec66ad9825b0d7 (patch)
treea4f58503967707cdc1ecab07a0b15b67d32bdab6 /client/widgets/window.cc
parent45702265ce206381bcb02a53b413ad987897b02b (diff)
Fixed various small bugs.
Diffstat (limited to 'client/widgets/window.cc')
-rw-r--r--client/widgets/window.cc6
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());