Changeset 2140 for trunk/src/user32/win32wbase.h
- Timestamp:
- Dec 19, 1999, 6:46:26 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r2084 r2140 1 /* $Id: win32wbase.h,v 1.5 4 1999-12-16 00:11:47 sandervlExp $ */1 /* $Id: win32wbase.h,v 1.55 1999-12-19 17:46:26 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 47 47 ULONG wParam; 48 48 ULONG lParam; 49 49 ULONG fUnicode; 50 50 } POSTMSG_PACKET; 51 51 52 #define BROADCAST_SEND 53 #define BROADCAST_POST 52 #define BROADCAST_SEND 0 53 #define BROADCAST_POST 1 54 54 55 55 class Win32BaseWindow : public GenericObject, public ChildWindow … … 95 95 char *MsgGetText(); 96 96 ULONG MsgContextMenu(ULONG x,ULONG y); 97 97 void MsgInitMenu(HWND hMenu); 98 98 VOID updateWindowStyle(DWORD oldExStyle,DWORD oldStyle); 99 99 … … 119 119 virtual BOOL isMDIChild(); 120 120 121 121 BOOL fHasParentDC() { return fParentDC; }; 122 122 123 123 Win32BaseWindow *getParent(); … … 181 181 HWND getOS2HwndModalDialog() { return OS2HwndModalDialog; }; 182 182 BOOL CanReceiveSizeMsgs() { return !fNoSizeMsg; }; 183 BOOL InMovingChildren() { return fMovingChildren; }; 184 VOID setMovingChildren(BOOL fMC) { fMovingChildren = fMC; }; 183 185 BOOL IsWindowDestroyed() { return fIsDestroyed; }; 184 186 BOOL IsWindowEnabled(); 185 187 BOOL IsWindowVisible(); 186 187 // BOOL IsUnicode() 188 189 BOOL IsWindowUnicode(); 188 //Created with CreateWindowExA or ExW 189 // BOOL IsUnicode() { return isUnicode; }; 190 //Window procedure type 191 BOOL IsWindowUnicode(); 190 192 191 193 BOOL GetWindowRect(PRECT pRect); … … 232 234 233 235 BOOL EnumChildWindows(WNDENUMPROC lpfn, LPARAM lParam); 234 235 236 BOOL EnumThreadWindows(DWORD dwThreadId, WNDENUMPROC lpfn, LPARAM lParam); 237 BOOL EnumWindows(WNDENUMPROC lpfn, LPARAM lParam); 236 238 237 239 HWND getNextDlgTabItem(HWND hwndCtrl, BOOL fPrevious); … … 302 304 //sent by PM and those sent by apps 303 305 BOOL fNoSizeMsg; 306 BOOL fMovingChildren; 304 307 BOOL fIsDestroyed; 305 308 BOOL fDestroyWindowCalled; //DestroyWindow was called for this window 306 309 BOOL fCreated; 307 BOOL fTaskList;//should be listed in PM tasklist or not308 309 310 DWORD dwThreadId;//id of thread that created this window311 DWORD dwProcessId;//id of process that created this window310 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 312 315 PVOID pOldFrameProc; 313 316 ULONG borderWidth;
Note:
See TracChangeset
for help on using the changeset viewer.