Ignore:
Timestamp:
Apr 27, 2001, 7:36:39 PM (24 years ago)
Author:
sandervl
Message:

mouse message translation + dc reset after resize fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/winmouse.cpp

    r5507 r5606  
    1 /* $Id: winmouse.cpp,v 1.13 2001-04-15 09:47:21 sandervl Exp $ */
     1/* $Id: winmouse.cpp,v 1.14 2001-04-27 17:36:39 sandervl Exp $ */
    22/*
    33 * Mouse handler for DINPUT
     
    157157//******************************************************************************
    158158//******************************************************************************
     159UINT WIN32API GetDoubleClickTime(void)
     160{
     161    dprintf(("USER32: GetDoubleClickTime"));
     162    return O32_GetDoubleClickTime();
     163}
     164//******************************************************************************
     165//******************************************************************************
     166BOOL WIN32API SetDoubleClickTime( UINT uInterval)
     167{
     168    dprintf(("USER32: SetDoubleClickTime %d", uInterval));
     169    return O32_SetDoubleClickTime(uInterval);
     170}
     171//******************************************************************************
     172//******************************************************************************
     173BOOL WIN32API SwapMouseButton( BOOL fSwap)
     174{
     175    dprintf(("USER32: SwapMouseButton %d", fSwap));
     176    return O32_SwapMouseButton(fSwap);
     177}
     178/*****************************************************************************
     179 * Name      : VOID WIN32API mouse_event
     180 * Purpose   : The mouse_event function synthesizes mouse motion and button clicks.
     181 * Parameters: DWORD dwFlags     flags specifying various motion/click variants
     182 *             DWORD dx          horizontal mouse position or position change
     183 *             DWORD dy          vertical mouse position or position change
     184 *             DWORD cButtons    unused, reserved for future use, set to zero
     185 *             DWORD dwExtraInfo 32 bits of application-defined information
     186 * Variables :
     187 * Result    :
     188 * Remark    :
     189 * Status    : UNTESTED STUB
     190 *
     191 * Author    : Patrick Haller [Thu, 1998/02/26 11:55]
     192 *****************************************************************************/
     193VOID WIN32API mouse_event(DWORD dwFlags, DWORD dx, DWORD dy, DWORD cButtons,
     194                          DWORD dwExtraInfo)
     195{
     196  dprintf(("USER32:mouse_event (%08xh,%u,%u,%u,%08x) not implemented",
     197          dwFlags, dx, dy, cButtons, dwExtraInfo));
     198}
     199/*****************************************************************************
     200 * Name      : BOOL WIN32API DragDetect
     201 * Purpose   : The DragDetect function captures the mouse and tracks its movement
     202 * Parameters: HWND  hwnd
     203 *             POINT pt
     204 * Variables :
     205 * Result    : If the user moved the mouse outside of the drag rectangle while
     206 *               holding the left button down, the return value is TRUE.
     207 *             If the user did not move the mouse outside of the drag rectangle
     208 *               while holding the left button down, the return value is FALSE.
     209 * Remark    :
     210 * Status    : UNTESTED STUB
     211 *
     212 * Author    : Patrick Haller [Thu, 1998/02/26 11:55]
     213 *****************************************************************************/
     214BOOL WIN32API DragDetect(HWND  hwnd,
     215                            POINT pt)
     216{
     217  dprintf(("USER32:DragDetect(%08xh,...) not implemented", hwnd));
     218
     219  return (FALSE);
     220}
     221//******************************************************************************
     222//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.