AlpacaLibrary/Include/Core/JavaClass/MouseEvent.hpp

26 lines
794 B
C++
Raw Permalink Normal View History

2017-12-25 23:49:48 +00:00
#ifndef MOUSEEVENT_HPP_INCLUDED
#define MOUSEEVENT_HPP_INCLUDED
#include <cstdint>
#include "Object.hpp"
2018-12-27 18:17:09 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-12-27 18:17:09 +00:00
class MouseEvent : public Object
{
public:
MouseEvent(const void* Object);
MouseEvent(Object Source, std::int32_t ID, std::int64_t When, std::int32_t Modifiers,
std::int32_t X, std::int32_t Y, std::int32_t ClickCount, bool PopupTrigger,
std::int32_t Button);
MouseEvent() = default;
MouseEvent(MouseEvent&& Obj) = default;
MouseEvent(const MouseEvent& Obj) = default;
MouseEvent& operator=(MouseEvent&& Obj) = default;
MouseEvent& operator=(const MouseEvent& Obj) = default;
};
}
2017-12-25 23:49:48 +00:00
#endif // MOUSEEVENT_HPP_INCLUDED