Ignore:
Timestamp:
Aug 31, 1999, 12:36:24 PM (26 years ago)
Author:
sandervl
Message:

Added MDI class + ChildWindowFromPointEx by Rene Pronk

File:
1 edited

Legend:

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

    r741 r750  
    1 /* $Id: win32wbase.h,v 1.1 1999-08-30 12:00:12 sandervl Exp $ */
     1/* $Id: win32wbase.h,v 1.2 1999-08-31 10:36:23 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    4949#define WM_WIN32_POSTMESSAGEW   0x4001
    5050
    51 class Win32BaseWindow : public GenericObject, private ChildWindow
     51class Win32BaseWindow : public GenericObject, protected ChildWindow
    5252{
    5353public:
     
    8989
    9090         DWORD  getStyle()                      { return dwStyle; };
     91         void   setStyle(DWORD newstyle)        { dwStyle = newstyle; };
    9192         DWORD  getExStyle()                    { return dwExStyle; };
     93         void   setExStyle(DWORD newexstyle)    { dwExStyle = newexstyle; };
    9294         HWND   getWindowHandle()               { return Win32Hwnd; };
    9395         HWND   getOS2WindowHandle()            { return OS2Hwnd; };
     
    105107         BOOL   isChild();
    106108         PRECT  getClientRect()                 { return &rectClient; };
     109         void   setClientRect(PRECT rect)       { rectClient = *rect; };
    107110         PRECT  getWindowRect()                 { return &rectWindow; };
    108111         void   setClientRect(LONG left, LONG top, LONG right, LONG bottom)
     
    197200        void    Init();
    198201
     202        char   *getWindowNameA()              { return windowNameA; };
     203
    199204        HWND    OS2Hwnd;
    200205        HWND    OS2HwndFrame;
Note: See TracChangeset for help on using the changeset viewer.