summaryrefslogtreecommitdiff
path: root/src/gui/window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/window.cpp')
-rw-r--r--src/gui/window.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gui/window.cpp b/src/gui/window.cpp
index 642b891f..706780be 100644
--- a/src/gui/window.cpp
+++ b/src/gui/window.cpp
@@ -68,6 +68,7 @@ class WindowConfigListener : public ConfigListener
Window::Window(const std::string& caption, bool modal, Window *parent):
gcn::Window(caption),
parent(parent),
+ mWindowName("window"),
snapSize(8),
title(true),
modal(modal),
@@ -405,3 +406,13 @@ gcn::Rectangle Window::getGripDimension ()
return gcn::Rectangle(getWidth() - resizeGrip->getWidth(), getHeight() - resizeGrip->getHeight(), getWidth(),
getHeight());
}
+
+void Window::setWindowName(std::string name)
+{
+ mWindowName = name;
+}
+
+std::string Window::getWindowName()
+{
+ return mWindowName;
+}