mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-03 17:37:18 +00:00
57 lines
1.5 KiB
C++
57 lines
1.5 KiB
C++
#ifndef MWGUI_ITEMVIEW_H
|
|
#define MWGUI_ITEMVIEW_H
|
|
|
|
#include <MyGUI_Widget.h>
|
|
|
|
#include "itemmodel.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
|
|
class ItemView : public MyGUI::Widget
|
|
{
|
|
MYGUI_RTTI_DERIVED(ItemView)
|
|
public:
|
|
ItemView();
|
|
virtual ~ItemView();
|
|
|
|
/// Register needed components with MyGUI's factory manager
|
|
static void registerComponents ();
|
|
|
|
/// Takes ownership of \a model
|
|
void setModel (ItemModel* model);
|
|
|
|
typedef MyGUI::delegates::CMultiDelegate1<ItemModel::ModelIndex> EventHandle_ModelIndex;
|
|
typedef MyGUI::delegates::CMultiDelegate0 EventHandle_Void;
|
|
/// Fired when an item was clicked
|
|
EventHandle_ModelIndex eventItemClicked;
|
|
/// Fired when the background was clicked (useful for drag and drop)
|
|
EventHandle_Void eventBackgroundClicked;
|
|
|
|
void update();
|
|
|
|
static std::string getCountString(int count);
|
|
|
|
private:
|
|
virtual void initialiseOverride();
|
|
|
|
void layoutWidgets();
|
|
|
|
virtual void setSize(const MyGUI::IntSize& _value);
|
|
virtual void setCoord(const MyGUI::IntCoord& _value);
|
|
void setSize(int _width, int _height);
|
|
void setCoord(int _left, int _top, int _width, int _height);
|
|
|
|
void onSelectedItem (MyGUI::Widget* sender);
|
|
void onSelectedBackground (MyGUI::Widget* sender);
|
|
void onMouseWheel(MyGUI::Widget* _sender, int _rel);
|
|
|
|
ItemModel* mModel;
|
|
MyGUI::ScrollView* mScrollView;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|