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/user32.cpp

    r5509 r5606  
    1 /* $Id: user32.cpp,v 1.96 2001-04-15 14:29:48 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.97 2001-04-27 17:36:38 sandervl Exp $ */
    22
    33/*
     
    327327/* Mouse Input Functions */
    328328
    329 /*****************************************************************************
    330  * Name      : BOOL WIN32API DragDetect
    331  * Purpose   : The DragDetect function captures the mouse and tracks its movement
    332  * Parameters: HWND  hwnd
    333  *             POINT pt
    334  * Variables :
    335  * Result    : If the user moved the mouse outside of the drag rectangle while
    336  *               holding the left button down, the return value is TRUE.
    337  *             If the user did not move the mouse outside of the drag rectangle
    338  *               while holding the left button down, the return value is FALSE.
    339  * Remark    :
    340  * Status    : UNTESTED STUB
    341  *
    342  * Author    : Patrick Haller [Thu, 1998/02/26 11:55]
    343  *****************************************************************************/
    344 BOOL WIN32API DragDetect(HWND  hwnd,
    345                             POINT pt)
    346 {
    347   dprintf(("USER32:DragDetect(%08xh,...) not implemented.\n",
    348          hwnd));
    349 
    350   return (FALSE);
    351 }
    352 //******************************************************************************
    353 //******************************************************************************
    354 UINT WIN32API GetDoubleClickTime(void)
    355 {
    356     dprintf(("USER32:  GetDoubleClickTime\n"));
    357     return O32_GetDoubleClickTime();
    358 }
    359 /*****************************************************************************
    360  * Name      : VOID WIN32API mouse_event
    361  * Purpose   : The mouse_event function synthesizes mouse motion and button clicks.
    362  * Parameters: DWORD dwFlags     flags specifying various motion/click variants
    363  *             DWORD dx          horizontal mouse position or position change
    364  *             DWORD dy          vertical mouse position or position change
    365  *             DWORD cButtons    unused, reserved for future use, set to zero
    366  *             DWORD dwExtraInfo 32 bits of application-defined information
    367  * Variables :
    368  * Result    :
    369  * Remark    :
    370  * Status    : UNTESTED STUB
    371  *
    372  * Author    : Patrick Haller [Thu, 1998/02/26 11:55]
    373  *****************************************************************************/
    374 VOID WIN32API mouse_event(DWORD dwFlags,
    375                              DWORD dx,
    376                              DWORD dy,
    377                              DWORD cButtons,
    378                              DWORD dwExtraInfo)
    379 {
    380   dprintf(("USER32:mouse_event (%08xh,%u,%u,%u,%08x) not implemented.\n",
    381           dwFlags,
    382           dx,
    383           dy,
    384           cButtons,
    385           dwExtraInfo));
    386 }
    387 //******************************************************************************
    388 //******************************************************************************
    389 BOOL WIN32API SetDoubleClickTime( UINT uInterval)
    390 {
    391     dprintf(("USER32:  SetDoubleClickTime\n"));
    392     return O32_SetDoubleClickTime(uInterval);
    393 }
    394 //******************************************************************************
    395 //******************************************************************************
    396 BOOL WIN32API SwapMouseButton( BOOL fSwap)
    397 {
    398     dprintf(("USER32:  SwapMouseButton\n"));
    399     return O32_SwapMouseButton(fSwap);
    400 }
    401 
    402329/* Error Functions */
    403330
Note: See TracChangeset for help on using the changeset viewer.