~ubuntu-branches/ubuntu/vivid/manaplus/vivid-proposed

« back to all changes in this revision

Viewing changes to src/gui/windows/shopwindow.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2015-02-05 10:52:57 UTC
  • mfrom: (1.1.43)
  • Revision ID: package-import@ubuntu.com-20150205105257-q53e3m1s2wwawu8a
Tags: 1.5.1.31-1
* New upstream release.
* Fix some wildcard-matches-nothing-in-dep5-copyright warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
class Button;
32
32
class CheckBox;
33
33
class Item;
34
 
class Label;
35
34
class ScrollArea;
36
35
class ShopItem;
37
36
class ShopItems;
38
37
class ShopListBox;
 
38
class TabStrip;
39
39
 
40
40
/**
41
41
 * The buy dialog.
140
140
    private:
141
141
        void startTrade();
142
142
 
 
143
        void updateSelection();
 
144
 
143
145
        typedef std::list<ShopWindow*> DialogList;
144
146
        static DialogList instances;
145
147
 
151
153
 
152
154
        ShopListBox *mBuyShopItemList;
153
155
        ShopListBox *mSellShopItemList;
154
 
        ScrollArea *mBuyScrollArea;
155
 
        ScrollArea *mSellScrollArea;
156
 
        Label *mBuyLabel;
157
 
        Label *mSellLabel;
158
 
        Button *mBuyAddButton;
159
 
        Button *mBuyDeleteButton;
160
 
        Button *mBuyAnnounceButton;
161
 
        Button *mBuyAuctionButton;
162
 
        Button *mSellAddButton;
163
 
        Button *mSellDeleteButton;
164
 
        Button *mSellAnnounceButton;
165
 
        Button *mSellAuctionButton;
 
156
        ShopListBox *mCurrentShopItemList;
 
157
        ScrollArea *mScrollArea;
 
158
        Button *mAddButton;
 
159
        Button *mDeleteButton;
 
160
        Button *mAnnounceButton;
166
161
        CheckBox *mAnnounceLinks;
 
162
        TabStrip *mTabs;
167
163
        std::string mAcceptPlayer;
168
164
        std::string mTradeNick;
169
165
        int mSelectedItem;
173
169
        int mRandCounter;
174
170
        int mTradeMoney;
175
171
        int mAnnounceCounter[2];
 
172
        bool isBuySelected;
176
173
};
177
174
 
178
175
extern ShopWindow *shopWindow;