summaryrefslogtreecommitdiff
path: root/src/gui/windows/shopselldialog.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-22 14:25:57 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-22 14:25:57 +0300
commitbeaddb973febb0570a9d035c2221e4fd06e3ac47 (patch)
treef4a6aec77bd0ffd1afb3f06429777b27ccfec42f /src/gui/windows/shopselldialog.h
parentd34decaf8b2b4cbffca970e9059e1a2b4f463055 (diff)
downloadplus-beaddb973febb0570a9d035c2221e4fd06e3ac47.tar.gz
plus-beaddb973febb0570a9d035c2221e4fd06e3ac47.tar.bz2
plus-beaddb973febb0570a9d035c2221e4fd06e3ac47.tar.xz
plus-beaddb973febb0570a9d035c2221e4fd06e3ac47.zip
Move shop sell code from SellDialog into ShopSellDialog.
Diffstat (limited to 'src/gui/windows/shopselldialog.h')
-rw-r--r--src/gui/windows/shopselldialog.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/gui/windows/shopselldialog.h b/src/gui/windows/shopselldialog.h
new file mode 100644
index 000000000..bec840409
--- /dev/null
+++ b/src/gui/windows/shopselldialog.h
@@ -0,0 +1,49 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2004-2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * Copyright (C) 2011-2014 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program 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.
+ *
+ * This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GUI_WINDOWS_SHOPSELLDIALOG_H
+#define GUI_WINDOWS_SHOPSELLDIALOG_H
+
+#include "gui/windows/selldialog.h"
+
+/**
+ * The sell dialog.
+ *
+ * \ingroup Interface
+ */
+class ShopSellDialog final : public SellDialog
+{
+ public:
+ /**
+ * Constructor.
+ *
+ * @see Window::Window
+ */
+ explicit ShopSellDialog(const std::string &nick);
+
+ A_DELETE_COPY(ShopSellDialog)
+
+ protected:
+ void sellAction(const ActionEvent &event) override final;
+};
+
+#endif // GUI_WINDOWS_SHOPSELLDIALOG_H