Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
72dcd5c8
Commit
72dcd5c8
authored
Oct 11, 1998
by
Ulrich Weigand
Committed by
Alexandre Julliard
Oct 11, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MOUSE.DRV routines moved to event.c. Call mouse event procedure.
parent
d4663668
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
112 additions
and
45 deletions
+112
-45
event.c
windows/event.c
+112
-0
keyboard.c
windows/keyboard.c
+0
-45
No files found.
windows/event.c
View file @
72dcd5c8
...
...
@@ -39,6 +39,7 @@
#include "debug.h"
#include "dde_proc.h"
#include "winsock.h"
#include "callback.h"
#define NB_BUTTONS 3
/* Windows can handle 3 buttons */
...
...
@@ -106,6 +107,9 @@ static void EVENT_MapNotify( HWND32 hwnd, XMapEvent *event );
static void EVENT_EnterNotify( WND *pWnd, XCrossingEvent *event );
*/
static
void
EVENT_SendMouseEvent
(
WORD
mouseStatus
,
WORD
deltaX
,
WORD
deltaY
,
WORD
buttonCount
,
DWORD
extraInfo
);
/***********************************************************************
* EVENT_Init
*
...
...
@@ -652,6 +656,11 @@ static void EVENT_MotionNotify( WND *pWnd, XMotionEvent *event )
pWnd
->
rectWindow
.
left
+
event
->
x
,
pWnd
->
rectWindow
.
top
+
event
->
y
,
event
->
time
-
MSG_WineStartTicks
,
pWnd
->
hwndSelf
);
EVENT_SendMouseEvent
(
ME_MOVE
,
pWnd
->
rectWindow
.
left
+
event
->
x
,
pWnd
->
rectWindow
.
top
+
event
->
y
,
0
,
0
);
}
...
...
@@ -682,6 +691,8 @@ static void EVENT_ButtonPress( WND *pWnd, XButtonEvent *event )
{
static
WORD
messages
[
NB_BUTTONS
]
=
{
WM_LBUTTONDOWN
,
WM_MBUTTONDOWN
,
WM_RBUTTONDOWN
};
static
WORD
statusCodes
[
NB_BUTTONS
]
=
{
ME_LDOWN
,
0
,
ME_RDOWN
};
int
buttonNum
=
event
->
button
-
1
;
if
(
buttonNum
>=
NB_BUTTONS
)
return
;
...
...
@@ -693,6 +704,11 @@ static void EVENT_ButtonPress( WND *pWnd, XButtonEvent *event )
pWnd
->
rectWindow
.
left
+
event
->
x
,
pWnd
->
rectWindow
.
top
+
event
->
y
,
event
->
time
-
MSG_WineStartTicks
,
pWnd
->
hwndSelf
);
EVENT_SendMouseEvent
(
statusCodes
[
buttonNum
],
pWnd
->
rectWindow
.
left
+
event
->
x
,
pWnd
->
rectWindow
.
top
+
event
->
y
,
0
,
0
);
}
...
...
@@ -703,6 +719,8 @@ static void EVENT_ButtonRelease( WND *pWnd, XButtonEvent *event )
{
static
const
WORD
messages
[
NB_BUTTONS
]
=
{
WM_LBUTTONUP
,
WM_MBUTTONUP
,
WM_RBUTTONUP
};
static
WORD
statusCodes
[
NB_BUTTONS
]
=
{
ME_LUP
,
0
,
ME_RUP
};
int
buttonNum
=
event
->
button
-
1
;
if
(
buttonNum
>=
NB_BUTTONS
)
return
;
...
...
@@ -713,6 +731,11 @@ static void EVENT_ButtonRelease( WND *pWnd, XButtonEvent *event )
pWnd
->
rectWindow
.
left
+
event
->
x
,
pWnd
->
rectWindow
.
top
+
event
->
y
,
event
->
time
-
MSG_WineStartTicks
,
pWnd
->
hwndSelf
);
EVENT_SendMouseEvent
(
statusCodes
[
buttonNum
],
pWnd
->
rectWindow
.
left
+
event
->
x
,
pWnd
->
rectWindow
.
top
+
event
->
y
,
0
,
0
);
}
...
...
@@ -1218,6 +1241,95 @@ HWND32 WINAPI GetCapture32(void)
}
/***********************************************************************
* Mouse driver routines:
*/
#pragma pack(1)
typedef
struct
_MOUSEINFO
{
BYTE
msExist
;
BYTE
msRelative
;
WORD
msNumButtons
;
WORD
msRate
;
WORD
msXThreshold
;
WORD
msYThreshold
;
WORD
msXRes
;
WORD
msYRes
;
WORD
msMouseCommPort
;
}
MOUSEINFO
;
#pragma pack(4)
static
SEGPTR
MouseEventProc
=
0
;
/***********************************************************************
* MouseInquire (MOUSE.1)
*/
WORD
WINAPI
MouseInquire
(
MOUSEINFO
*
mouseInfo
)
{
mouseInfo
->
msExist
=
TRUE
;
mouseInfo
->
msRelative
=
FALSE
;
mouseInfo
->
msNumButtons
=
2
;
mouseInfo
->
msRate
=
34
;
/* the DDK says so ... */
mouseInfo
->
msXThreshold
=
0
;
mouseInfo
->
msYThreshold
=
0
;
mouseInfo
->
msXRes
=
0
;
mouseInfo
->
msYRes
=
0
;
mouseInfo
->
msMouseCommPort
=
0
;
return
sizeof
(
MOUSEINFO
);
}
/***********************************************************************
* MouseEnable (MOUSE.2)
*/
VOID
WINAPI
MouseEnable
(
SEGPTR
eventProc
)
{
MouseEventProc
=
eventProc
;
}
/***********************************************************************
* MouseDisable (MOUSE.3)
*/
VOID
WINAPI
MouseDisable
(
VOID
)
{
MouseEventProc
=
0
;
}
/***********************************************************************
* EVENT_SendMouseEvent
*/
static
void
EVENT_SendMouseEvent
(
WORD
mouseStatus
,
WORD
deltaX
,
WORD
deltaY
,
WORD
buttonCount
,
DWORD
extraInfo
)
{
CONTEXT
context
;
if
(
!
MouseEventProc
)
return
;
TRACE
(
keyboard
,
"(%04X,%d,%d,%d,%ld)
\n
"
,
mouseStatus
,
deltaX
,
deltaY
,
buttonCount
,
extraInfo
);
mouseStatus
|=
0x8000
;
deltaX
=
(((
long
)
deltaX
<<
16
)
+
screenWidth
/
2
)
/
screenWidth
;
deltaY
=
(((
long
)
deltaY
<<
16
)
+
screenHeight
/
2
)
/
screenHeight
;
memset
(
&
context
,
0
,
sizeof
(
context
)
);
CS_reg
(
&
context
)
=
SELECTOROF
(
MouseEventProc
);
EIP_reg
(
&
context
)
=
OFFSETOF
(
MouseEventProc
);
EAX_reg
(
&
context
)
=
mouseStatus
;
EBX_reg
(
&
context
)
=
deltaX
;
ECX_reg
(
&
context
)
=
deltaY
;
EDX_reg
(
&
context
)
=
buttonCount
;
ESI_reg
(
&
context
)
=
LOWORD
(
extraInfo
);
EDI_reg
(
&
context
)
=
HIWORD
(
extraInfo
);
Callbacks
->
CallRegisterShortProc
(
&
context
,
0
);
}
/***********************************************************************
* GetMouseEventProc (USER.337)
*/
...
...
windows/keyboard.c
View file @
72dcd5c8
...
...
@@ -1482,51 +1482,6 @@ VOID WINAPI KeyboardDisable(VOID)
FIXME
(
keyboard
,
"(): stub
\n
"
);
}
/***********************************************************************
* MouseInquire (MOUSE.1)
*/
#pragma pack(1)
typedef
struct
_MOUSEINFO
{
BYTE
msExist
;
BYTE
msRelative
;
WORD
msNumButtons
;
WORD
msRate
;
WORD
msXThreshold
;
WORD
msYThreshold
;
WORD
msXRes
;
WORD
msYRes
;
WORD
msMouseCommPort
;
}
MOUSEINFO
;
#pragma pack(4)
WORD
WINAPI
MouseInquire
(
MOUSEINFO
*
mouseInfo
)
{
mouseInfo
->
msExist
=
TRUE
;
mouseInfo
->
msRelative
=
FALSE
;
mouseInfo
->
msNumButtons
=
2
;
mouseInfo
->
msRate
=
34
;
/* the DDK says so ... */
mouseInfo
->
msMouseCommPort
=
0
;
return
sizeof
(
MOUSEINFO
);
}
/***********************************************************************
* MouseEnable (MOUSE.2)
*/
VOID
WINAPI
MouseEnable
(
FARPROC16
eventProc
)
{
FIXME
(
keyboard
,
"(%08lx): stub
\n
"
,
(
DWORD
)
eventProc
);
}
/***********************************************************************
* MouseDisable (MOUSE.3)
*/
VOID
WINAPI
MouseDisable
(
VOID
)
{
FIXME
(
keyboard
,
"(): stub
\n
"
);
}
/***********************************************************************
* DisplayInquire (DISPLAY.101)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment