Changeset 1525 for trunk/src/user32/win32wbase.h
- Timestamp:
- Oct 30, 1999, 8:40:49 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.h
r1490 r1525 1 /* $Id: win32wbase.h,v 1.3 5 1999-10-28 12:00:35 sandervlExp $ */1 /* $Id: win32wbase.h,v 1.36 1999-10-30 18:40:48 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 148 148 BOOL ShowWindow(ULONG nCmdShow); 149 149 BOOL SetWindowPos(HWND hwndInsertAfter, int x, int y, int cx, int cy, UINT fuFlags); 150 150 BOOL SetWindowPlacement(WINDOWPLACEMENT *winpos); 151 151 BOOL DestroyWindow(); 152 152 HWND SetActiveWindow(); … … 218 218 ULONG getBorderHeight() { return borderHeight; }; 219 219 220 static 221 static 222 static 220 static void NC_AdjustRectInner(LPRECT rect, DWORD style, DWORD exStyle); 221 static void NC_AdjustRectOuter(LPRECT rect, DWORD style, BOOL menu, DWORD exStyle); 222 static BOOL WindowNeedsWMBorder( DWORD style, DWORD exStyle ); 223 223 224 224 PVOID getOldWndProc() { return pOldWndProc; } … … 303 303 #ifndef OS2_INCLUDED 304 304 void GetMinMaxInfo(POINT *maxSize, POINT *maxPos, POINT *minTrack, POINT *maxTrack ); 305 305 LONG HandleWindowPosChanging(WINDOWPOS *winpos); 306 306 LONG HandleSysCommand(WPARAM wParam, POINT *pt32); 307 307 … … 345 345 BOOL isPSErase() { return EraseBkgndFlag | PSEraseFlag; } 346 346 BOOL isSupressErase() { return SupressEraseFlag; } 347 348 protected: 349 BOOL DIALOG_Init(void); 350 BOOL getCharSizeFromDC( HDC hDC, HFONT hFont, SIZE * pSize ); 351 BOOL getCharSize( HFONT hFont, SIZE * pSize); 352 353 public: 354 HWND getNextDlgTabItem(HWND hwndCtrl, BOOL fPrevious); 355 HWND getNextDlgGroupItem(HWND hwndCtrl, BOOL fPrevious); 356 357 BOOL MapDialogRect(LPRECT rect); 358 359 static ULONG GetDialogBaseUnits() { return MAKELONG(xBaseUnit, yBaseUnit); }; 360 static int getXBaseUnit() { return xBaseUnit; } 361 static int getYBaseUnit() { return yBaseUnit; } 362 363 private: 364 static BOOL fInitialized; 365 static int xBaseUnit; 366 static int yBaseUnit; 347 367 }; 348 368
Note:
See TracChangeset
for help on using the changeset viewer.