Changeset 944 for trunk/src


Ignore:
Timestamp:
Sep 15, 1999, 8:03:46 PM (26 years ago)
Author:
dengert
Message:

Preparations for new RedrawWindow et.al.

Location:
trunk/src/user32/new
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/win32wbase.cpp

    r926 r944  
    1 /* $Id: win32wbase.cpp,v 1.15 1999-09-13 19:18:23 dengert Exp $ */
     1/* $Id: win32wbase.cpp,v 1.16 1999-09-15 18:03:46 dengert Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    10021002//******************************************************************************
    10031003//******************************************************************************
    1004 ULONG Win32BaseWindow::MsgPaint(ULONG tmp1, ULONG tmp2)
    1005 {
    1006     return SendInternalMessageA(WM_PAINT, 0, 0);
     1004ULONG Win32BaseWindow::MsgPaint(ULONG tmp1, BOOL select)
     1005{
     1006    if (select && isIcon)
     1007        return SendInternalMessageA(WM_PAINTICON, 0, 0);
     1008    else
     1009        return SendInternalMessageA(WM_PAINT, 0, 0);
    10071010}
    10081011//******************************************************************************
  • trunk/src/user32/new/win32wbase.h

    r896 r944  
    1 /* $Id: win32wbase.h,v 1.10 1999-09-09 18:08:19 dengert Exp $ */
     1/* $Id: win32wbase.h,v 1.11 1999-09-15 18:03:46 dengert Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    7979         ULONG  MsgButton(ULONG msg, ULONG ncx, ULONG ncy, ULONG clx, ULONG cly);
    8080         ULONG  MsgMouseMove(ULONG keystate, ULONG x, ULONG y);
    81          ULONG  MsgPaint(ULONG tmp1, ULONG tmp2);
     81         ULONG  MsgPaint(ULONG tmp1, BOOL select = TRUE);
    8282         ULONG  MsgEraseBackGround(HDC hdc);
    8383         ULONG  MsgSetText(LPSTR lpsz, LONG cch);
Note: See TracChangeset for help on using the changeset viewer.