summaryrefslogtreecommitdiff
path: root/src/gui/textdialog.cpp
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.cpp
parent7c4f4f9bedf3f1cf0566f4cad2f4eedd59075a57 (diff)
downloadmana-client-b047811ba2e0fd8ced277f9b3f7bc35d6c274e09.tar.gz
mana-client-b047811ba2e0fd8ced277f9b3f7bc35d6c274e09.tar.bz2
mana-client-b047811ba2e0fd8ced277f9b3f7bc35d6c274e09.tar.xz
mana-client-b047811ba2e0fd8ced277f9b3f7bc35d6c274e09.zip
Replaced the basic guichan text field class with our derivate class.
Diffstat (limited to 'src/gui/textdialog.cpp')
-rw-r--r--src/gui/textdialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/textdialog.cpp b/src/gui/textdialog.cpp
index 202838f0..3986ed4e 100644
--- a/src/gui/textdialog.cpp
+++ b/src/gui/textdialog.cpp
@@ -31,20 +31,20 @@
TextDialog::TextDialog(const std::string &title, const std::string &msg,
Window *parent):
Window(title, true, parent),
- textField(new gcn::TextField(""))
+ textField(new TextField(""))
{
gcn::Label *textLabel = new gcn::Label(msg);
okButton = new Button("OK", "OK", this);
gcn::Button *cancelButton = new Button("Cancel", "CANCEL", this);
-
+
int w = textLabel->getWidth() + 20;
int inWidth = okButton->getWidth() + cancelButton->getWidth() + 5;
int h = textLabel->getHeight() + 25 + okButton->getHeight() + textField->getHeight();
-
+
if (w < inWidth + 10) {
w = inWidth + 10;
}
-
+
setContentSize(w, h);
textLabel->setPosition(10, 10);
textField->setWidth(85);
@@ -53,12 +53,12 @@ TextDialog::TextDialog(const std::string &title, const std::string &msg,
h - 5 - cancelButton->getHeight());
cancelButton->setPosition(okButton->getX() + okButton->getWidth() + 5,
h - 5 - cancelButton->getHeight());
-
+
add(textLabel);
add(textField);
add(okButton);
add(cancelButton);
-
+
if (getParent()) {
setLocationRelativeTo(getParent());
getParent()->moveToTop(this);
@@ -75,7 +75,7 @@ void TextDialog::action(const gcn::ActionEvent &event)
{
(*i)->action(event);
}
-
+
if(event.getId() == "CANCEL" || event.getId() == "OK")
{
scheduleDelete();