summaryrefslogtreecommitdiff
path: root/src/gui/trade.h
diff options
context:
space:
mode:
authorblue112 <bluesansdouze@gmail.com>2009-04-21 15:31:21 +0200
committerJared Adams <jaxad0127@gmail.com>2009-04-21 08:35:52 -0600
commitfa96d81b86914adb3d8608f8ab4f734d3286fcd4 (patch)
tree422d35e88df76f05f40b5308fa842ce8a0ceeb3b /src/gui/trade.h
parent18bb2946b4acfe8d3ac9184a453898718488e556 (diff)
downloadmana-client-fa96d81b86914adb3d8608f8ab4f734d3286fcd4.tar.gz
mana-client-fa96d81b86914adb3d8608f8ab4f734d3286fcd4.tar.bz2
mana-client-fa96d81b86914adb3d8608f8ab4f734d3286fcd4.tar.xz
mana-client-fa96d81b86914adb3d8608f8ab4f734d3286fcd4.zip
Trade system
Handler & GUI modification, to make the three steps systems working. Protocol changes for the same reason Player.cpp changes because it uses the cancel method which signature has changed
Diffstat (limited to 'src/gui/trade.h')
-rw-r--r--src/gui/trade.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gui/trade.h b/src/gui/trade.h
index 2260dcc1..3c292496 100644
--- a/src/gui/trade.h
+++ b/src/gui/trade.h
@@ -114,9 +114,10 @@ class TradeWindow : public Window, gcn::ActionListener, gcn::SelectionListener
private:
enum Status
{
- PREPARING, /**< Players are adding items. */
- PROPOSING, /**< Local player is proposing a trade. */
- ACCEPTING /**< Distant player is proposing a trade. */
+ PREPARING, /**< Players are adding items. (1) */
+ PROPOSING, /**< Local player has confirmed the trade. (1) */
+ ACCEPTING, /**< Accepting the trade. (2) */
+ ACCEPTED /**< Local player has accepted the trade. */
};
/**
@@ -134,6 +135,7 @@ class TradeWindow : public Window, gcn::ActionListener, gcn::SelectionListener
gcn::Label *mMoneyLabel;
gcn::Button *mAddButton;
gcn::Button *mOkButton;
+ gcn::Button *mMoneyChangeButton;
gcn::TextField *mMoneyField;
Status mStatus;