Changeset 2204 for trunk/src/user32/win32wbase.h
- Timestamp:
- Dec 26, 1999, 6:30:20 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r2202 r2204 1 /* $Id: win32wbase.h,v 1.5 7 1999-12-24 21:44:04 sandervlExp $ */1 /* $Id: win32wbase.h,v 1.58 1999-12-26 17:30:19 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 103 103 HWND getOS2FrameWindowHandle() { return OS2HwndFrame; }; 104 104 Win32WndClass *getWindowClass() { return windowClass; }; 105 106 BOOL getIgnoreHitTest() { return fIgnoreHitTest; } 107 VOID setIgnoreHitTest(BOOL ignore) { fIgnoreHitTest = ignore; } 105 108 106 109 DWORD getWindowContextHelpId() { return contextHelpId; }; … … 173 176 HWND getOS2HwndModalDialog() { return OS2HwndModalDialog; }; 174 177 BOOL CanReceiveSizeMsgs() { return !fNoSizeMsg; }; 175 BOOL InMovingChildren() { return fMovingChildren; };176 VOID setMovingChildren(BOOL fMC) { fMovingChildren = fMC; };177 178 BOOL IsWindowDestroyed() { return fIsDestroyed; }; 178 179 BOOL IsWindowEnabled(); … … 217 218 218 219 LRESULT DefWndControlColor(UINT ctlType, HDC hdc); 220 LRESULT DefWndPrint(HDC hdc,ULONG uFlags); 219 221 220 222 void NotifyParent(UINT Msg, WPARAM wParam, LPARAM lParam); … … 286 288 DWORD contextHelpId; 287 289 LONG lastHitTestVal; //Last value returned by WM_NCHITTEST handler 290 BOOL fIgnoreHitTest; //Use WinWindowFromPoint during WM_HITTEST 288 291 289 292 BOOL isIcon; … … 296 299 //sent by PM and those sent by apps 297 300 BOOL fNoSizeMsg; 298 BOOL fMovingChildren;299 301 BOOL fIsDestroyed; 300 302 BOOL fDestroyWindowCalled; //DestroyWindow was called for this window … … 343 345 void GetMinMaxInfo(POINT *maxSize, POINT *maxPos, POINT *minTrack, POINT *maxTrack ); 344 346 LONG HandleWindowPosChanging(WINDOWPOS *winpos); 347 LONG HandleNCLButtonDown(WPARAM wParam,LPARAM lParam); 348 LONG HandleNCLButtonUp(WPARAM wParam,LPARAM lParam); 349 LONG HandleNCLButtonDblClk(WPARAM wParam,LPARAM lParam); 345 350 LONG HandleSysCommand(WPARAM wParam, POINT *pt32); 346 351
Note:
See TracChangeset
for help on using the changeset viewer.