summaryrefslogtreecommitdiff
path: root/src/gui/textdialog.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2010-01-10 21:14:37 +0000
committerJared Adams <jaxad0127@gmail.com>2010-01-10 21:14:37 +0000
commit34917f8ff44b0224f7199e7f1ffd55ba588a9cf7 (patch)
tree731bc31b53ceda93010e4fd26cfe0bf594cb70e3 /src/gui/textdialog.h
parent4c6165ece76dff406d324c240a7fc099a3e0c42b (diff)
downloadMana-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.h7
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;
};