summaryrefslogtreecommitdiff
path: root/src/gui/inventorywindow.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2008-04-07 15:23:07 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2008-04-07 15:23:07 +0000
commit92950d2f309550e21b33d851ef9bbf7906ce5e50 (patch)
tree18a6d2539c6e004e52cbebb1e61d8f8f0344f9a0 /src/gui/inventorywindow.h
parent3f3ba5f3e18b0a5093e7275aee574ecd6f293ec6 (diff)
downloadMana-92950d2f309550e21b33d851ef9bbf7906ce5e50.tar.gz
Mana-92950d2f309550e21b33d851ef9bbf7906ce5e50.tar.bz2
Mana-92950d2f309550e21b33d851ef9bbf7906ce5e50.tar.xz
Mana-92950d2f309550e21b33d851ef9bbf7906ce5e50.zip
Upgraded to Guichan 0.8.0 (merge from guichan-0.8 branch, except for
gcn::TabbedArea usage)
Diffstat (limited to 'src/gui/inventorywindow.h')
-rw-r--r--src/gui/inventorywindow.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/gui/inventorywindow.h b/src/gui/inventorywindow.h
index 14e1f25f..1a6e01af 100644
--- a/src/gui/inventorywindow.h
+++ b/src/gui/inventorywindow.h
@@ -25,10 +25,9 @@
#define _TMW_INVENTORYWINDOW_H
#include <guichan/actionlistener.hpp>
+#include <guichan/selectionlistener.hpp>
-#include "selectionlistener.h"
#include "window.h"
-#include "windowlistener.h"
#include "../guichanfwd.h"
@@ -40,8 +39,8 @@ class ItemContainer;
*
* \ingroup Interface
*/
-class InventoryWindow : public Window, gcn::ActionListener, SelectionListener,
- WindowListener
+class InventoryWindow : public Window, gcn::ActionListener,
+ gcn::SelectionListener
{
public:
/**
@@ -65,15 +64,13 @@ class InventoryWindow : public Window, gcn::ActionListener, SelectionListener,
/**
* Updates labels to currently selected item.
- *
- * @see SelectionListener::selectionChanged.
*/
- void selectionChanged(const SelectionEvent &event);
+ void valueChanged(const gcn::SelectionEvent &event);
/**
- * Called whenever the window is resized.
+ * Called whenever the widget changes size.
*/
- void windowResized(const WindowEvent &event);
+ void widgetResized(const gcn::Event &event);
private:
void updateButtons(); /**< Updates button states. */