diff options
Diffstat (limited to 'src/gui/sell.h')
-rw-r--r-- | src/gui/sell.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/sell.h b/src/gui/sell.h index 5cf5479e..864c5f63 100644 --- a/src/gui/sell.h +++ b/src/gui/sell.h @@ -79,6 +79,11 @@ class SellDialog : public Window, public gcn::ActionListener, int getNumberOfElements(); /** + * Mouse callback + */ + void mouseClick(int x, int y, int buton, int count); + + /** * Returns the name of item number i in the inventory. */ std::string getElementAt(int i); @@ -91,6 +96,8 @@ class SellDialog : public Window, public gcn::ActionListener, gcn::ListBox *itemList; gcn::ScrollArea *scrollArea; gcn::Label *moneyLabel; + gcn::Label *itemDescLabel; + gcn::Label *itemEffectLabel; gcn::Label *quantityLabel; gcn::Slider *slider; |