Ignore:
Timestamp:
Dec 29, 1999, 11:54:04 PM (26 years ago)
Author:
cbratschi
Message:

new mapping functions, fixed 1 pixel and window handle bugs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.h

    r2250 r2257  
    1 /* $Id: win32wbase.h,v 1.59 1999-12-29 14:37:18 sandervl Exp $ */
     1/* $Id: win32wbase.h,v 1.60 1999-12-29 22:54:03 cbratschi Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    8080         ULONG  MsgPaint(ULONG tmp1, BOOL select = TRUE);
    8181         ULONG  MsgEraseBackGround(HDC hdc);
    82         ULONG  MsgInitMenu(MSG *msg);
    83         ULONG  MsgHitTest(MSG *msg);
     82        ULONG  MsgInitMenu(MSG *msg);
     83        ULONG  MsgHitTest(MSG *msg);
    8484         ULONG  MsgNCPaint();
    85         ULONG  DispatchMsgA(MSG *msg);
    86         ULONG  DispatchMsgW(MSG *msg);
     85        ULONG  DispatchMsgA(MSG *msg);
     86        ULONG  DispatchMsgW(MSG *msg);
    8787
    8888         ULONG  MsgSetText(LPSTR lpsz, LONG cch);
     
    124124        DWORD   getWindowId()                   { return windowId; };
    125125         void   setWindowId(DWORD id);
    126          ULONG  getWindowHeight()               { return rectClient.bottom - rectClient.top; };
    127          ULONG  getWindowWidth()                { return rectClient.right - rectClient.left; };
     126         ULONG  getWindowHeight()               { return rectWindow.bottom - rectWindow.top; };
     127         ULONG  getWindowWidth()                { return rectWindow.right - rectWindow.left; };
     128         ULONG  getClientHeight()               { return rectClient.bottom - rectClient.top; };
     129         ULONG  getClientWidth()                { return rectClient.right - rectClient.left; };
    128130         BOOL   isChild();
    129131         PRECT  getClientRect()                 { return &rectClient; };
Note: See TracChangeset for help on using the changeset viewer.