summaryrefslogtreecommitdiff
path: root/src/gui/textdialog.h
diff options
context:
space:
mode:
authorPhilipp Sehmisch <tmw@crushnet.org>2008-03-01 01:41:07 +0000
committerPhilipp Sehmisch <tmw@crushnet.org>2008-03-01 01:41:07 +0000
commitb047811ba2e0fd8ced277f9b3f7bc35d6c274e09 (patch)
tree53cb7399b3379a3e9f2f3b1c12d1e7f8a2c4967b /src/gui/textdialog.h
parent7c4f4f9bedf3f1cf0566f4cad2f4eedd59075a57 (diff)
downloadMana-b047811ba2e0fd8ced277f9b3f7bc35d6c274e09.tar.gz
Mana-b047811ba2e0fd8ced277f9b3f7bc35d6c274e09.tar.bz2
Mana-b047811ba2e0fd8ced277f9b3f7bc35d6c274e09.tar.xz
Mana-b047811ba2e0fd8ced277f9b3f7bc35d6c274e09.zip
Replaced the basic guichan text field class with our derivate class.
Diffstat (limited to 'src/gui/textdialog.h')
-rw-r--r--src/gui/textdialog.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/gui/textdialog.h b/src/gui/textdialog.h
index f8ec0172..e14ab26b 100644
--- a/src/gui/textdialog.h
+++ b/src/gui/textdialog.h
@@ -24,7 +24,9 @@
#ifndef _TMW_GUI_GUILD_DIALOG_H
#define _TMW_GUI_GUILD_DIALOG_H
-#include <guichan/actionlistener.hpp>
+#include <guichan/actionlistener.hpp>
+
+#include "textfield.h"
#include "window.h"
@@ -43,24 +45,24 @@ public:
*/
TextDialog(const std::string &title, const std::string &msg,
Window *parent = NULL);
-
+
/**
* Called when receiving actions from the widgets.
*/
void action(const gcn::ActionEvent &event);
-
+
/**
* Get the text in the textfield
*/
const std::string& getText() const;
-
+
/**
* Set the OK button action id
*/
void setOKButtonActionId(const std::string &name);
-
+
private:
- gcn::TextField *textField;
+ TextField *textField;
gcn::Button *okButton;
};