summaryrefslogtreecommitdiff
path: root/src/gui/windows/npcselldialog.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-22 14:04:40 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-22 14:04:40 +0300
commitd34decaf8b2b4cbffca970e9059e1a2b4f463055 (patch)
tree047edf620410b2a85ea54ba0f2c5670290317e52 /src/gui/windows/npcselldialog.h
parentf7e32db400bcfdd1b5f3c30d817ceeae5e1dc573 (diff)
downloadplus-d34decaf8b2b4cbffca970e9059e1a2b4f463055.tar.gz
plus-d34decaf8b2b4cbffca970e9059e1a2b4f463055.tar.bz2
plus-d34decaf8b2b4cbffca970e9059e1a2b4f463055.tar.xz
plus-d34decaf8b2b4cbffca970e9059e1a2b4f463055.zip
Move npc sell code from SellDialog into NpcSellDialog.
Diffstat (limited to 'src/gui/windows/npcselldialog.h')
-rw-r--r--src/gui/windows/npcselldialog.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/gui/windows/npcselldialog.h b/src/gui/windows/npcselldialog.h
new file mode 100644
index 000000000..a79220a85
--- /dev/null
+++ b/src/gui/windows/npcselldialog.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_NPCSELLDIALOG_H
+#define GUI_WINDOWS_NPCSELLDIALOG_H
+
+#include "gui/windows/selldialog.h"
+
+/**
+ * The sell dialog.
+ *
+ * \ingroup Interface
+ */
+class NpcSellDialog final : public SellDialog
+{
+ public:
+ /**
+ * Constructor.
+ *
+ * @see Window::Window
+ */
+ explicit NpcSellDialog(const int npcId);
+
+ A_DELETE_COPY(NpcSellDialog)
+
+ protected:
+ void sellAction(const ActionEvent &event) override final;
+};
+
+#endif // GUI_WINDOWS_NPCSELLDIALOG_H