From a85c3ca1ff34775f2fc93013306dec21b34b0359 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Fri, 17 Sep 2010 23:05:58 +0000 Subject: Initial inventory loading, ships docking ships --- src/client/inventorylistview.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/client/inventorylistview.h (limited to 'src/client/inventorylistview.h') diff --git a/src/client/inventorylistview.h b/src/client/inventorylistview.h new file mode 100644 index 0000000..82a9cc4 --- /dev/null +++ b/src/client/inventorylistview.h @@ -0,0 +1,27 @@ +/* + client/inventorylistview.h + This file is part of the Osirion project and is distributed under + the terms and conditions of the GNU General Public License version 2 +*/ + +#ifndef __INCLUDED_CLIENT_INVENTORYLISTVIEW_H__ +#define __INCLUDED_CLIENT_INVENTORYLISTVIEW_H__ + +#include "core/info.h" +#include "core/inventory.h" +#include "ui/listview.h" + + +namespace client { + +class InventoryListView : public ui::ListView { +public: + InventoryListView(ui::Widget *parent = 0); + ~InventoryListView(); + + void set_inventory(core::Inventory *inventory, core::InfoType *info_type); +}; + +} // namespace client + +#endif //__INCLUDED_CLIENT_INVENTORYLISTVIEW_H__ \ No newline at end of file -- cgit v1.2.3