mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
CtrlCore: Horizontal mouse wheel support using MouseWheelHor() (#192)
This commit is contained in:
parent
09960b1056
commit
e3e7f75e98
4 changed files with 44 additions and 14 deletions
|
|
@ -882,6 +882,7 @@ public:
|
|||
MOUSELEAVE = 0x30,
|
||||
CURSORIMAGE = 0x40,
|
||||
MOUSEWHEEL = 0x50,
|
||||
MOUSEHWHEEL = 0x60,
|
||||
|
||||
DOWN = 0x80,
|
||||
UP = 0x90,
|
||||
|
|
@ -987,6 +988,7 @@ public:
|
|||
virtual void MiddleHold(Point p, dword keyflags);
|
||||
virtual void MiddleUp(Point p, dword keyflags);
|
||||
virtual void MouseWheel(Point p, int zdelta, dword keyflags);
|
||||
virtual void MouseWheelHor(Point p, int zdelta, dword keyflags);
|
||||
virtual void MouseLeave();
|
||||
|
||||
virtual void Pen(Point p, const PenInfo& pen, dword keyflags);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue