summaryrefslogtreecommitdiff
path: root/src/gui/npc_text.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-01-20 10:09:59 +0000
committerJared Adams <jaxad0127@gmail.com>2009-01-20 10:09:59 +0000
commit4c2cabced8943dea1f5b1209381aeaa174b62657 (patch)
treed241c85dd08b1e7f4da18bba1e078cd2b49bf4dd /src/gui/npc_text.h
parent3fcd3755f5c5d23af31e081c59275ef94cb4e036 (diff)
downloadmana-client-4c2cabced8943dea1f5b1209381aeaa174b62657.tar.gz
mana-client-4c2cabced8943dea1f5b1209381aeaa174b62657.tar.bz2
mana-client-4c2cabced8943dea1f5b1209381aeaa174b62657.tar.xz
mana-client-4c2cabced8943dea1f5b1209381aeaa174b62657.zip
Switch the NPC text dialog over to a BrowserBox
Diffstat (limited to 'src/gui/npc_text.h')
-rw-r--r--src/gui/npc_text.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/gui/npc_text.h b/src/gui/npc_text.h
index b6eccf95..39a8e535 100644
--- a/src/gui/npc_text.h
+++ b/src/gui/npc_text.h
@@ -27,7 +27,7 @@
#include "window.h"
-class TextBox;
+class BrowserBox;
/**
* The npc text dialog.
@@ -57,6 +57,11 @@ class NpcTextDialog : public Window, public gcn::ActionListener
void action(const gcn::ActionEvent &event);
/**
+ * Clears the text shown in the dialog.
+ */
+ void clearText();
+
+ /**
* Sets the text shows in the dialog.
*
* @param string The new text.
@@ -74,9 +79,7 @@ class NpcTextDialog : public Window, public gcn::ActionListener
private:
gcn::Button *okButton;
gcn::ScrollArea *scrollArea;
- TextBox *mTextBox;
-
- std::string mText;
+ BrowserBox *mBrowserBox;
};
#endif // _TMW_NPC_TEXT_H