1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00
OpenMW/apps/openmw/mwgui/itemselection.hpp
2022-09-22 21:35:26 +03:00

47 lines
985 B
C++

#ifndef OPENMW_GAME_MWGUI_ITEMSELECTION_H
#define OPENMW_GAME_MWGUI_ITEMSELECTION_H
#include <MyGUI_Delegate.h>
#include "windowbase.hpp"
namespace MWWorld
{
class Ptr;
}
namespace MWGui
{
class ItemView;
class SortFilterItemModel;
class ItemSelectionDialog : public WindowModal
{
public:
ItemSelectionDialog(const std::string& label);
bool exit() override;
typedef MyGUI::delegates::CMultiDelegate0 EventHandle_Void;
typedef MyGUI::delegates::CMultiDelegate1<MWWorld::Ptr> EventHandle_Item;
EventHandle_Item eventItemSelected;
EventHandle_Void eventDialogCanceled;
void openContainer(const MWWorld::Ptr& container);
void setCategory(int category);
void setFilter(int filter);
private:
ItemView* mItemView;
SortFilterItemModel* mSortModel;
void onSelectedItem(int index);
void onCancelButtonClicked(MyGUI::Widget* sender);
};
}
#endif