Changeset 985 for trunk/src/user32/win32dlg.cpp
- Timestamp:
- Sep 19, 1999, 8:33:32 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32dlg.cpp
r949 r985 1 /* $Id: win32dlg.cpp,v 1. 1 1999-09-15 23:19:00sandervl Exp $ */1 /* $Id: win32dlg.cpp,v 1.2 1999-09-19 18:33:31 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Dialog Code for OS/2 … … 70 70 /* The font height must be negative as it is a point size */ 71 71 /* (see CreateFont() documentation in the Windows SDK). */ 72 #if 0 73 hUserFont = CreateFontA(dlgInfo.pointSize, 0, 0, 0, 74 dlgInfo.weight, dlgInfo.italic, FALSE, 75 FALSE, DEFAULT_CHARSET, 0, 0, PROOF_QUALITY, 76 FF_DONTCARE, DEFAULT_DLGFONT); 77 #else 78 hUserFont = CreateFontW(dlgInfo.pointSize, 0, 0, 0, 72 hUserFont = CreateFontW(dlgInfo.pointSize*2, 0, 0, 0, 79 73 dlgInfo.weight, dlgInfo.italic, FALSE, 80 74 FALSE, DEFAULT_CHARSET, 0, 0, PROOF_QUALITY, 81 75 FF_DONTCARE, (LPCWSTR)dlgInfo.faceName ); 82 #endif83 76 if (hUserFont) 84 77 { … … 925 918 } 926 919 //****************************************************************************** 920 //TODO: 927 921 //****************************************************************************** 928 922 HWND Win32Dialog::getNextDlgTabItem(HWND hwndCtrl, BOOL fPrevious) … … 931 925 } 932 926 //****************************************************************************** 927 //TODO 933 928 //****************************************************************************** 934 929 Win32BaseWindow *Win32Dialog::getDlgItem(int id) … … 1003 998 wndClass.cbWndExtra = 0; 1004 999 wndClass.hCursor = (HCURSOR)IDC_ARROWA; 1005 wndClass.hbrBackground = LTGRAY_BRUSH;1000 wndClass.hbrBackground = GetSysColorBrush(COLOR_BTNFACE); 1006 1001 wndClass.lpszClassName = DIALOG_CLASS_NAMEA; 1007 1002
Note:
See TracChangeset
for help on using the changeset viewer.