diff options
Diffstat (limited to 'src/gui/window.h')
-rw-r--r-- | src/gui/window.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gui/window.h b/src/gui/window.h index df692d08..057981ef 100644 --- a/src/gui/window.h +++ b/src/gui/window.h @@ -159,9 +159,21 @@ class Window : public gcn::Window */ gcn::Rectangle getGripDimension(); + /** + * set Window internal name + */ + void setWindowName(std::string name); + + /** + * Get window internal name + */ + std::string getWindowName(); + + protected: gcn::Container *chrome; /**< Contained container */ Window *parent; /**< The parent window */ + std::string mWindowName; /**< Window internal name */ int snapSize; /**< Snap distance to window edge */ bool title; /**< Window has a title bar */ bool modal; /**< Window is modal */ |