diff options
author | Yohann Ferreira <bertram@cegetel.net> | 2005-09-28 20:09:25 +0000 |
---|---|---|
committer | Yohann Ferreira <bertram@cegetel.net> | 2005-09-28 20:09:25 +0000 |
commit | e93e064373c382b80ecb37919335fbfe424efeea (patch) | |
tree | c090ee89b74f1b92c58ec2641eeb9a9f80471ec7 /src/gui/window.h | |
parent | afaf7b68b8761268fdc54066e02cfe8df1d23dec (diff) | |
download | mana-e93e064373c382b80ecb37919335fbfe424efeea.tar.gz mana-e93e064373c382b80ecb37919335fbfe424efeea.tar.bz2 mana-e93e064373c382b80ecb37919335fbfe424efeea.tar.xz mana-e93e064373c382b80ecb37919335fbfe424efeea.zip |
Added window internal name to every window. Useful to later get and save X, Y, Height, and Width of these wins.
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 */ |