mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
27 lines
436 B
C++
27 lines
436 B
C++
#ifndef OENGINE_MYGUI_EVENTS_H
|
|
#define OENGINE_MYGUI_EVENTS_H
|
|
|
|
#include <mangle/input/event.hpp>
|
|
|
|
namespace MyGUI
|
|
{
|
|
class Gui;
|
|
}
|
|
|
|
namespace GUI
|
|
{
|
|
/** Event handler that injects OIS events into MyGUI
|
|
*/
|
|
class EventInjector : Mangle::Input::Event
|
|
{
|
|
MyGUI::Gui *gui;
|
|
|
|
public:
|
|
bool enabled;
|
|
|
|
EventInjector(MyGUI::Gui *g) : gui(g), enabled(true) {}
|
|
void event(Type type, int index, const void *p);
|
|
};
|
|
}
|
|
#endif
|