AlpacaLibrary/Include/Core/JavaClass/MouseWheelEvent.hpp

19 lines
633 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef MOUSEWHEELEVENT_HPP_INCLUDED
#define MOUSEWHEELEVENT_HPP_INCLUDED
#include <cstdint>
#include "Object.hpp"
class MouseWheelEvent : public Object
{
public:
MouseWheelEvent();
MouseWheelEvent(void* Object);
MouseWheelEvent(const MouseWheelEvent& M);
MouseWheelEvent(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 ScrollType, std::int32_t ScrollAmount, std::int32_t WheelRotation);
};
#endif // MOUSEWHEELEVENT_HPP_INCLUDED