diff options
author | Jared Adams <jaxad0127@gmail.com> | 2010-01-10 21:14:37 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2010-01-10 21:14:37 +0000 |
commit | 34917f8ff44b0224f7199e7f1ffd55ba588a9cf7 (patch) | |
tree | 731bc31b53ceda93010e4fd26cfe0bf594cb70e3 /src/gui/textdialog.h | |
parent | 4c6165ece76dff406d324c240a7fc099a3e0c42b (diff) | |
download | mana-34917f8ff44b0224f7199e7f1ffd55ba588a9cf7.tar.gz mana-34917f8ff44b0224f7199e7f1ffd55ba588a9cf7.tar.bz2 mana-34917f8ff44b0224f7199e7f1ffd55ba588a9cf7.tar.xz mana-34917f8ff44b0224f7199e7f1ffd55ba588a9cf7.zip |
Make sure TextDialogs get input precedence
Diffstat (limited to 'src/gui/textdialog.h')
-rw-r--r-- | src/gui/textdialog.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/textdialog.h b/src/gui/textdialog.h index edfe85b6..b04851ac 100644 --- a/src/gui/textdialog.h +++ b/src/gui/textdialog.h @@ -43,6 +43,9 @@ public: */ TextDialog(const std::string &title, const std::string &msg, Window *parent = NULL); + + + ~TextDialog(); /** * Called when receiving actions from the widgets. @@ -58,8 +61,12 @@ public: * Set the OK button action id */ void setOKButtonActionId(const std::string &name); + + static const bool isActive() { return instances > 0; } private: + static int instances; + TextField *mTextField; gcn::Button *mOkButton; }; |