(svn r6036) -Codechange: do not handle SCROLL in a central function, but let windows handle them theirself. Added WE_SCROLL for this.

This commit is contained in:
truelight
2006-08-21 14:34:59 +00:00
parent 49cdc17103
commit f6b17149c6
4 changed files with 103 additions and 81 deletions

View File

@@ -136,6 +136,11 @@ union WindowEvent {
uint wparam; // additional message-specific information
uint lparam; // additional message-specific information
} message;
struct {
byte event;
Point delta; // delta position against position of last call
} scroll;
};
enum WindowKeyCodes {
@@ -506,7 +511,8 @@ enum WindowEvents {
WE_MOUSEOVER = 20,
WE_ON_EDIT_TEXT_CANCEL = 21,
WE_RESIZE = 22,
WE_MESSAGE = 23
WE_MESSAGE = 23,
WE_SCROLL = 24,
};