summaryrefslogtreecommitdiff
path: root/src/gui/npc_text.h
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2008-11-01 03:36:47 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2008-12-07 00:10:44 +0100
commit523eed88816298b1660ecb9e67db80776e4007bb (patch)
treea6a7a1022ae6f79dde3f370a19044669e9b13378 /src/gui/npc_text.h
parent84cfc5ac9929d2190d9fb19fa411b72d90bb2185 (diff)
downloadmana-client-523eed88816298b1660ecb9e67db80776e4007bb.tar.gz
mana-client-523eed88816298b1660ecb9e67db80776e4007bb.tar.bz2
mana-client-523eed88816298b1660ecb9e67db80776e4007bb.tar.xz
mana-client-523eed88816298b1660ecb9e67db80776e4007bb.zip
Made NPC dialogues resizeable.
(cherry picked from Aethyra commit 81299ca9acc39dec62e1e504781721ad0db0d471) Conflicts: src/gui/inventorywindow.cpp src/gui/npc_text.cpp
Diffstat (limited to 'src/gui/npc_text.h')
-rw-r--r--src/gui/npc_text.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gui/npc_text.h b/src/gui/npc_text.h
index 2c9771d3..939fb8fa 100644
--- a/src/gui/npc_text.h
+++ b/src/gui/npc_text.h
@@ -45,6 +45,18 @@ class NpcTextDialog : public Window, public gcn::ActionListener
NpcTextDialog();
/**
+ * Called when resizing the window
+ *
+ * @param event The calling event
+ */
+ void widgetResized(const gcn::Event &event);
+
+ /**
+ * Redraws the window
+ */
+ void draw();
+
+ /**
* Called when receiving actions from the widgets.
*/
void
@@ -68,7 +80,11 @@ class NpcTextDialog : public Window, public gcn::ActionListener
addText(const std::string &string);
private:
+ gcn::Button *okButton;
+ gcn::ScrollArea *scrollArea;
TextBox *mTextBox;
+
+ std::string mText;
};
#endif