From e93e064373c382b80ecb37919335fbfe424efeea Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Wed, 28 Sep 2005 20:09:25 +0000 Subject: Added window internal name to every window. Useful to later get and save X, Y, Height, and Width of these wins. --- src/gui/window.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/gui/window.cpp') 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; +} -- cgit v1.2.3-70-g09d2