mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 03:39:14 +00:00
27 lines
643 B
C++
27 lines
643 B
C++
#include "container.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
|
|
class ItemSelectionDialog : public ContainerBase, public WindowModal
|
|
{
|
|
public:
|
|
ItemSelectionDialog(const std::string& label, int filter);
|
|
|
|
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);
|
|
};
|
|
|
|
}
|