summaryrefslogtreecommitdiff
path: root/src/gui/windows/shopwindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-01 23:48:15 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-02 22:48:03 +0300
commit6dc1f5e0b68cf390f7938329b50a9b28bd187862 (patch)
tree29e30e48cc03d95aeff278f6842f3a15de8f4106 /src/gui/windows/shopwindow.h
parentc8c51d7550adf9c952a4be54398df7e7a6f341a8 (diff)
downloadplus-6dc1f5e0b68cf390f7938329b50a9b28bd187862.tar.gz
plus-6dc1f5e0b68cf390f7938329b50a9b28bd187862.tar.bz2
plus-6dc1f5e0b68cf390f7938329b50a9b28bd187862.tar.xz
plus-6dc1f5e0b68cf390f7938329b50a9b28bd187862.zip
Set correct vending status to local player.
Allow buy from vending shop.
Diffstat (limited to 'src/gui/windows/shopwindow.h')
-rw-r--r--src/gui/windows/shopwindow.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/windows/shopwindow.h b/src/gui/windows/shopwindow.h
index 06f0a997d..c746bff17 100644
--- a/src/gui/windows/shopwindow.h
+++ b/src/gui/windows/shopwindow.h
@@ -27,6 +27,7 @@
#include "listeners/actionlistener.h"
#include "listeners/selectionlistener.h"
+#include "listeners/vendingmodelistener.h"
#include "listeners/vendingslotslistener.h"
class Button;
@@ -46,6 +47,7 @@ class TabStrip;
class ShopWindow final : public Window,
public ActionListener,
public SelectionListener,
+ public VendingModeListener,
public VendingSlotsListener
{
public:
@@ -141,6 +143,8 @@ class ShopWindow final : public Window,
void vendingSlotsChanged(const int slots) override final;
+ void vendingEnabled(const bool b) override final;
+
private:
void startTrade();
@@ -176,6 +180,7 @@ class ShopWindow final : public Window,
int mSellShopSize;
bool isBuySelected;
bool mHaveVending;
+ bool mEnableVending;
};
extern ShopWindow *shopWindow;