summaryrefslogtreecommitdiff
path: root/src/gui/requesttrade.h
diff options
context:
space:
mode:
authorJan-Fabian Humann <malastare@gmx.net>2005-04-06 14:46:50 +0000
committerJan-Fabian Humann <malastare@gmx.net>2005-04-06 14:46:50 +0000
commitccf84aa701dc938e7e390339c8ca5c2c7e5a21c5 (patch)
tree53c4f5ff30a981f0f946ab66f4b3c90dc730dd28 /src/gui/requesttrade.h
parentc74357ef532d9c90ec1605048b9602da78e7928c (diff)
downloadmana-client-ccf84aa701dc938e7e390339c8ca5c2c7e5a21c5.tar.gz
mana-client-ccf84aa701dc938e7e390339c8ca5c2c7e5a21c5.tar.bz2
mana-client-ccf84aa701dc938e7e390339c8ca5c2c7e5a21c5.tar.xz
mana-client-ccf84aa701dc938e7e390339c8ca5c2c7e5a21c5.zip
update for trade: now on right click
Diffstat (limited to 'src/gui/requesttrade.h')
-rw-r--r--src/gui/requesttrade.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/src/gui/requesttrade.h b/src/gui/requesttrade.h
new file mode 100644
index 00000000..cb4362c4
--- /dev/null
+++ b/src/gui/requesttrade.h
@@ -0,0 +1,69 @@
+/*
+ * The Mana World
+ * Copyright 2004 The Mana World Development Team
+ *
+ * This file is part of The Mana World.
+ *
+ * The Mana World is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * The Mana World is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with The Mana World; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * $Id$
+ */
+
+#ifndef _TMW_REQUESTTRADE_H
+#define _TMW_REQUESTTRADE_H
+
+#include <guichan.hpp>
+#include <vector>
+#include <string>
+#include <sstream>
+#include "window.h"
+
+/**
+ * The request trade dialog.
+ *
+ * \ingroup GUI
+ */
+class RequestTradeDialog : public Window, public gcn::ActionListener
+{
+ public:
+ /**
+ * Constructor.
+ *
+ * @see Window::Window
+ */
+ RequestTradeDialog();
+
+ /**
+ * Destructor.
+ */
+ ~RequestTradeDialog();
+
+ /**
+ * Changes caption and brings window to the top
+ */
+ void request(const char *name);
+
+ /**
+ * Called when receiving actions from the widgets.
+ */
+ void action(const std::string& eventId);
+
+ private:
+ gcn::Button *acceptButton;
+ gcn::Button *cancelButton;
+ gcn::Label *nameLabel[1];
+};
+
+#endif