Ignore:
Timestamp:
Dec 19, 1999, 6:46:26 PM (26 years ago)
Author:
cbratschi
Message:

removed CS_SIZEREDRAW

File:
1 edited

Legend:

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

    r2084 r2140  
    1 /* $Id: win32wbase.h,v 1.54 1999-12-16 00:11:47 sandervl Exp $ */
     1/* $Id: win32wbase.h,v 1.55 1999-12-19 17:46:26 cbratschi Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    4747        ULONG           wParam;
    4848        ULONG           lParam;
    49         ULONG           fUnicode;
     49        ULONG           fUnicode;
    5050} POSTMSG_PACKET;
    5151
    52 #define BROADCAST_SEND          0
    53 #define BROADCAST_POST          1
     52#define BROADCAST_SEND          0
     53#define BROADCAST_POST          1
    5454
    5555class Win32BaseWindow : public GenericObject, public ChildWindow
     
    9595         char  *MsgGetText();
    9696         ULONG  MsgContextMenu(ULONG x,ULONG y);
    97         void   MsgInitMenu(HWND hMenu);
     97        void   MsgInitMenu(HWND hMenu);
    9898         VOID   updateWindowStyle(DWORD oldExStyle,DWORD oldStyle);
    9999
     
    119119virtual  BOOL   isMDIChild();
    120120
    121         BOOL   fHasParentDC()                  { return fParentDC; };
     121        BOOL   fHasParentDC()                  { return fParentDC; };
    122122
    123123Win32BaseWindow *getParent();
     
    181181         HWND   getOS2HwndModalDialog()       { return OS2HwndModalDialog; };
    182182         BOOL   CanReceiveSizeMsgs()          { return !fNoSizeMsg; };
     183         BOOL   InMovingChildren()            { return fMovingChildren; };
     184         VOID   setMovingChildren(BOOL fMC)   { fMovingChildren = fMC; };
    183185         BOOL   IsWindowDestroyed()           { return fIsDestroyed; };
    184186         BOOL   IsWindowEnabled();
    185187         BOOL   IsWindowVisible();
    186         //Created with CreateWindowExA or ExW
    187 //         BOOL   IsUnicode()                   { return isUnicode; };
    188         //Window procedure type
    189          BOOL   IsWindowUnicode();     
     188        //Created with CreateWindowExA or ExW
     189//         BOOL   IsUnicode()                   { return isUnicode; };
     190        //Window procedure type
     191         BOOL   IsWindowUnicode();
    190192
    191193         BOOL   GetWindowRect(PRECT pRect);
     
    232234
    233235           BOOL EnumChildWindows(WNDENUMPROC lpfn, LPARAM lParam);
    234            BOOL EnumThreadWindows(DWORD dwThreadId, WNDENUMPROC lpfn, LPARAM lParam);
    235            BOOL EnumWindows(WNDENUMPROC lpfn, LPARAM lParam);
     236           BOOL EnumThreadWindows(DWORD dwThreadId, WNDENUMPROC lpfn, LPARAM lParam);
     237           BOOL EnumWindows(WNDENUMPROC lpfn, LPARAM lParam);
    236238
    237239         HWND   getNextDlgTabItem(HWND hwndCtrl, BOOL fPrevious);
     
    302304                                        //sent by PM and those sent by apps
    303305        BOOL    fNoSizeMsg;
     306        BOOL    fMovingChildren;
    304307        BOOL    fIsDestroyed;
    305308        BOOL    fDestroyWindowCalled;   //DestroyWindow was called for this window
    306309        BOOL    fCreated;
    307         BOOL    fTaskList;              //should be listed in PM tasklist or not
    308         BOOL    fParentDC;
    309 
    310         DWORD   dwThreadId;             //id of thread that created this window
    311         DWORD   dwProcessId;            //id of process that created this window
     310        BOOL    fTaskList;              //should be listed in PM tasklist or not
     311        BOOL    fParentDC;
     312
     313        DWORD   dwThreadId;             //id of thread that created this window
     314        DWORD   dwProcessId;            //id of process that created this window
    312315        PVOID   pOldFrameProc;
    313316        ULONG   borderWidth;
Note: See TracChangeset for help on using the changeset viewer.