[ros-diffs] [mkupfer] 39660: - use current appearance settings for drawing the color button

mkupfer at svn.reactos.org mkupfer at svn.reactos.org
Wed Feb 18 17:28:01 CET 2009


Author: mkupfer
Date: Wed Feb 18 10:28:00 2009
New Revision: 39660

URL: http://svn.reactos.org/svn/reactos?rev=39660&view=rev
Log:
- use current appearance settings for drawing the color button

Modified:
    trunk/reactos/dll/cpl/desk/advappdlg.c

Modified: trunk/reactos/dll/cpl/desk/advappdlg.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/cpl/desk/advappdlg.c?rev=39660&r1=39659&r2=39660&view=diff
==============================================================================
--- trunk/reactos/dll/cpl/desk/advappdlg.c [iso-8859-1] (original)
+++ trunk/reactos/dll/cpl/desk/advappdlg.c [iso-8859-1] Wed Feb 18 10:28:00 2009
@@ -92,7 +92,7 @@
 		rect.top = 0;
 		rect.right = 36;
 		rect.bottom = 15;
-		hbrush = CreateSolidBrush(g->crCOLOR_BTNFACE);
+		hbrush = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));
 		FillRect(hdcCompat, &rect, hbrush);
 		DeleteObject(hbrush);
 
@@ -101,12 +101,12 @@
 		rect.top = 1;
 		rect.right = 23;
 		rect.bottom = 14;
-		hbrush = CreateSolidBrush(g->crCOLOR_BTNTEXT);
+		hbrush = CreateSolidBrush(GetSysColor(COLOR_BTNTEXT));
 		FillRect(hdcCompat, &rect, hbrush);
 		DeleteObject(hbrush);
 
 		/* Draw left side of line */
-		hPen = CreatePen(PS_SOLID, 1, g->crCOLOR_BTNSHADOW);
+		hPen = CreatePen(PS_SOLID, 1, GetSysColor(COLOR_BTNSHADOW));
 		SelectObject(hdcCompat, hPen);
 		MoveToEx(hdcCompat, 26, 1, NULL);
 		LineTo(hdcCompat, 26, 14);
@@ -114,7 +114,7 @@
 		DeleteObject(hPen);
 
 		/* Draw right side of line */
-		hPen = CreatePen(PS_SOLID, 1, g->crCOLOR_BTNHIGHLIGHT);
+		hPen = CreatePen(PS_SOLID, 1, GetSysColor(COLOR_BTNHIGHLIGHT));
 		SelectObject(hdcCompat,hPen);
 		MoveToEx(hdcCompat, 27, 1, NULL);
 		LineTo(hdcCompat, 27, 14);
@@ -122,8 +122,8 @@
 		DeleteObject(hPen);
 
 		/* Draw triangle */
-		hPen = CreatePen(PS_SOLID, 1, g->crCOLOR_BTNTEXT);
-		hbrush = CreateSolidBrush(g->crCOLOR_BTNTEXT);
+		hPen = CreatePen(PS_SOLID, 1, GetSysColor(COLOR_BTNTEXT));
+		hbrush = CreateSolidBrush(GetSysColor(COLOR_BTNTEXT));
 		SelectObject(hdcCompat, hPen);
 		SelectObject(hdcCompat, hbrush);
 		SetPolyFillMode(hdcCompat, WINDING);



More information about the Ros-diffs mailing list