Changeset 1511 for trunk/src/user32/pmframe.cpp
- Timestamp:
- Oct 29, 1999, 6:06:56 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmframe.cpp
r1490 r1511 1 /* $Id: pmframe.cpp,v 1.1 2 1999-10-28 12:00:34 sandervlExp $ */1 /* $Id: pmframe.cpp,v 1.13 1999-10-29 16:06:55 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Frame Managment Code for OS/2 … … 67 67 DWORD dwStyle = win32wnd->getStyle(); 68 68 69 //CB: todo: switch to RGB mode and use win colors 69 70 clrWhite = CLR_WHITE; 70 71 clrBlack = CLR_BLACK; … … 144 145 INT x; 145 146 147 //CB: todo: switch to RGB mode and use win colors 146 148 WinFillRect(hps,&rect,SYSCLR_DIALOGBACKGROUND); 147 149 p1.x = rect.xRight-2; … … 198 200 WinReleasePS(hps); 199 201 } 202 } 203 //****************************************************************************** 204 //****************************************************************************** 205 void FrameTrackFrame(Win32BaseWindow *win32wnd,BOOL lefttop) 206 { 207 INT flags = lefttop ? (TF_LEFT | TF_TOP):(TF_RIGHT | TF_BOTTOM); 208 209 WinSendMsg(win32wnd->getOS2FrameWindowHandle(),WM_TRACKFRAME,(MPARAM)flags,(MPARAM)0); 200 210 } 201 211 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.