summaryrefslogtreecommitdiff
path: root/src/gui/windows/insertcarddialog.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-07-14 22:42:47 +0300
committerAndrei Karas <akaras@inbox.ru>2015-07-14 22:42:47 +0300
commit26b43e7164214e8c9e5cdb8842a79a4fcc1493da (patch)
tree250a4f432ed66dee5a821eab15855cd194b18433 /src/gui/windows/insertcarddialog.cpp
parent21d0f7cd7b0d8474f1043ae4f283a58ea6d8b352 (diff)
downloadplus-26b43e7164214e8c9e5cdb8842a79a4fcc1493da.tar.gz
plus-26b43e7164214e8c9e5cdb8842a79a4fcc1493da.tar.bz2
plus-26b43e7164214e8c9e5cdb8842a79a4fcc1493da.tar.xz
plus-26b43e7164214e8c9e5cdb8842a79a4fcc1493da.zip
Add ability for insert cards into items.
Diffstat (limited to 'src/gui/windows/insertcarddialog.cpp')
-rw-r--r--src/gui/windows/insertcarddialog.cpp67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/gui/windows/insertcarddialog.cpp b/src/gui/windows/insertcarddialog.cpp
new file mode 100644
index 000000000..d34dcc7c6
--- /dev/null
+++ b/src/gui/windows/insertcarddialog.cpp
@@ -0,0 +1,67 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2004-2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * Copyright (C) 2011-2015 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/>.
+ */
+
+#include "gui/windows/insertcarddialog.h"
+
+#include "shopitem.h"
+
+#include "gui/models/shopitems.h"
+
+#include "gui/widgets/button.h"
+#include "gui/widgets/shoplistbox.h"
+
+#include "net/inventoryhandler.h"
+
+#include "utils/gettext.h"
+
+#include "debug.h"
+
+InsertCardDialog::InsertCardDialog(const int itemIndex) :
+ SellDialog(false),
+ mItemIndex(itemIndex)
+{
+ // TRANSLATORS: insert card dialog name
+ setWindowName(_("Insert card"));
+ // TRANSLATORS: insert card dialog name
+ setCaption(_("Insert card"));
+}
+
+void InsertCardDialog::initButtons()
+{
+ // TRANSLATORS: insert card dialog button
+ mSellButton->setCaption(_("Insert"));
+ mSellButton->adjustSize();
+ mShopItems->setMergeDuplicates(false);
+}
+
+void InsertCardDialog::sellAction(const ActionEvent &event A_UNUSED)
+{
+ if (mAmountItems <= 0 || mAmountItems > mMaxItems)
+ return;
+
+ const int selectedItem = mShopItemList->getSelected();
+ const ShopItem *const item = mShopItems->at(selectedItem);
+ if (!item)
+ return;
+ inventoryHandler->insertCard(mItemIndex, item->getInvIndex());
+ scheduleDelete();
+}