Changeset 996 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Sep 21, 1999, 10:24:05 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r992 r996 1 /* $Id: win32wbase.cpp,v 1. 4 1999-09-20 19:17:58sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.5 1999-09-21 08:24:05 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 801 801 802 802 return SendInternalMessageA(WM_MOVE, 0, MAKELONG((USHORT)x, (USHORT)y)); 803 } 804 //****************************************************************************** 805 //****************************************************************************** 806 ULONG Win32BaseWindow::MsgTimer(ULONG TimerID) 807 { 808 // TODO: call TIMERPROC if not NULL 809 return SendInternalMessageA(WM_TIMER, TimerID, 0); 803 810 } 804 811 //****************************************************************************** … … 1089 1096 SetTextColor((HDC)wParam, GetSysColor(COLOR_WINDOWTEXT)); 1090 1097 return GetSysColorBrush(COLOR_BTNFACE); 1091 1098 1092 1099 //SvL: Set background color to default dialog color if window is dialog 1093 1100 case WM_CTLCOLORDLG: 1094 1101 case WM_CTLCOLORSTATIC: 1095 1096 1097 1098 1099 1100 1102 if(IsDialog()) { 1103 SetBkColor((HDC)wParam, GetSysColor(COLOR_BTNFACE)); 1104 SetTextColor((HDC)wParam, GetSysColor(COLOR_WINDOWTEXT)); 1105 return GetSysColorBrush(COLOR_BTNFACE); 1106 } 1107 //no break 1101 1108 1102 1109 case WM_CTLCOLORMSGBOX: … … 1479 1486 dprintf(("Win32BaseWindow::SetIcon %x", hIcon)); 1480 1487 if(OSLibWinSetIcon(OS2HwndFrame, hIcon) == TRUE) { 1481 1482 1488 SendInternalMessageA(WM_SETICON, hIcon, 0); 1489 return TRUE; 1483 1490 } 1484 1491 return FALSE;
Note:
See TracChangeset
for help on using the changeset viewer.