mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 06:49:55 +00:00
28 lines
733 B
C++
28 lines
733 B
C++
#include "container.hpp"
|
|
|
|
#include "../mwworld/ptr.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
|
|
class ItemSelectionDialog : public ContainerBase, public WindowModal
|
|
{
|
|
public:
|
|
ItemSelectionDialog(const std::string& label, ContainerBase::Filter filter, MWBase::WindowManager& parWindowManager);
|
|
|
|
typedef MyGUI::delegates::CMultiDelegate0 EventHandle_Void;
|
|
typedef MyGUI::delegates::CMultiDelegate1<MWWorld::Ptr> EventHandle_Item;
|
|
|
|
EventHandle_Item eventItemSelected;
|
|
EventHandle_Void eventDialogCanceled;
|
|
|
|
|
|
private:
|
|
virtual void onReferenceUnavailable() { ; }
|
|
|
|
virtual void onSelectedItemImpl(MWWorld::Ptr item);
|
|
|
|
void onCancelButtonClicked(MyGUI::Widget* sender);
|
|
};
|
|
|
|
}
|