xref: /haiku/src/kits/interface/ControlLook.cpp (revision 74bb70aef90f212c8595b81189bc726e4db592c0)
12f86ba45SStephan Aßmus /*
22f86ba45SStephan Aßmus  * Copyright 2009, Stephan Aßmus <superstippi@gmx.de>
32f86ba45SStephan Aßmus  * Distributed under the terms of the MIT License.
42f86ba45SStephan Aßmus  */
52f86ba45SStephan Aßmus #include <ControlLook.h>
62f86ba45SStephan Aßmus 
72f86ba45SStephan Aßmus #include <stdio.h>
82f86ba45SStephan Aßmus 
92f86ba45SStephan Aßmus #include <Control.h>
102f86ba45SStephan Aßmus #include <GradientLinear.h>
112f86ba45SStephan Aßmus #include <Region.h>
122f86ba45SStephan Aßmus #include <Shape.h>
132f86ba45SStephan Aßmus #include <String.h>
142f86ba45SStephan Aßmus #include <View.h>
152f86ba45SStephan Aßmus 
162f86ba45SStephan Aßmus namespace BPrivate {
172f86ba45SStephan Aßmus 
182f86ba45SStephan Aßmus static const float kEdgeBevelLightTint = 0.59;
192f86ba45SStephan Aßmus static const float kEdgeBevelShadowTint = 1.0735;
202f86ba45SStephan Aßmus 
212f86ba45SStephan Aßmus 
222f86ba45SStephan Aßmus BControlLook::BControlLook()
232f86ba45SStephan Aßmus {
242f86ba45SStephan Aßmus }
252f86ba45SStephan Aßmus 
262f86ba45SStephan Aßmus 
272f86ba45SStephan Aßmus BControlLook::~BControlLook()
282f86ba45SStephan Aßmus {
292f86ba45SStephan Aßmus }
302f86ba45SStephan Aßmus 
312f86ba45SStephan Aßmus 
322f86ba45SStephan Aßmus BAlignment
332f86ba45SStephan Aßmus BControlLook::DefaultLabelAlignment() const
342f86ba45SStephan Aßmus {
352f86ba45SStephan Aßmus 	return BAlignment(B_ALIGN_LEFT, B_ALIGN_VERTICAL_CENTER);
362f86ba45SStephan Aßmus }
372f86ba45SStephan Aßmus 
382f86ba45SStephan Aßmus 
392f86ba45SStephan Aßmus float
402f86ba45SStephan Aßmus BControlLook::DefaultLabelSpacing() const
412f86ba45SStephan Aßmus {
422f86ba45SStephan Aßmus 	return 4.0;//ceilf(be_plain_font->Size() / 4.0);
432f86ba45SStephan Aßmus }
442f86ba45SStephan Aßmus 
452f86ba45SStephan Aßmus 
462f86ba45SStephan Aßmus uint32
472f86ba45SStephan Aßmus BControlLook::Flags(BControl* control) const
482f86ba45SStephan Aßmus {
492f86ba45SStephan Aßmus 	uint32 flags = 0;
502f86ba45SStephan Aßmus 
512f86ba45SStephan Aßmus 	if (!control->IsEnabled())
522f86ba45SStephan Aßmus 		flags |= B_DISABLED;
532f86ba45SStephan Aßmus 
542f86ba45SStephan Aßmus 	if (control->IsFocus())
552f86ba45SStephan Aßmus 		flags |= B_FOCUSED;
562f86ba45SStephan Aßmus 
572f86ba45SStephan Aßmus 	if (control->Value() == B_CONTROL_ON)
582f86ba45SStephan Aßmus 		flags |= B_ACTIVATED;
592f86ba45SStephan Aßmus 
602f86ba45SStephan Aßmus 	return flags;
612f86ba45SStephan Aßmus }
622f86ba45SStephan Aßmus 
632f86ba45SStephan Aßmus 
642f86ba45SStephan Aßmus // #pragma mark -
652f86ba45SStephan Aßmus 
662f86ba45SStephan Aßmus 
672f86ba45SStephan Aßmus void
682f86ba45SStephan Aßmus BControlLook::DrawButtonFrame(BView* view, BRect& rect, const BRect& updateRect,
692f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
702f86ba45SStephan Aßmus {
7113cd46dfSStephan Aßmus 	_DrawButtonFrame(view, rect, updateRect, base, 1.0, 1.0, flags, borders);
722f86ba45SStephan Aßmus }
732f86ba45SStephan Aßmus 
742f86ba45SStephan Aßmus 
752f86ba45SStephan Aßmus void
762f86ba45SStephan Aßmus BControlLook::DrawButtonBackground(BView* view, BRect& rect,
772f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
782f86ba45SStephan Aßmus 	uint32 borders, enum orientation orientation)
792f86ba45SStephan Aßmus {
802f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
812f86ba45SStephan Aßmus 		return;
822f86ba45SStephan Aßmus 
832f86ba45SStephan Aßmus 	// the surface edges
842f86ba45SStephan Aßmus 
852f86ba45SStephan Aßmus 	// colors
862f86ba45SStephan Aßmus 	rgb_color buttonBgColor = tint_color(base, B_LIGHTEN_1_TINT);
872f86ba45SStephan Aßmus 	rgb_color maxLightColor;
882f86ba45SStephan Aßmus 
892f86ba45SStephan Aßmus 	rgb_color bevelColor1;
902f86ba45SStephan Aßmus 	rgb_color bevelColor2;
912f86ba45SStephan Aßmus 
922f86ba45SStephan Aßmus 	if ((flags & B_DISABLED) == 0) {
932f86ba45SStephan Aßmus 		maxLightColor = tint_color(base, 0.2);
942f86ba45SStephan Aßmus 		bevelColor1 = tint_color(base, 1.08);
952f86ba45SStephan Aßmus 		bevelColor2 = base;
962f86ba45SStephan Aßmus 	} else {
972f86ba45SStephan Aßmus 		maxLightColor = tint_color(base, 0.7);
982f86ba45SStephan Aßmus 		bevelColor1 = base;
992f86ba45SStephan Aßmus 		bevelColor2 = buttonBgColor;
1002f86ba45SStephan Aßmus 		buttonBgColor = maxLightColor;
1012f86ba45SStephan Aßmus 	}
1022f86ba45SStephan Aßmus 
1032f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
1042f86ba45SStephan Aßmus 		view->BeginLineArray(4);
1052f86ba45SStephan Aßmus 
1062f86ba45SStephan Aßmus 		bevelColor1 = tint_color(bevelColor1, B_DARKEN_1_TINT);
1072f86ba45SStephan Aßmus 		bevelColor2 = tint_color(bevelColor2, B_DARKEN_1_TINT);
1082f86ba45SStephan Aßmus 
1092f86ba45SStephan Aßmus 		// shadow along left/top borders
1102f86ba45SStephan Aßmus 		if (borders & B_LEFT_BORDER) {
1112f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1122f86ba45SStephan Aßmus 				BPoint(rect.left, rect.bottom), bevelColor1);
1132f86ba45SStephan Aßmus 			rect.left++;
1142f86ba45SStephan Aßmus 		}
1152f86ba45SStephan Aßmus 		if (borders & B_TOP_BORDER) {
1162f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1172f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), bevelColor1);
1182f86ba45SStephan Aßmus 			rect.top++;
1192f86ba45SStephan Aßmus 		}
1202f86ba45SStephan Aßmus 
1212f86ba45SStephan Aßmus 		// softer shadow along left/top borders
1222f86ba45SStephan Aßmus 		if (borders & B_LEFT_BORDER) {
1232f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1242f86ba45SStephan Aßmus 				BPoint(rect.left, rect.bottom), bevelColor2);
1252f86ba45SStephan Aßmus 			rect.left++;
1262f86ba45SStephan Aßmus 		}
1272f86ba45SStephan Aßmus 		if (borders & B_TOP_BORDER) {
1282f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1292f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), bevelColor2);
1302f86ba45SStephan Aßmus 			rect.top++;
1312f86ba45SStephan Aßmus 		}
1322f86ba45SStephan Aßmus 
1332f86ba45SStephan Aßmus 		view->EndLineArray();
1342f86ba45SStephan Aßmus 	} else {
1352f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
1362f86ba45SStephan Aßmus 			maxLightColor, maxLightColor,
1372f86ba45SStephan Aßmus 			bevelColor1, bevelColor1,
1382f86ba45SStephan Aßmus 			buttonBgColor, buttonBgColor, borders);
1392f86ba45SStephan Aßmus 	}
1402f86ba45SStephan Aßmus 
1412f86ba45SStephan Aßmus 	// the actual surface top
1422f86ba45SStephan Aßmus 
1432f86ba45SStephan Aßmus 	float topTint = 0.49;
1442f86ba45SStephan Aßmus 	float middleTint1 = 0.62;
1452f86ba45SStephan Aßmus 	float middleTint2 = 0.76;
1462f86ba45SStephan Aßmus 	float bottomTint = 0.90;
1472f86ba45SStephan Aßmus 
1482f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
1492f86ba45SStephan Aßmus 		topTint = 1.11;
1502f86ba45SStephan Aßmus 		bottomTint = 1.08;
1512f86ba45SStephan Aßmus 	}
1522f86ba45SStephan Aßmus 
1532f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
1542f86ba45SStephan Aßmus 		topTint = (topTint + B_NO_TINT) / 2;
1552f86ba45SStephan Aßmus 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
1562f86ba45SStephan Aßmus 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
1572f86ba45SStephan Aßmus 		bottomTint = (bottomTint + B_NO_TINT) / 2;
1582f86ba45SStephan Aßmus 	} else if (flags & B_HOVER) {
1592f86ba45SStephan Aßmus 		static const float kHoverTintFactor = 0.85;
1602f86ba45SStephan Aßmus 		topTint *= kHoverTintFactor;
1612f86ba45SStephan Aßmus 		middleTint1 *= kHoverTintFactor;
1622f86ba45SStephan Aßmus 		middleTint2 *= kHoverTintFactor;
1632f86ba45SStephan Aßmus 		bottomTint *= kHoverTintFactor;
1642f86ba45SStephan Aßmus 	}
1652f86ba45SStephan Aßmus 
1662f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
1672f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, topTint, bottomTint, orientation);
1682f86ba45SStephan Aßmus 	} else {
1692f86ba45SStephan Aßmus 		_FillGlossyGradient(view, rect, base, topTint, middleTint1,
1702f86ba45SStephan Aßmus 			middleTint2, bottomTint, orientation);
1712f86ba45SStephan Aßmus 	}
1722f86ba45SStephan Aßmus }
1732f86ba45SStephan Aßmus 
1742f86ba45SStephan Aßmus 
1752f86ba45SStephan Aßmus void
1762f86ba45SStephan Aßmus BControlLook::DrawMenuBarBackground(BView* view, BRect& rect,
1771a72cb41SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
1781a72cb41SStephan Aßmus 	uint32 borders)
1792f86ba45SStephan Aßmus {
1802f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
1812f86ba45SStephan Aßmus 		return;
1822f86ba45SStephan Aßmus 
1832f86ba45SStephan Aßmus 	// the surface edges
1842f86ba45SStephan Aßmus 
1852f86ba45SStephan Aßmus 	// colors
1861a72cb41SStephan Aßmus 	float topTint;
1871a72cb41SStephan Aßmus 	float bottomTint;
1881a72cb41SStephan Aßmus 
1891a72cb41SStephan Aßmus 	if (flags & B_ACTIVATED) {
1901a72cb41SStephan Aßmus 		rgb_color bevelColor1 = tint_color(base, 1.40);
1911a72cb41SStephan Aßmus 		rgb_color bevelColor2 = tint_color(base, 1.25);
1921a72cb41SStephan Aßmus 
1931a72cb41SStephan Aßmus 		topTint = 1.25;
1941a72cb41SStephan Aßmus 		bottomTint = 1.20;
1952f86ba45SStephan Aßmus 
1962f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
1971a72cb41SStephan Aßmus 			bevelColor1, bevelColor1,
1981a72cb41SStephan Aßmus 			bevelColor2, bevelColor2,
1991a72cb41SStephan Aßmus 			borders & B_TOP_BORDER);
2001a72cb41SStephan Aßmus 	} else {
2011a72cb41SStephan Aßmus 		rgb_color cornerColor = tint_color(base, 0.9);
2021a72cb41SStephan Aßmus 		rgb_color bevelColorTop = tint_color(base, 0.5);
2031a72cb41SStephan Aßmus 		rgb_color bevelColorLeft = tint_color(base, 0.7);
2041a72cb41SStephan Aßmus 		rgb_color bevelColorRightBottom = tint_color(base, 1.08);
2051a72cb41SStephan Aßmus 
2061a72cb41SStephan Aßmus 		topTint = 0.69;
2071a72cb41SStephan Aßmus 		bottomTint = 1.03;
2081a72cb41SStephan Aßmus 
2091a72cb41SStephan Aßmus 		_DrawFrame(view, rect,
2101a72cb41SStephan Aßmus 			bevelColorLeft, bevelColorTop,
2111a72cb41SStephan Aßmus 			bevelColorRightBottom, bevelColorRightBottom,
2122f86ba45SStephan Aßmus 			cornerColor, cornerColor,
2132f86ba45SStephan Aßmus 			borders);
2141a72cb41SStephan Aßmus 	}
2152f86ba45SStephan Aßmus 
2162f86ba45SStephan Aßmus 	// the actual surface top
2172f86ba45SStephan Aßmus 
2182f86ba45SStephan Aßmus 	_FillGradient(view, rect, base, topTint, bottomTint);
2192f86ba45SStephan Aßmus }
2202f86ba45SStephan Aßmus 
2212f86ba45SStephan Aßmus 
2222f86ba45SStephan Aßmus void
22313cd46dfSStephan Aßmus BControlLook::DrawMenuFieldFrame(BView* view, BRect& rect, const BRect& updateRect,
22413cd46dfSStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
22513cd46dfSStephan Aßmus {
22613cd46dfSStephan Aßmus 	_DrawButtonFrame(view, rect, updateRect, base, 0.6, 1.0, flags, borders);
22713cd46dfSStephan Aßmus }
22813cd46dfSStephan Aßmus 
22913cd46dfSStephan Aßmus 
23013cd46dfSStephan Aßmus void
2312f86ba45SStephan Aßmus BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect,
2322f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, bool popupIndicator,
2332f86ba45SStephan Aßmus 	uint32 flags)
2342f86ba45SStephan Aßmus {
2352f86ba45SStephan Aßmus 	if (popupIndicator) {
2362f86ba45SStephan Aßmus 		BRect leftRect(rect);
2372f86ba45SStephan Aßmus 		leftRect.right -= 10;
2382f86ba45SStephan Aßmus 
2392f86ba45SStephan Aßmus 		BRect rightRect(rect);
2402f86ba45SStephan Aßmus 		rightRect.left = rightRect.right - 9;
2412f86ba45SStephan Aßmus 
2422f86ba45SStephan Aßmus 		DrawMenuFieldBackground(view, leftRect, updateRect, base, flags,
2432f86ba45SStephan Aßmus 			B_LEFT_BORDER | B_TOP_BORDER | B_BOTTOM_BORDER);
2442f86ba45SStephan Aßmus 
2452f86ba45SStephan Aßmus 		rgb_color indicatorBase;
2462f86ba45SStephan Aßmus 		rgb_color markColor;
2472f86ba45SStephan Aßmus 		if (flags & B_DISABLED) {
2482f86ba45SStephan Aßmus 			indicatorBase = tint_color(base, 1.05);
24913cd46dfSStephan Aßmus 			markColor = tint_color(base, 1.35);
2502f86ba45SStephan Aßmus 		} else {
25113cd46dfSStephan Aßmus 			indicatorBase = tint_color(base, 1.12);
25213cd46dfSStephan Aßmus 			markColor = tint_color(base, 1.65);
2532f86ba45SStephan Aßmus 		}
2542f86ba45SStephan Aßmus 
2552f86ba45SStephan Aßmus 		DrawMenuFieldBackground(view, rightRect, updateRect, indicatorBase,
2562f86ba45SStephan Aßmus 			flags, B_RIGHT_BORDER | B_TOP_BORDER | B_BOTTOM_BORDER);
2572f86ba45SStephan Aßmus 
2582f86ba45SStephan Aßmus 		// popup marker
2592f86ba45SStephan Aßmus 		BPoint center(roundf((rightRect.left + rightRect.right) / 2.0),
2602f86ba45SStephan Aßmus 					  roundf((rightRect.top + rightRect.bottom) / 2.0));
2612f86ba45SStephan Aßmus 		BPoint triangle[3];
2622f86ba45SStephan Aßmus 		triangle[0] = center + BPoint(-2.5, -0.5);
2632f86ba45SStephan Aßmus 		triangle[1] = center + BPoint(2.5, -0.5);
2642f86ba45SStephan Aßmus 		triangle[2] = center + BPoint(0.0, 2.0);
2652f86ba45SStephan Aßmus 
2662f86ba45SStephan Aßmus 		uint32 viewFlags = view->Flags();
2672f86ba45SStephan Aßmus 		view->SetFlags(viewFlags | B_SUBPIXEL_PRECISE);
2682f86ba45SStephan Aßmus 
2692f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
2702f86ba45SStephan Aßmus 		view->FillTriangle(triangle[0], triangle[1], triangle[2]);
2712f86ba45SStephan Aßmus 
2722f86ba45SStephan Aßmus 		view->SetFlags(viewFlags);
2732f86ba45SStephan Aßmus 
2742f86ba45SStephan Aßmus 		rect = leftRect;
2752f86ba45SStephan Aßmus 	} else {
2762f86ba45SStephan Aßmus 		DrawMenuFieldBackground(view, rect, updateRect, base, flags);
2772f86ba45SStephan Aßmus 	}
2782f86ba45SStephan Aßmus }
2792f86ba45SStephan Aßmus 
2802f86ba45SStephan Aßmus void
2812f86ba45SStephan Aßmus BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect,
2822f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
2832f86ba45SStephan Aßmus 	uint32 borders)
2842f86ba45SStephan Aßmus {
2852f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
2862f86ba45SStephan Aßmus 		return;
2872f86ba45SStephan Aßmus 
2882f86ba45SStephan Aßmus 	// the surface edges
2892f86ba45SStephan Aßmus 
2902f86ba45SStephan Aßmus 	// colors
2912f86ba45SStephan Aßmus 	rgb_color cornerColor = tint_color(base, 0.85);
2922f86ba45SStephan Aßmus 	rgb_color bevelColor1 = tint_color(base, 0.3);
2932f86ba45SStephan Aßmus 	rgb_color bevelColor2 = tint_color(base, 0.5);
2942f86ba45SStephan Aßmus 	rgb_color bevelColor3 = tint_color(base, 1.03);
2952f86ba45SStephan Aßmus 
2962f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
2972f86ba45SStephan Aßmus 		cornerColor = tint_color(base, 0.8);
2982f86ba45SStephan Aßmus 		bevelColor1 = tint_color(base, 0.7);
2992f86ba45SStephan Aßmus 		bevelColor2 = tint_color(base, 0.8);
3002f86ba45SStephan Aßmus 		bevelColor3 = tint_color(base, 1.01);
3012f86ba45SStephan Aßmus 	} else {
3022f86ba45SStephan Aßmus 		cornerColor = tint_color(base, 0.85);
3032f86ba45SStephan Aßmus 		bevelColor1 = tint_color(base, 0.3);
3042f86ba45SStephan Aßmus 		bevelColor2 = tint_color(base, 0.5);
3052f86ba45SStephan Aßmus 		bevelColor3 = tint_color(base, 1.03);
3062f86ba45SStephan Aßmus 	}
3072f86ba45SStephan Aßmus 
3082f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
3092f86ba45SStephan Aßmus 		bevelColor2, bevelColor1,
3102f86ba45SStephan Aßmus 		bevelColor3, bevelColor3,
3112f86ba45SStephan Aßmus 		cornerColor, cornerColor,
3122f86ba45SStephan Aßmus 		borders);
3132f86ba45SStephan Aßmus 
3142f86ba45SStephan Aßmus 	// the actual surface top
3152f86ba45SStephan Aßmus 
3162f86ba45SStephan Aßmus 	float topTint = 0.49;
3172f86ba45SStephan Aßmus 	float middleTint1 = 0.62;
3182f86ba45SStephan Aßmus 	float middleTint2 = 0.76;
3192f86ba45SStephan Aßmus 	float bottomTint = 0.90;
3202f86ba45SStephan Aßmus 
3212f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
3222f86ba45SStephan Aßmus 		topTint = (topTint + B_NO_TINT) / 2;
3232f86ba45SStephan Aßmus 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
3242f86ba45SStephan Aßmus 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
3252f86ba45SStephan Aßmus 		bottomTint = (bottomTint + B_NO_TINT) / 2;
3262f86ba45SStephan Aßmus 	} else if (flags & B_HOVER) {
3272f86ba45SStephan Aßmus 		static const float kHoverTintFactor = 0.85;
3282f86ba45SStephan Aßmus 		topTint *= kHoverTintFactor;
3292f86ba45SStephan Aßmus 		middleTint1 *= kHoverTintFactor;
3302f86ba45SStephan Aßmus 		middleTint2 *= kHoverTintFactor;
3312f86ba45SStephan Aßmus 		bottomTint *= kHoverTintFactor;
3322f86ba45SStephan Aßmus 	}
3332f86ba45SStephan Aßmus 
3342f86ba45SStephan Aßmus 	_FillGlossyGradient(view, rect, base, topTint, middleTint1,
3352f86ba45SStephan Aßmus 		middleTint2, bottomTint);
3362f86ba45SStephan Aßmus }
3372f86ba45SStephan Aßmus 
3382f86ba45SStephan Aßmus void
3392f86ba45SStephan Aßmus BControlLook::DrawMenuBackground(BView* view, BRect& rect,
3402f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
3412f86ba45SStephan Aßmus 	uint32 borders)
3422f86ba45SStephan Aßmus {
3432f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
3442f86ba45SStephan Aßmus 		return;
3452f86ba45SStephan Aßmus 
3462f86ba45SStephan Aßmus 	// the surface edges
3472f86ba45SStephan Aßmus 
3482f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
3492f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
3502f86ba45SStephan Aßmus 	rgb_color background = tint_color(base, 0.75);
3512f86ba45SStephan Aßmus 
3522f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
3532f86ba45SStephan Aßmus 		bevelLightColor = tint_color(background, 0.80);
3542f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(background, 1.07);
3552f86ba45SStephan Aßmus 	} else {
3562f86ba45SStephan Aßmus 		bevelLightColor = tint_color(background, 0.6);
3572f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(background, 1.12);
3582f86ba45SStephan Aßmus 	}
3592f86ba45SStephan Aßmus 
3602f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
3612f86ba45SStephan Aßmus 		bevelLightColor, bevelLightColor,
3622f86ba45SStephan Aßmus 		bevelShadowColor, bevelShadowColor,
3632f86ba45SStephan Aßmus 		borders);
3642f86ba45SStephan Aßmus 
3652f86ba45SStephan Aßmus 	// the actual surface top
3662f86ba45SStephan Aßmus 
3672f86ba45SStephan Aßmus 	view->SetHighColor(background);
3682f86ba45SStephan Aßmus 	view->FillRect(rect);
3692f86ba45SStephan Aßmus }
3702f86ba45SStephan Aßmus 
3712f86ba45SStephan Aßmus 
3722f86ba45SStephan Aßmus void
3732f86ba45SStephan Aßmus BControlLook::DrawMenuItemBackground(BView* view, BRect& rect,
3742f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
3752f86ba45SStephan Aßmus 	uint32 borders)
3762f86ba45SStephan Aßmus {
3772f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
3782f86ba45SStephan Aßmus 		return;
3792f86ba45SStephan Aßmus 
3802f86ba45SStephan Aßmus 	// the surface edges
3812f86ba45SStephan Aßmus 
3822f86ba45SStephan Aßmus 	float topTint;
3832f86ba45SStephan Aßmus 	float bottomTint;
3842f86ba45SStephan Aßmus 	rgb_color selectedColor = base;
3852f86ba45SStephan Aßmus 
3862f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
3872f86ba45SStephan Aßmus 		topTint = 0.9;
3882f86ba45SStephan Aßmus 		bottomTint = 1.05;
3892f86ba45SStephan Aßmus 		selectedColor = tint_color(base, 1.26);
3902f86ba45SStephan Aßmus 	} else if (flags & B_DISABLED) {
3912f86ba45SStephan Aßmus 		topTint = 0.80;
3922f86ba45SStephan Aßmus 		bottomTint = 1.07;
3932f86ba45SStephan Aßmus 	} else {
3942f86ba45SStephan Aßmus 		topTint = 0.6;
3952f86ba45SStephan Aßmus 		bottomTint = 1.12;
3962f86ba45SStephan Aßmus 	}
3972f86ba45SStephan Aßmus 
3982f86ba45SStephan Aßmus 	rgb_color bevelLightColor = tint_color(selectedColor, topTint);
3992f86ba45SStephan Aßmus 	rgb_color bevelShadowColor = tint_color(selectedColor, bottomTint);
4002f86ba45SStephan Aßmus 
4012f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
4022f86ba45SStephan Aßmus 		bevelLightColor, bevelLightColor,
4032f86ba45SStephan Aßmus 		bevelShadowColor, bevelShadowColor,
4042f86ba45SStephan Aßmus 		borders);
4052f86ba45SStephan Aßmus 
4062f86ba45SStephan Aßmus 	// the actual surface top
4072f86ba45SStephan Aßmus 
4082f86ba45SStephan Aßmus 	view->SetLowColor(selectedColor);
4092f86ba45SStephan Aßmus //	_FillGradient(view, rect, selectedColor, topTint, bottomTint);
4102f86ba45SStephan Aßmus 	_FillGradient(view, rect, selectedColor, bottomTint, topTint);
4112f86ba45SStephan Aßmus }
4122f86ba45SStephan Aßmus 
4132f86ba45SStephan Aßmus 
4142f86ba45SStephan Aßmus void
4152f86ba45SStephan Aßmus BControlLook::DrawStatusBar(BView* view, BRect& rect, const BRect& updateRect,
4162f86ba45SStephan Aßmus 	const rgb_color& base, const rgb_color& barColor, float progressPosition)
4172f86ba45SStephan Aßmus {
4182f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
4192f86ba45SStephan Aßmus 		return;
4202f86ba45SStephan Aßmus 
4212f86ba45SStephan Aßmus 	_DrawOuterResessedFrame(view, rect, base, 0.6);
4222f86ba45SStephan Aßmus 
4232f86ba45SStephan Aßmus 	// colors
4242f86ba45SStephan Aßmus 	rgb_color dark1BorderColor = tint_color(base, 1.3);
4252f86ba45SStephan Aßmus 	rgb_color dark2BorderColor = tint_color(base, 1.2);
4262f86ba45SStephan Aßmus 	rgb_color dark1FilledBorderColor = tint_color(barColor, 1.20);
4272f86ba45SStephan Aßmus 	rgb_color dark2FilledBorderColor = tint_color(barColor, 1.45);
4282f86ba45SStephan Aßmus 
4292f86ba45SStephan Aßmus 	BRect filledRect(rect);
4302f86ba45SStephan Aßmus 	filledRect.right = progressPosition - 1;
4312f86ba45SStephan Aßmus 
4322f86ba45SStephan Aßmus 	BRect nonfilledRect(rect);
4332f86ba45SStephan Aßmus 	nonfilledRect.left = progressPosition;
4342f86ba45SStephan Aßmus 
4352f86ba45SStephan Aßmus 	bool filledSurface = filledRect.Width() > 0;
4362f86ba45SStephan Aßmus 	bool nonfilledSurface = nonfilledRect.Width() > 0;
4372f86ba45SStephan Aßmus 
4382f86ba45SStephan Aßmus 	if (filledSurface) {
4392f86ba45SStephan Aßmus 		_DrawFrame(view, filledRect,
4402f86ba45SStephan Aßmus 			dark1FilledBorderColor, dark1FilledBorderColor,
4412f86ba45SStephan Aßmus 			dark2FilledBorderColor, dark2FilledBorderColor);
4422f86ba45SStephan Aßmus 
4432f86ba45SStephan Aßmus 		_FillGlossyGradient(view, filledRect, barColor, 0.55, 0.68, 0.76, 0.90);
4442f86ba45SStephan Aßmus 	}
4452f86ba45SStephan Aßmus 
4462f86ba45SStephan Aßmus 	if (nonfilledSurface) {
4472f86ba45SStephan Aßmus 		_DrawFrame(view, nonfilledRect, dark1BorderColor, dark1BorderColor,
4482f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor,
4492f86ba45SStephan Aßmus 			B_TOP_BORDER | B_BOTTOM_BORDER | B_RIGHT_BORDER);
4502f86ba45SStephan Aßmus 
4512f86ba45SStephan Aßmus 		if (nonfilledRect.left < nonfilledRect.right) {
4522f86ba45SStephan Aßmus 			// shadow from fill bar, or left border
4532f86ba45SStephan Aßmus 			rgb_color leftBorder = dark1BorderColor;
4542f86ba45SStephan Aßmus 			if (filledSurface)
4552f86ba45SStephan Aßmus 				leftBorder = tint_color(base, 0.50);
4562f86ba45SStephan Aßmus 			view->SetHighColor(leftBorder);
4572f86ba45SStephan Aßmus 			view->StrokeLine(nonfilledRect.LeftTop(),
4582f86ba45SStephan Aßmus 				nonfilledRect.LeftBottom());
4592f86ba45SStephan Aßmus 			nonfilledRect.left++;
4602f86ba45SStephan Aßmus 		}
4612f86ba45SStephan Aßmus 
4622f86ba45SStephan Aßmus 		_FillGradient(view, nonfilledRect, base, 0.25, 0.06);
4632f86ba45SStephan Aßmus 	}
4642f86ba45SStephan Aßmus }
4652f86ba45SStephan Aßmus 
4662f86ba45SStephan Aßmus 
4672f86ba45SStephan Aßmus void
4682f86ba45SStephan Aßmus BControlLook::DrawCheckBox(BView* view, BRect& rect, const BRect& updateRect,
4692f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags)
4702f86ba45SStephan Aßmus {
4712f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
4722f86ba45SStephan Aßmus 		return;
4732f86ba45SStephan Aßmus 
4742f86ba45SStephan Aßmus 	rgb_color dark1BorderColor;
4752f86ba45SStephan Aßmus 	rgb_color dark2BorderColor;
4762f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
4772f86ba45SStephan Aßmus 
4782f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
4792f86ba45SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.0);
4802f86ba45SStephan Aßmus 
4812f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.15);
4822f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.15);
4832f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
4842f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.50);
4852f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.48);
4862f86ba45SStephan Aßmus 
4872f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
4882f86ba45SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
4892f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor);
4902f86ba45SStephan Aßmus 
4912f86ba45SStephan Aßmus 		dark2BorderColor = dark1BorderColor;
4922f86ba45SStephan Aßmus 	} else {
4932f86ba45SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.6);
4942f86ba45SStephan Aßmus 
4952f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.40);
4962f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.38);
4972f86ba45SStephan Aßmus 	}
4982f86ba45SStephan Aßmus 
4992f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
5002f86ba45SStephan Aßmus 		dark1BorderColor = navigationColor;
5012f86ba45SStephan Aßmus 		dark2BorderColor = navigationColor;
5022f86ba45SStephan Aßmus 	}
5032f86ba45SStephan Aßmus 
5042f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
5052f86ba45SStephan Aßmus 		dark1BorderColor, dark1BorderColor,
5062f86ba45SStephan Aßmus 		dark2BorderColor, dark2BorderColor);
5072f86ba45SStephan Aßmus 
5082f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
5092f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, 0.4, 0.2);
5102f86ba45SStephan Aßmus 	} else {
5112f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, 0.15, 0.0);
5122f86ba45SStephan Aßmus 	}
5132f86ba45SStephan Aßmus 
5142f86ba45SStephan Aßmus 	rgb_color markColor;
5152f86ba45SStephan Aßmus 	if (_RadioButtonAndCheckBoxMarkColor(base, markColor, flags)) {
5162f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
5172f86ba45SStephan Aßmus 
5182f86ba45SStephan Aßmus 		rect.InsetBy(2, 2);
5192f86ba45SStephan Aßmus 		view->SetPenSize(max_c(1.0, ceilf(rect.Width() / 3.5)));
5202f86ba45SStephan Aßmus 		view->SetDrawingMode(B_OP_OVER);
5212f86ba45SStephan Aßmus 
5222f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.RightBottom());
5232f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftBottom(), rect.RightTop());
5242f86ba45SStephan Aßmus 	}
5252f86ba45SStephan Aßmus }
5262f86ba45SStephan Aßmus 
5272f86ba45SStephan Aßmus 
5282f86ba45SStephan Aßmus void
5292f86ba45SStephan Aßmus BControlLook::DrawRadioButton(BView* view, BRect& rect, const BRect& updateRect,
5302f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags)
5312f86ba45SStephan Aßmus {
5322f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
5332f86ba45SStephan Aßmus 		return;
5342f86ba45SStephan Aßmus 
5352f86ba45SStephan Aßmus 	rgb_color borderColor;
5362f86ba45SStephan Aßmus 	rgb_color bevelLight;
5372f86ba45SStephan Aßmus 	rgb_color bevelShadow;
5382f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
5392f86ba45SStephan Aßmus 
5402f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
5412f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.15);
5422f86ba45SStephan Aßmus 		bevelLight = base;
5432f86ba45SStephan Aßmus 		bevelShadow = base;
5442f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
5452f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.50);
5462f86ba45SStephan Aßmus 		bevelLight = borderColor;
5472f86ba45SStephan Aßmus 		bevelShadow = borderColor;
5482f86ba45SStephan Aßmus 	} else {
5492f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.45);
5502f86ba45SStephan Aßmus 		bevelLight = tint_color(base, 0.55);
5512f86ba45SStephan Aßmus 		bevelShadow = tint_color(base, 1.11);
5522f86ba45SStephan Aßmus 	}
5532f86ba45SStephan Aßmus 
5542f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
5552f86ba45SStephan Aßmus 		borderColor = navigationColor;
5562f86ba45SStephan Aßmus 	}
5572f86ba45SStephan Aßmus 
5582f86ba45SStephan Aßmus 	BGradientLinear bevelGradient;
5592f86ba45SStephan Aßmus 	bevelGradient.AddColor(bevelShadow, 0);
5602f86ba45SStephan Aßmus 	bevelGradient.AddColor(bevelLight, 255);
5612f86ba45SStephan Aßmus 	bevelGradient.SetStart(rect.LeftTop());
5622f86ba45SStephan Aßmus 	bevelGradient.SetEnd(rect.RightBottom());
5632f86ba45SStephan Aßmus 
5642f86ba45SStephan Aßmus 	view->FillEllipse(rect, bevelGradient);
5652f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
5662f86ba45SStephan Aßmus 
5672f86ba45SStephan Aßmus 	bevelGradient.MakeEmpty();
5682f86ba45SStephan Aßmus 	bevelGradient.AddColor(borderColor, 0);
5692f86ba45SStephan Aßmus 	bevelGradient.AddColor(tint_color(borderColor, 0.8), 255);
5702f86ba45SStephan Aßmus 	view->FillEllipse(rect, bevelGradient);
5712f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
5722f86ba45SStephan Aßmus 
5732f86ba45SStephan Aßmus 	float topTint;
5742f86ba45SStephan Aßmus 	float bottomTint;
5752f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
5762f86ba45SStephan Aßmus 		topTint = 0.4;
5772f86ba45SStephan Aßmus 		bottomTint = 0.2;
5782f86ba45SStephan Aßmus 	} else {
5792f86ba45SStephan Aßmus 		topTint = 0.15;
5802f86ba45SStephan Aßmus 		bottomTint = 0.0;
5812f86ba45SStephan Aßmus 	}
5822f86ba45SStephan Aßmus 
5832f86ba45SStephan Aßmus 	BGradientLinear gradient;
5842f86ba45SStephan Aßmus 	_MakeGradient(gradient, rect, base, topTint, bottomTint);
5852f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
5862f86ba45SStephan Aßmus 
5872f86ba45SStephan Aßmus 	rgb_color markColor;
5882f86ba45SStephan Aßmus 	if (_RadioButtonAndCheckBoxMarkColor(base, markColor, flags)) {
5892f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
5902f86ba45SStephan Aßmus 		rect.InsetBy(3, 3);
5912f86ba45SStephan Aßmus 		view->FillEllipse(rect);
5922f86ba45SStephan Aßmus 	}
5932f86ba45SStephan Aßmus }
5942f86ba45SStephan Aßmus 
5952f86ba45SStephan Aßmus 
5962f86ba45SStephan Aßmus void
5972f86ba45SStephan Aßmus BControlLook::DrawScrollBarBackground(BView* view, BRect& rect1, BRect& rect2,
5982f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
5992f86ba45SStephan Aßmus 	enum orientation orientation)
6002f86ba45SStephan Aßmus {
6012f86ba45SStephan Aßmus 	DrawScrollBarBackground(view, rect1, updateRect, base, flags, orientation);
6022f86ba45SStephan Aßmus 	DrawScrollBarBackground(view, rect2, updateRect, base, flags, orientation);
6032f86ba45SStephan Aßmus }
6042f86ba45SStephan Aßmus 
6052f86ba45SStephan Aßmus void
6062f86ba45SStephan Aßmus BControlLook::DrawScrollBarBackground(BView* view, BRect& rect,
6072f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
6082f86ba45SStephan Aßmus 	enum orientation orientation)
6092f86ba45SStephan Aßmus {
6102f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
6112f86ba45SStephan Aßmus 		return;
6122f86ba45SStephan Aßmus 
6132f86ba45SStephan Aßmus 	float gradient1Tint;
6142f86ba45SStephan Aßmus 	float gradient2Tint;
6152f86ba45SStephan Aßmus 	float darkEdge1Tint;
6162f86ba45SStephan Aßmus 	float darkEdge2Tint;
6172f86ba45SStephan Aßmus 	float shadowTint;
6182f86ba45SStephan Aßmus 
6192f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
6202f86ba45SStephan Aßmus 		gradient1Tint = 0.9;
6212f86ba45SStephan Aßmus 		gradient2Tint = 0.8;
6222f86ba45SStephan Aßmus 		darkEdge1Tint = B_DARKEN_2_TINT;
6232f86ba45SStephan Aßmus 		darkEdge2Tint = B_DARKEN_2_TINT;
6242f86ba45SStephan Aßmus 		shadowTint = gradient1Tint;
6252f86ba45SStephan Aßmus 	} else {
6262f86ba45SStephan Aßmus 		gradient1Tint = 1.10;
6272f86ba45SStephan Aßmus 		gradient2Tint = 1.05;
6282f86ba45SStephan Aßmus 		darkEdge1Tint = B_DARKEN_3_TINT;
6292f86ba45SStephan Aßmus 		darkEdge2Tint = B_DARKEN_2_TINT;
6302f86ba45SStephan Aßmus 		shadowTint = gradient1Tint;
6312f86ba45SStephan Aßmus 	}
6322f86ba45SStephan Aßmus 
6332f86ba45SStephan Aßmus 	rgb_color darkEdge1 = tint_color(base, darkEdge1Tint);
6342f86ba45SStephan Aßmus 	rgb_color darkEdge2 = tint_color(base, darkEdge2Tint);
6352f86ba45SStephan Aßmus 	rgb_color shadow = tint_color(base, shadowTint);
6362f86ba45SStephan Aßmus 
6372f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
6382f86ba45SStephan Aßmus 		// dark vertical line on left edge
6392f86ba45SStephan Aßmus 		if (rect.Width() > 0) {
6402f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge1);
6412f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
6422f86ba45SStephan Aßmus 			rect.left++;
6432f86ba45SStephan Aßmus 		}
6442f86ba45SStephan Aßmus 		// dark vertical line on right edge
6452f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6462f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge2);
6472f86ba45SStephan Aßmus 			view->StrokeLine(rect.RightTop(), rect.RightBottom());
6482f86ba45SStephan Aßmus 			rect.right--;
6492f86ba45SStephan Aßmus 		}
6502f86ba45SStephan Aßmus 		// vertical shadow line after left edge
6512f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6522f86ba45SStephan Aßmus 			view->SetHighColor(shadow);
6532f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
6542f86ba45SStephan Aßmus 			rect.left++;
6552f86ba45SStephan Aßmus 		}
6562f86ba45SStephan Aßmus 		// fill
6572f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6582f86ba45SStephan Aßmus 			_FillGradient(view, rect, base, gradient1Tint, gradient2Tint,
6592f86ba45SStephan Aßmus 				orientation);
6602f86ba45SStephan Aßmus 		}
6612f86ba45SStephan Aßmus 	} else {
6622f86ba45SStephan Aßmus 		// dark vertical line on top edge
6632f86ba45SStephan Aßmus 		if (rect.Height() > 0) {
6642f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge1);
6652f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.RightTop());
6662f86ba45SStephan Aßmus 			rect.top++;
6672f86ba45SStephan Aßmus 		}
6682f86ba45SStephan Aßmus 		// dark vertical line on bottom edge
6692f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6702f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge2);
6712f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftBottom(), rect.RightBottom());
6722f86ba45SStephan Aßmus 			rect.bottom--;
6732f86ba45SStephan Aßmus 		}
6742f86ba45SStephan Aßmus 		// horizontal shadow line after top edge
6752f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6762f86ba45SStephan Aßmus 			view->SetHighColor(shadow);
6772f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.RightTop());
6782f86ba45SStephan Aßmus 			rect.top++;
6792f86ba45SStephan Aßmus 		}
6802f86ba45SStephan Aßmus 		// fill
6812f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6822f86ba45SStephan Aßmus 			_FillGradient(view, rect, base, gradient1Tint, gradient2Tint,
6832f86ba45SStephan Aßmus 				orientation);
6842f86ba45SStephan Aßmus 		}
6852f86ba45SStephan Aßmus 	}
6862f86ba45SStephan Aßmus }
6872f86ba45SStephan Aßmus 
6882f86ba45SStephan Aßmus 
68940a10e1cSStephan Aßmus void
690*74bb70aeSStephan Aßmus BControlLook::DrawScrollViewFrame(BView* view, BRect& rect,
691*74bb70aeSStephan Aßmus 	const BRect& updateRect, BRect verticalScrollBarFrame,
692*74bb70aeSStephan Aßmus 	BRect horizontalScrollBarFrame, const rgb_color& base,
693*74bb70aeSStephan Aßmus 	border_style border, uint32 flags, uint32 _borders)
694*74bb70aeSStephan Aßmus {
695*74bb70aeSStephan Aßmus 	if (border == B_NO_BORDER)
696*74bb70aeSStephan Aßmus 		return;
697*74bb70aeSStephan Aßmus 
698*74bb70aeSStephan Aßmus 	bool excludeScrollCorner = border == B_FANCY_BORDER
699*74bb70aeSStephan Aßmus 		&& horizontalScrollBarFrame.IsValid()
700*74bb70aeSStephan Aßmus 		&& verticalScrollBarFrame.IsValid();
701*74bb70aeSStephan Aßmus 
702*74bb70aeSStephan Aßmus 	uint32 borders = _borders;
703*74bb70aeSStephan Aßmus 	if (excludeScrollCorner) {
704*74bb70aeSStephan Aßmus 		rect.bottom = horizontalScrollBarFrame.top;
705*74bb70aeSStephan Aßmus 		rect.right = verticalScrollBarFrame.left;
706*74bb70aeSStephan Aßmus 		borders &= ~(B_RIGHT_BORDER | B_BOTTOM_BORDER);
707*74bb70aeSStephan Aßmus 	}
708*74bb70aeSStephan Aßmus 
709*74bb70aeSStephan Aßmus 	rgb_color scrollbarFrameColor = tint_color(base, B_DARKEN_2_TINT);
710*74bb70aeSStephan Aßmus 
711*74bb70aeSStephan Aßmus 	if (border == B_FANCY_BORDER)
712*74bb70aeSStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 1.0, 1.0, borders);
713*74bb70aeSStephan Aßmus 
714*74bb70aeSStephan Aßmus 	if (flags & B_FOCUSED) {
715*74bb70aeSStephan Aßmus 		rgb_color focusColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
716*74bb70aeSStephan Aßmus 		_DrawFrame(view, rect, focusColor, focusColor, focusColor, focusColor,
717*74bb70aeSStephan Aßmus 			borders);
718*74bb70aeSStephan Aßmus 	} else {
719*74bb70aeSStephan Aßmus 		_DrawFrame(view, rect, scrollbarFrameColor, scrollbarFrameColor,
720*74bb70aeSStephan Aßmus 			scrollbarFrameColor, scrollbarFrameColor, borders);
721*74bb70aeSStephan Aßmus 	}
722*74bb70aeSStephan Aßmus 
723*74bb70aeSStephan Aßmus 	if (excludeScrollCorner) {
724*74bb70aeSStephan Aßmus 		horizontalScrollBarFrame.InsetBy(-1, -1);
725*74bb70aeSStephan Aßmus 		// do not overdraw the top edge
726*74bb70aeSStephan Aßmus 		horizontalScrollBarFrame.top += 2;
727*74bb70aeSStephan Aßmus 		borders = _borders;
728*74bb70aeSStephan Aßmus 		borders &= ~B_TOP_BORDER;
729*74bb70aeSStephan Aßmus 		_DrawOuterResessedFrame(view, horizontalScrollBarFrame, base,
730*74bb70aeSStephan Aßmus 			1.0, 1.0, borders);
731*74bb70aeSStephan Aßmus 		_DrawFrame(view, horizontalScrollBarFrame, scrollbarFrameColor,
732*74bb70aeSStephan Aßmus 			scrollbarFrameColor, scrollbarFrameColor, scrollbarFrameColor,
733*74bb70aeSStephan Aßmus 			borders);
734*74bb70aeSStephan Aßmus 
735*74bb70aeSStephan Aßmus 
736*74bb70aeSStephan Aßmus 		verticalScrollBarFrame.InsetBy(-1, -1);
737*74bb70aeSStephan Aßmus 		// do not overdraw the left edge
738*74bb70aeSStephan Aßmus 		verticalScrollBarFrame.left += 2;
739*74bb70aeSStephan Aßmus 		borders = _borders;
740*74bb70aeSStephan Aßmus 		borders &= ~B_LEFT_BORDER;
741*74bb70aeSStephan Aßmus 		_DrawOuterResessedFrame(view, verticalScrollBarFrame, base,
742*74bb70aeSStephan Aßmus 			1.0, 1.0, borders);
743*74bb70aeSStephan Aßmus 		_DrawFrame(view, verticalScrollBarFrame, scrollbarFrameColor,
744*74bb70aeSStephan Aßmus 			scrollbarFrameColor, scrollbarFrameColor, scrollbarFrameColor,
745*74bb70aeSStephan Aßmus 			borders);
746*74bb70aeSStephan Aßmus 	}
747*74bb70aeSStephan Aßmus }
748*74bb70aeSStephan Aßmus 
749*74bb70aeSStephan Aßmus 
750*74bb70aeSStephan Aßmus void
75140a10e1cSStephan Aßmus BControlLook::DrawArrowShape(BView* view, BRect& rect, const BRect& updateRect,
75240a10e1cSStephan Aßmus 	const rgb_color& base, uint32 direction, uint32 flags, float tint)
75340a10e1cSStephan Aßmus {
75440a10e1cSStephan Aßmus 	BPoint tri1, tri2, tri3;
75540a10e1cSStephan Aßmus 	float hInset = rect.Width() / 3;
75640a10e1cSStephan Aßmus 	float vInset = rect.Height() / 3;
75740a10e1cSStephan Aßmus 	rect.InsetBy(hInset, vInset);
75840a10e1cSStephan Aßmus 
75940a10e1cSStephan Aßmus 	switch (direction) {
76040a10e1cSStephan Aßmus 		case B_LEFT_ARROW:
76140a10e1cSStephan Aßmus 			tri1.Set(rect.right, rect.top);
76240a10e1cSStephan Aßmus 			tri2.Set(rect.right - rect.Width() / 1.33,
76340a10e1cSStephan Aßmus 				(rect.top + rect.bottom + 1) /2 );
76440a10e1cSStephan Aßmus 			tri3.Set(rect.right, rect.bottom + 1);
76540a10e1cSStephan Aßmus 			break;
76640a10e1cSStephan Aßmus 		case B_RIGHT_ARROW:
76740a10e1cSStephan Aßmus 			tri1.Set(rect.left, rect.bottom + 1);
76840a10e1cSStephan Aßmus 			tri2.Set(rect.left + rect.Width() / 1.33,
76940a10e1cSStephan Aßmus 				(rect.top + rect.bottom + 1) / 2);
77040a10e1cSStephan Aßmus 			tri3.Set(rect.left, rect.top);
77140a10e1cSStephan Aßmus 			break;
77240a10e1cSStephan Aßmus 		case B_UP_ARROW:
77340a10e1cSStephan Aßmus 			tri1.Set(rect.left, rect.bottom);
77440a10e1cSStephan Aßmus 			tri2.Set((rect.left + rect.right + 1) / 2,
77540a10e1cSStephan Aßmus 				rect.bottom - rect.Height() / 1.33);
77640a10e1cSStephan Aßmus 			tri3.Set(rect.right + 1, rect.bottom);
77740a10e1cSStephan Aßmus 			break;
77840a10e1cSStephan Aßmus 		case B_DOWN_ARROW:
77940a10e1cSStephan Aßmus 		default:
78040a10e1cSStephan Aßmus 			tri1.Set(rect.left, rect.top);
78140a10e1cSStephan Aßmus 			tri2.Set((rect.left + rect.right + 1) / 2,
78240a10e1cSStephan Aßmus 				rect.top + rect.Height() / 1.33);
78340a10e1cSStephan Aßmus 			tri3.Set(rect.right + 1, rect.top);
78440a10e1cSStephan Aßmus 			break;
78540a10e1cSStephan Aßmus 	}
78640a10e1cSStephan Aßmus 	// offset triangle if down
78740a10e1cSStephan Aßmus 	if (flags & B_ACTIVATED)
78840a10e1cSStephan Aßmus 		view->MovePenTo(BPoint(1, 1));
78940a10e1cSStephan Aßmus 	else
79040a10e1cSStephan Aßmus 		view->MovePenTo(BPoint(0, 0));
79140a10e1cSStephan Aßmus 
79240a10e1cSStephan Aßmus 	BShape arrowShape;
79340a10e1cSStephan Aßmus 	arrowShape.MoveTo(tri1);
79440a10e1cSStephan Aßmus 	arrowShape.LineTo(tri2);
79540a10e1cSStephan Aßmus 	arrowShape.LineTo(tri3);
79640a10e1cSStephan Aßmus 
79740a10e1cSStephan Aßmus 	if (flags & B_DISABLED)
79840a10e1cSStephan Aßmus 		tint = (tint + B_NO_TINT + B_NO_TINT) / 3;
79940a10e1cSStephan Aßmus 
80040a10e1cSStephan Aßmus 	view->SetHighColor(tint_color(base, tint));
80140a10e1cSStephan Aßmus 
80240a10e1cSStephan Aßmus 	float penSize = view->PenSize();
80340a10e1cSStephan Aßmus 	drawing_mode mode = view->DrawingMode();
80440a10e1cSStephan Aßmus 
80540a10e1cSStephan Aßmus 	view->SetPenSize(ceilf(hInset / 2.0));
80640a10e1cSStephan Aßmus 	view->SetDrawingMode(B_OP_OVER);
80740a10e1cSStephan Aßmus 	view->StrokeShape(&arrowShape);
80840a10e1cSStephan Aßmus 
80940a10e1cSStephan Aßmus 	view->SetPenSize(penSize);
81040a10e1cSStephan Aßmus 	view->SetDrawingMode(mode);
81140a10e1cSStephan Aßmus }
81240a10e1cSStephan Aßmus 
81340a10e1cSStephan Aßmus 
8142f86ba45SStephan Aßmus rgb_color
8152f86ba45SStephan Aßmus BControlLook::SliderBarColor(const rgb_color& base)
8162f86ba45SStephan Aßmus {
8172f86ba45SStephan Aßmus 	return tint_color(ui_color(B_PANEL_BACKGROUND_COLOR), B_DARKEN_1_TINT);
8182f86ba45SStephan Aßmus }
8192f86ba45SStephan Aßmus 
8202f86ba45SStephan Aßmus 
8212f86ba45SStephan Aßmus void
8222f86ba45SStephan Aßmus BControlLook::DrawSliderBar(BView* view, BRect rect, const BRect& updateRect,
8232f86ba45SStephan Aßmus 	const rgb_color& base, rgb_color leftFillColor, rgb_color rightFillColor,
8242f86ba45SStephan Aßmus 	float sliderScale, uint32 flags, enum orientation orientation)
8252f86ba45SStephan Aßmus {
8262f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
8272f86ba45SStephan Aßmus 		return;
8282f86ba45SStephan Aßmus 
8292f86ba45SStephan Aßmus 	// separate the bar in two sides
8302f86ba45SStephan Aßmus 	float sliderPosition;
8312f86ba45SStephan Aßmus 	BRect leftBarSide = rect;
8322f86ba45SStephan Aßmus 	BRect rightBarSide = rect;
8332f86ba45SStephan Aßmus 
8342f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
8352f86ba45SStephan Aßmus 		sliderPosition = floorf(rect.left + 2 + (rect.Width() - 2)
8362f86ba45SStephan Aßmus 			* sliderScale);
8372f86ba45SStephan Aßmus 		leftBarSide.right = sliderPosition - 1;
8382f86ba45SStephan Aßmus 		rightBarSide.left = sliderPosition;
8392f86ba45SStephan Aßmus 	} else {
8402f86ba45SStephan Aßmus 		sliderPosition = floorf(rect.top + 2 + (rect.Height() - 2)
8412f86ba45SStephan Aßmus 			* sliderScale);
8422f86ba45SStephan Aßmus 		leftBarSide.bottom = sliderPosition - 1;
8432f86ba45SStephan Aßmus 		rightBarSide.top = sliderPosition;
8442f86ba45SStephan Aßmus 	}
8452f86ba45SStephan Aßmus 
8462f86ba45SStephan Aßmus 	// fill the background for the corners, exclude the middle bar for now
8472f86ba45SStephan Aßmus 	BRegion region(rect);
8482f86ba45SStephan Aßmus 	region.Exclude(rightBarSide);
8492f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
8502f86ba45SStephan Aßmus 
8512f86ba45SStephan Aßmus 	view->PushState();
8522f86ba45SStephan Aßmus 
8532f86ba45SStephan Aßmus 	DrawSliderBar(view, rect, updateRect, base, leftFillColor, flags,
8542f86ba45SStephan Aßmus 		orientation);
8552f86ba45SStephan Aßmus 
8562f86ba45SStephan Aßmus 	view->PopState();
8572f86ba45SStephan Aßmus 
8582f86ba45SStephan Aßmus 	region.Set(rect);
8592f86ba45SStephan Aßmus 	region.Exclude(leftBarSide);
8602f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
8612f86ba45SStephan Aßmus 
8622f86ba45SStephan Aßmus 	view->PushState();
8632f86ba45SStephan Aßmus 
8642f86ba45SStephan Aßmus 	DrawSliderBar(view, rect, updateRect, base, rightFillColor, flags,
8652f86ba45SStephan Aßmus 		orientation);
8662f86ba45SStephan Aßmus 
8672f86ba45SStephan Aßmus 	view->PopState();
8682f86ba45SStephan Aßmus 
8692f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
8702f86ba45SStephan Aßmus }
8712f86ba45SStephan Aßmus 
8722f86ba45SStephan Aßmus 
8732f86ba45SStephan Aßmus void
8742f86ba45SStephan Aßmus BControlLook::DrawSliderBar(BView* view, BRect rect, const BRect& updateRect,
8752f86ba45SStephan Aßmus 	const rgb_color& base, rgb_color fillColor, uint32 flags,
8762f86ba45SStephan Aßmus 	enum orientation orientation)
8772f86ba45SStephan Aßmus {
8782f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
8792f86ba45SStephan Aßmus 		return;
8802f86ba45SStephan Aßmus 
8812f86ba45SStephan Aßmus 	// separate the rect into corners
8822f86ba45SStephan Aßmus 	BRect leftCorner(rect);
8832f86ba45SStephan Aßmus 	BRect rightCorner(rect);
8842f86ba45SStephan Aßmus 	BRect barRect(rect);
8852f86ba45SStephan Aßmus 
8862f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
8872f86ba45SStephan Aßmus 		leftCorner.right = leftCorner.left + leftCorner.Height();
8882f86ba45SStephan Aßmus 		rightCorner.left = rightCorner.right - rightCorner.Height();
8892f86ba45SStephan Aßmus 		barRect.left += ceilf(barRect.Height() / 2);
8902f86ba45SStephan Aßmus 		barRect.right -= ceilf(barRect.Height() / 2);
8912f86ba45SStephan Aßmus 	} else {
8922f86ba45SStephan Aßmus 		leftCorner.bottom = leftCorner.top + leftCorner.Width();
8932f86ba45SStephan Aßmus 		rightCorner.top = rightCorner.bottom - rightCorner.Width();
8942f86ba45SStephan Aßmus 		barRect.top += ceilf(barRect.Width() / 2);
8952f86ba45SStephan Aßmus 		barRect.bottom -= ceilf(barRect.Width() / 2);
8962f86ba45SStephan Aßmus 	}
8972f86ba45SStephan Aßmus 
8982f86ba45SStephan Aßmus 	// fill the background for the corners, exclude the middle bar for now
8992f86ba45SStephan Aßmus 	BRegion region(rect);
9002f86ba45SStephan Aßmus 	region.Exclude(barRect);
9012f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
9022f86ba45SStephan Aßmus 
9032f86ba45SStephan Aßmus 	view->SetHighColor(base);
9042f86ba45SStephan Aßmus 	view->FillRect(rect);
9052f86ba45SStephan Aßmus 
9062f86ba45SStephan Aßmus 	// figure out the tints to be used
9072f86ba45SStephan Aßmus 	float edgeLightTint;
9082f86ba45SStephan Aßmus 	float edgeShadowTint;
9092f86ba45SStephan Aßmus 	float frameLightTint;
9102f86ba45SStephan Aßmus 	float frameShadowTint;
9112f86ba45SStephan Aßmus 	float fillLightTint;
9122f86ba45SStephan Aßmus 	float fillShadowTint;
9132f86ba45SStephan Aßmus 
9142f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
9152f86ba45SStephan Aßmus 		edgeLightTint = 1.0;
9162f86ba45SStephan Aßmus 		edgeShadowTint = 1.0;
9172f86ba45SStephan Aßmus 		frameLightTint = 1.20;
9182f86ba45SStephan Aßmus 		frameShadowTint = 1.25;
9192f86ba45SStephan Aßmus 		fillLightTint = 0.9;
9202f86ba45SStephan Aßmus 		fillShadowTint = 1.05;
9212f86ba45SStephan Aßmus 
9222f86ba45SStephan Aßmus 		fillColor.red = uint8(fillColor.red * 0.4 + base.red * 0.6);
9232f86ba45SStephan Aßmus 		fillColor.green = uint8(fillColor.green * 0.4 + base.green * 0.6);
9242f86ba45SStephan Aßmus 		fillColor.blue = uint8(fillColor.blue * 0.4 + base.blue * 0.6);
9252f86ba45SStephan Aßmus 	} else {
9262f86ba45SStephan Aßmus 		edgeLightTint = 0.65;
9272f86ba45SStephan Aßmus 		edgeShadowTint = 1.07;
9282f86ba45SStephan Aßmus 		frameLightTint = 1.40;
9292f86ba45SStephan Aßmus 		frameShadowTint = 1.50;
9302f86ba45SStephan Aßmus 		fillLightTint = 0.8;
9312f86ba45SStephan Aßmus 		fillShadowTint = 1.1;
9322f86ba45SStephan Aßmus 	}
9332f86ba45SStephan Aßmus 
9342f86ba45SStephan Aßmus 	rgb_color edgeLightColor = tint_color(base, edgeLightTint);
9352f86ba45SStephan Aßmus 	rgb_color edgeShadowColor = tint_color(base, edgeShadowTint);
9362f86ba45SStephan Aßmus 	rgb_color frameLightColor = tint_color(fillColor, frameLightTint);
9372f86ba45SStephan Aßmus 	rgb_color frameShadowColor = tint_color(fillColor, frameShadowTint);
9382f86ba45SStephan Aßmus 	rgb_color fillLightColor = tint_color(fillColor, fillLightTint);
9392f86ba45SStephan Aßmus 	rgb_color fillShadowColor = tint_color(fillColor, fillShadowTint);
9402f86ba45SStephan Aßmus 
9412f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
9422f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, leftCorner, updateRect, edgeLightColor,
9432f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
9442f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 1.0, 0.0, -1.0, orientation);
9452f86ba45SStephan Aßmus 
9462f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, rightCorner, updateRect, edgeLightColor,
9472f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
9482f86ba45SStephan Aßmus 			fillShadowColor, 0.0, 1.0, -1.0, -1.0, orientation);
9492f86ba45SStephan Aßmus 	} else {
9502f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, leftCorner, updateRect, edgeLightColor,
9512f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
9522f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 1.0, -1.0, 0.0, orientation);
9532f86ba45SStephan Aßmus 
9542f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, rightCorner, updateRect, edgeLightColor,
9552f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
9562f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 0.0, -1.0, -1.0, orientation);
9572f86ba45SStephan Aßmus 	}
9582f86ba45SStephan Aßmus 
9592f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
9602f86ba45SStephan Aßmus 
9612f86ba45SStephan Aßmus 	view->BeginLineArray(4);
9622f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
9632f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.RightTop(), edgeShadowColor);
9642f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftBottom(), barRect.RightBottom(),
9652f86ba45SStephan Aßmus 			edgeLightColor);
9662f86ba45SStephan Aßmus 		barRect.InsetBy(0, 1);
9672f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.RightTop(), frameShadowColor);
9682f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftBottom(), barRect.RightBottom(),
9692f86ba45SStephan Aßmus 			frameLightColor);
9702f86ba45SStephan Aßmus 		barRect.InsetBy(0, 1);
9712f86ba45SStephan Aßmus 	} else {
9722f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.LeftBottom(), edgeShadowColor);
9732f86ba45SStephan Aßmus 		view->AddLine(barRect.RightTop(), barRect.RightBottom(),
9742f86ba45SStephan Aßmus 			edgeLightColor);
9752f86ba45SStephan Aßmus 		barRect.InsetBy(1, 0);
9762f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.LeftBottom(), frameShadowColor);
9772f86ba45SStephan Aßmus 		view->AddLine(barRect.RightTop(), barRect.RightBottom(),
9782f86ba45SStephan Aßmus 			frameLightColor);
9792f86ba45SStephan Aßmus 		barRect.InsetBy(1, 0);
9802f86ba45SStephan Aßmus 	}
9812f86ba45SStephan Aßmus 	view->EndLineArray();
9822f86ba45SStephan Aßmus 
9832f86ba45SStephan Aßmus 	_FillGradient(view, barRect, fillColor, fillShadowTint, fillLightTint,
9842f86ba45SStephan Aßmus 		orientation);
9852f86ba45SStephan Aßmus }
9862f86ba45SStephan Aßmus 
9872f86ba45SStephan Aßmus 
9882f86ba45SStephan Aßmus void
9892f86ba45SStephan Aßmus BControlLook::DrawSliderThumb(BView* view, BRect& rect, const BRect& updateRect,
9902f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, enum orientation orientation)
9912f86ba45SStephan Aßmus {
9922f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
9932f86ba45SStephan Aßmus 		return;
9942f86ba45SStephan Aßmus 
9952f86ba45SStephan Aßmus 	// figure out frame color
9962f86ba45SStephan Aßmus 	rgb_color frameLightColor;
9972f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
9982f86ba45SStephan Aßmus 	rgb_color shadowColor = (rgb_color){ 0, 0, 0, 60 };
9992f86ba45SStephan Aßmus 
10002f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
10012f86ba45SStephan Aßmus 		// focused
10022f86ba45SStephan Aßmus 		frameLightColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
10032f86ba45SStephan Aßmus 		frameShadowColor = frameLightColor;
10042f86ba45SStephan Aßmus 	} else {
10052f86ba45SStephan Aßmus 		// figure out the tints to be used
10062f86ba45SStephan Aßmus 		float frameLightTint;
10072f86ba45SStephan Aßmus 		float frameShadowTint;
10082f86ba45SStephan Aßmus 
10092f86ba45SStephan Aßmus 		if (flags & B_DISABLED) {
10102f86ba45SStephan Aßmus 			frameLightTint = 1.30;
10112f86ba45SStephan Aßmus 			frameShadowTint = 1.35;
10122f86ba45SStephan Aßmus 			shadowColor.alpha = 30;
10132f86ba45SStephan Aßmus 		} else {
10142f86ba45SStephan Aßmus 			frameLightTint = 1.6;
10152f86ba45SStephan Aßmus 			frameShadowTint = 1.65;
10162f86ba45SStephan Aßmus 		}
10172f86ba45SStephan Aßmus 
10182f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, frameLightTint);
10192f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, frameShadowTint);
10202f86ba45SStephan Aßmus 	}
10212f86ba45SStephan Aßmus 
10222f86ba45SStephan Aßmus 	BRect originalRect(rect);
10232f86ba45SStephan Aßmus 	rect.right--;
10242f86ba45SStephan Aßmus 	rect.bottom--;
10252f86ba45SStephan Aßmus 
10262f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor,
10272f86ba45SStephan Aßmus 		frameShadowColor, frameShadowColor);
10282f86ba45SStephan Aßmus 
10292f86ba45SStephan Aßmus 	flags &= ~B_ACTIVATED;
10302f86ba45SStephan Aßmus 	DrawButtonBackground(view, rect, updateRect, base, flags);
10312f86ba45SStephan Aßmus 
10322f86ba45SStephan Aßmus 	// thumb shadow
10332f86ba45SStephan Aßmus 	view->SetDrawingMode(B_OP_ALPHA);
10342f86ba45SStephan Aßmus 	view->SetHighColor(shadowColor);
10352f86ba45SStephan Aßmus 	originalRect.left++;
10362f86ba45SStephan Aßmus 	originalRect.top++;
10372f86ba45SStephan Aßmus 	view->StrokeLine(originalRect.LeftBottom(), originalRect.RightBottom());
10382f86ba45SStephan Aßmus 	originalRect.bottom--;
10392f86ba45SStephan Aßmus 	view->StrokeLine(originalRect.RightTop(), originalRect.RightBottom());
10402f86ba45SStephan Aßmus 
10412f86ba45SStephan Aßmus 	// thumb edge
10422f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
10432f86ba45SStephan Aßmus 		rect.InsetBy(0, floorf(rect.Height() / 4));
10442f86ba45SStephan Aßmus 		rect.left = floorf((rect.left + rect.right) / 2);
10452f86ba45SStephan Aßmus 		rect.right = rect.left + 1;
10462f86ba45SStephan Aßmus 		shadowColor = tint_color(base, B_DARKEN_2_TINT);
10472f86ba45SStephan Aßmus 		shadowColor.alpha = 128;
10482f86ba45SStephan Aßmus 		view->SetHighColor(shadowColor);
10492f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
10502f86ba45SStephan Aßmus 		rgb_color lightColor = tint_color(base, B_LIGHTEN_2_TINT);
10512f86ba45SStephan Aßmus 		lightColor.alpha = 128;
10522f86ba45SStephan Aßmus 		view->SetHighColor(lightColor);
10532f86ba45SStephan Aßmus 		view->StrokeLine(rect.RightTop(), rect.RightBottom());
10542f86ba45SStephan Aßmus 	} else {
10552f86ba45SStephan Aßmus 		rect.InsetBy(floorf(rect.Width() / 4), 0);
10562f86ba45SStephan Aßmus 		rect.top = floorf((rect.top + rect.bottom) / 2);
10572f86ba45SStephan Aßmus 		rect.bottom = rect.top + 1;
10582f86ba45SStephan Aßmus 		shadowColor = tint_color(base, B_DARKEN_2_TINT);
10592f86ba45SStephan Aßmus 		shadowColor.alpha = 128;
10602f86ba45SStephan Aßmus 		view->SetHighColor(shadowColor);
10612f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.RightTop());
10622f86ba45SStephan Aßmus 		rgb_color lightColor = tint_color(base, B_LIGHTEN_2_TINT);
10632f86ba45SStephan Aßmus 		lightColor.alpha = 128;
10642f86ba45SStephan Aßmus 		view->SetHighColor(lightColor);
10652f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftBottom(), rect.RightBottom());
10662f86ba45SStephan Aßmus 	}
10672f86ba45SStephan Aßmus 
10682f86ba45SStephan Aßmus 	view->SetDrawingMode(B_OP_COPY);
10692f86ba45SStephan Aßmus }
10702f86ba45SStephan Aßmus 
10712f86ba45SStephan Aßmus 
10722f86ba45SStephan Aßmus void
10732f86ba45SStephan Aßmus BControlLook::DrawSliderTriangle(BView* view, BRect& rect,
10742f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
10752f86ba45SStephan Aßmus 	enum orientation orientation)
10762f86ba45SStephan Aßmus {
10778ee9217eSStephan Aßmus 	DrawSliderTriangle(view, rect, updateRect, base, base, flags, orientation);
10788ee9217eSStephan Aßmus }
10798ee9217eSStephan Aßmus 
10808ee9217eSStephan Aßmus 
10818ee9217eSStephan Aßmus void
10828ee9217eSStephan Aßmus BControlLook::DrawSliderTriangle(BView* view, BRect& rect,
10838ee9217eSStephan Aßmus 	const BRect& updateRect, const rgb_color& base, const rgb_color& fill,
10848ee9217eSStephan Aßmus 	uint32 flags, enum orientation orientation)
10858ee9217eSStephan Aßmus {
10862f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
10872f86ba45SStephan Aßmus 		return;
10882f86ba45SStephan Aßmus 
10892f86ba45SStephan Aßmus 	// figure out frame color
10902f86ba45SStephan Aßmus 	rgb_color frameLightColor;
10912f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
10922f86ba45SStephan Aßmus 	rgb_color shadowColor = (rgb_color){ 0, 0, 0, 60 };
10932f86ba45SStephan Aßmus 
10942f86ba45SStephan Aßmus 	float topTint = 0.49;
10952f86ba45SStephan Aßmus 	float middleTint1 = 0.62;
10962f86ba45SStephan Aßmus 	float middleTint2 = 0.76;
10972f86ba45SStephan Aßmus 	float bottomTint = 0.90;
10982f86ba45SStephan Aßmus 
10992f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
11002f86ba45SStephan Aßmus 		topTint = (topTint + B_NO_TINT) / 2;
11012f86ba45SStephan Aßmus 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
11022f86ba45SStephan Aßmus 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
11032f86ba45SStephan Aßmus 		bottomTint = (bottomTint + B_NO_TINT) / 2;
11042f86ba45SStephan Aßmus 	} else if (flags & B_HOVER) {
11052f86ba45SStephan Aßmus 		static const float kHoverTintFactor = 0.85;
11062f86ba45SStephan Aßmus 		topTint *= kHoverTintFactor;
11072f86ba45SStephan Aßmus 		middleTint1 *= kHoverTintFactor;
11082f86ba45SStephan Aßmus 		middleTint2 *= kHoverTintFactor;
11092f86ba45SStephan Aßmus 		bottomTint *= kHoverTintFactor;
11102f86ba45SStephan Aßmus 	}
11112f86ba45SStephan Aßmus 
11122f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
11132f86ba45SStephan Aßmus 		// focused
11142f86ba45SStephan Aßmus 		frameLightColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
11152f86ba45SStephan Aßmus 		frameShadowColor = frameLightColor;
11162f86ba45SStephan Aßmus 	} else {
11172f86ba45SStephan Aßmus 		// figure out the tints to be used
11182f86ba45SStephan Aßmus 		float frameLightTint;
11192f86ba45SStephan Aßmus 		float frameShadowTint;
11202f86ba45SStephan Aßmus 
11212f86ba45SStephan Aßmus 		if (flags & B_DISABLED) {
11222f86ba45SStephan Aßmus 			frameLightTint = 1.30;
11232f86ba45SStephan Aßmus 			frameShadowTint = 1.35;
11242f86ba45SStephan Aßmus 			shadowColor.alpha = 30;
11252f86ba45SStephan Aßmus 		} else {
11262f86ba45SStephan Aßmus 			frameLightTint = 1.6;
11272f86ba45SStephan Aßmus 			frameShadowTint = 1.65;
11282f86ba45SStephan Aßmus 		}
11292f86ba45SStephan Aßmus 
11302f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, frameLightTint);
11312f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, frameShadowTint);
11322f86ba45SStephan Aßmus 	}
11332f86ba45SStephan Aßmus 
11348ee9217eSStephan Aßmus 	// make room for the shadow
11358ee9217eSStephan Aßmus 	rect.right--;
11368ee9217eSStephan Aßmus 	rect.bottom--;
11372f86ba45SStephan Aßmus 
11382f86ba45SStephan Aßmus 	uint32 viewFlags = view->Flags();
11392f86ba45SStephan Aßmus 	view->SetFlags(viewFlags | B_SUBPIXEL_PRECISE);
11402f86ba45SStephan Aßmus 	view->SetLineMode(B_ROUND_CAP, B_ROUND_JOIN);
11412f86ba45SStephan Aßmus 
11428ee9217eSStephan Aßmus 	float center = (rect.left + rect.right) / 2;
11432f86ba45SStephan Aßmus 
11448ee9217eSStephan Aßmus 	BShape shape;
11458ee9217eSStephan Aßmus 	shape.MoveTo(BPoint(rect.left + 0.5, rect.bottom + 0.5));
11468ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.right + 0.5, rect.bottom + 0.5));
11478ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.right + 0.5, rect.bottom - 1 + 0.5));
11488ee9217eSStephan Aßmus 	shape.LineTo(BPoint(center + 0.5, rect.top + 0.5));
11498ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.left + 0.5, rect.bottom - 1 + 0.5));
11508ee9217eSStephan Aßmus 	shape.Close();
11518ee9217eSStephan Aßmus 
11528ee9217eSStephan Aßmus 	view->MovePenTo(BPoint(1, 1));
11538ee9217eSStephan Aßmus 
11548ee9217eSStephan Aßmus 	view->SetDrawingMode(B_OP_ALPHA);
11558ee9217eSStephan Aßmus 	view->SetHighColor(shadowColor);
11568ee9217eSStephan Aßmus 	view->StrokeShape(&shape);
11578ee9217eSStephan Aßmus 
11588ee9217eSStephan Aßmus 	view->MovePenTo(B_ORIGIN);
11598ee9217eSStephan Aßmus 
11608ee9217eSStephan Aßmus 	view->SetDrawingMode(B_OP_COPY);
11612f86ba45SStephan Aßmus 	view->SetHighColor(frameLightColor);
11628ee9217eSStephan Aßmus 	view->StrokeShape(&shape);
11632f86ba45SStephan Aßmus 
11642f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
11658ee9217eSStephan Aßmus 	shape.Clear();
11668ee9217eSStephan Aßmus 	shape.MoveTo(BPoint(rect.left, rect.bottom + 1));
11678ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.right + 1, rect.bottom + 1));
11688ee9217eSStephan Aßmus 	shape.LineTo(BPoint(center + 0.5, rect.top));
11698ee9217eSStephan Aßmus 	shape.Close();
11702f86ba45SStephan Aßmus 
11712f86ba45SStephan Aßmus 	BGradientLinear gradient;
11722f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
11738ee9217eSStephan Aßmus 		_MakeGradient(gradient, rect, fill, topTint, bottomTint);
11742f86ba45SStephan Aßmus 	} else {
11758ee9217eSStephan Aßmus 		_MakeGlossyGradient(gradient, rect, fill, topTint, middleTint1,
11762f86ba45SStephan Aßmus 			middleTint2, bottomTint);
11772f86ba45SStephan Aßmus 	}
11782f86ba45SStephan Aßmus 
11798ee9217eSStephan Aßmus 	view->FillShape(&shape, gradient);
11802f86ba45SStephan Aßmus 
11812f86ba45SStephan Aßmus 	view->SetFlags(viewFlags);
11822f86ba45SStephan Aßmus }
11832f86ba45SStephan Aßmus 
11842f86ba45SStephan Aßmus 
11852f86ba45SStephan Aßmus void
11862f86ba45SStephan Aßmus BControlLook::DrawSliderHashMarks(BView* view, BRect& rect,
11872f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, int32 count,
11882f86ba45SStephan Aßmus 	hash_mark_location location, uint32 flags, enum orientation orientation)
11892f86ba45SStephan Aßmus {
11902f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
11912f86ba45SStephan Aßmus 		return;
11922f86ba45SStephan Aßmus 
11932f86ba45SStephan Aßmus 	rgb_color lightColor;
11942f86ba45SStephan Aßmus 	rgb_color darkColor;
11952f86ba45SStephan Aßmus 
11962f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
11972f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.9);
11982f86ba45SStephan Aßmus 		darkColor = tint_color(base, 1.07);
11992f86ba45SStephan Aßmus 	} else {
12002f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.8);
12012f86ba45SStephan Aßmus 		darkColor = tint_color(base, 1.14);
12022f86ba45SStephan Aßmus 	}
12032f86ba45SStephan Aßmus 
12042f86ba45SStephan Aßmus 	int32 hashMarkCount = max_c(count, 2);
12052f86ba45SStephan Aßmus 		// draw at least two hashmarks at min/max if
12062f86ba45SStephan Aßmus 		// fHashMarks != B_HASH_MARKS_NONE
12072f86ba45SStephan Aßmus 	float factor;
12082f86ba45SStephan Aßmus 	float startPos;
12092f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
12102f86ba45SStephan Aßmus 		factor = (rect.Width() - 2) / (hashMarkCount - 1);
12112f86ba45SStephan Aßmus 		startPos = rect.left + 1;
12122f86ba45SStephan Aßmus 	} else {
12132f86ba45SStephan Aßmus 		factor = (rect.Height() - 2) / (hashMarkCount - 1);
12142f86ba45SStephan Aßmus 		startPos = rect.top + 1;
12152f86ba45SStephan Aßmus 	}
12162f86ba45SStephan Aßmus 
12172f86ba45SStephan Aßmus 	if (location & B_HASH_MARKS_TOP) {
12182f86ba45SStephan Aßmus 		view->BeginLineArray(hashMarkCount * 2);
12192f86ba45SStephan Aßmus 
12202f86ba45SStephan Aßmus 		if (orientation == B_HORIZONTAL) {
12212f86ba45SStephan Aßmus 			float pos = startPos;
12222f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
12232f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos, rect.top),
12242f86ba45SStephan Aßmus 							  BPoint(pos, rect.top + 4), darkColor);
12252f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos + 1, rect.top),
12262f86ba45SStephan Aßmus 							  BPoint(pos + 1, rect.top + 4), lightColor);
12272f86ba45SStephan Aßmus 
12282f86ba45SStephan Aßmus 				pos += factor;
12292f86ba45SStephan Aßmus 			}
12302f86ba45SStephan Aßmus 		} else {
12312f86ba45SStephan Aßmus 			float pos = startPos;
12322f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
12332f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.left, pos),
12342f86ba45SStephan Aßmus 							  BPoint(rect.left + 4, pos), darkColor);
12352f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.left, pos + 1),
12362f86ba45SStephan Aßmus 							  BPoint(rect.left + 4, pos + 1), lightColor);
12372f86ba45SStephan Aßmus 
12382f86ba45SStephan Aßmus 				pos += factor;
12392f86ba45SStephan Aßmus 			}
12402f86ba45SStephan Aßmus 		}
12412f86ba45SStephan Aßmus 
12422f86ba45SStephan Aßmus 		view->EndLineArray();
12432f86ba45SStephan Aßmus 	}
12442f86ba45SStephan Aßmus 
12452f86ba45SStephan Aßmus 	if (location & B_HASH_MARKS_BOTTOM) {
12462f86ba45SStephan Aßmus 
12472f86ba45SStephan Aßmus 		view->BeginLineArray(hashMarkCount * 2);
12482f86ba45SStephan Aßmus 
12492f86ba45SStephan Aßmus 		if (orientation == B_HORIZONTAL) {
12502f86ba45SStephan Aßmus 			float pos = startPos;
12512f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
12522f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos, rect.bottom - 4),
12532f86ba45SStephan Aßmus 							  BPoint(pos, rect.bottom), darkColor);
12542f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos + 1, rect.bottom - 4),
12552f86ba45SStephan Aßmus 							  BPoint(pos + 1, rect.bottom), lightColor);
12562f86ba45SStephan Aßmus 
12572f86ba45SStephan Aßmus 				pos += factor;
12582f86ba45SStephan Aßmus 			}
12592f86ba45SStephan Aßmus 		} else {
12602f86ba45SStephan Aßmus 			float pos = startPos;
12612f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
12622f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.right - 4, pos),
12632f86ba45SStephan Aßmus 							  BPoint(rect.right, pos), darkColor);
12642f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.right - 4, pos + 1),
12652f86ba45SStephan Aßmus 							  BPoint(rect.right, pos + 1), lightColor);
12662f86ba45SStephan Aßmus 
12672f86ba45SStephan Aßmus 				pos += factor;
12682f86ba45SStephan Aßmus 			}
12692f86ba45SStephan Aßmus 		}
12702f86ba45SStephan Aßmus 
12712f86ba45SStephan Aßmus 		view->EndLineArray();
12722f86ba45SStephan Aßmus 	}
12732f86ba45SStephan Aßmus }
12742f86ba45SStephan Aßmus 
12752f86ba45SStephan Aßmus 
12762f86ba45SStephan Aßmus void
12772f86ba45SStephan Aßmus BControlLook::DrawActiveTab(BView* view, BRect& rect, const BRect& updateRect,
12782f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
12792f86ba45SStephan Aßmus {
12802f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
12812f86ba45SStephan Aßmus 		return;
12822f86ba45SStephan Aßmus 
12832f86ba45SStephan Aßmus 	rgb_color edgeShadowColor;
12842f86ba45SStephan Aßmus 	rgb_color edgeLightColor;
12852f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
12862f86ba45SStephan Aßmus 	rgb_color frameLightColor;
12872f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
12882f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
12892f86ba45SStephan Aßmus 	BGradientLinear fillGradient;
12902f86ba45SStephan Aßmus 	fillGradient.SetStart(rect.LeftTop() + BPoint(3, 3));
12912f86ba45SStephan Aßmus 	fillGradient.SetEnd(rect.LeftBottom() + BPoint(3, -3));
12922f86ba45SStephan Aßmus 
12932f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
12942f86ba45SStephan Aßmus 		edgeShadowColor = base;
12952f86ba45SStephan Aßmus 		edgeLightColor = base;
12962f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
12972f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.25);
12982f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(base, 1.07);
12992f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.8);
13002f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.85), 0);
13012f86ba45SStephan Aßmus 		fillGradient.AddColor(base, 255);
13022f86ba45SStephan Aßmus 	} else {
13032f86ba45SStephan Aßmus 		edgeShadowColor = tint_color(base, 1.03);
13042f86ba45SStephan Aßmus 		edgeLightColor = tint_color(base, 0.80);
13052f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
13062f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.30);
13072f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(base, 1.07);
13082f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.6);
13092f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.75), 0);
13102f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.03), 255);
13112f86ba45SStephan Aßmus 	}
131212ea5a2cSStephan Aßmus 
13132f86ba45SStephan Aßmus 	static const float kRoundCornerRadius = 4;
13142f86ba45SStephan Aßmus 
13152f86ba45SStephan Aßmus 	// left/top corner
13162f86ba45SStephan Aßmus 	BRect cornerRect(rect);
13172f86ba45SStephan Aßmus 	cornerRect.right = cornerRect.left + kRoundCornerRadius;
13182f86ba45SStephan Aßmus 	cornerRect.bottom = cornerRect.top + kRoundCornerRadius;
13192f86ba45SStephan Aßmus 
13202f86ba45SStephan Aßmus 	BRegion clipping(rect);
13212f86ba45SStephan Aßmus 	clipping.Exclude(cornerRect);
13222f86ba45SStephan Aßmus 
13232f86ba45SStephan Aßmus 	_DrawRoundCornerLeftTop(view, cornerRect, updateRect, base, edgeShadowColor,
13242f86ba45SStephan Aßmus 		frameLightColor, bevelLightColor, fillGradient);
13252f86ba45SStephan Aßmus 
13262f86ba45SStephan Aßmus 	// left/top corner
13272f86ba45SStephan Aßmus 	cornerRect.right = rect.right;
13282f86ba45SStephan Aßmus 	cornerRect.left = cornerRect.right - kRoundCornerRadius;
13292f86ba45SStephan Aßmus 
13302f86ba45SStephan Aßmus 	clipping.Exclude(cornerRect);
13312f86ba45SStephan Aßmus 
13322f86ba45SStephan Aßmus 	_DrawRoundCornerRightTop(view, cornerRect, updateRect, base, edgeShadowColor,
13332f86ba45SStephan Aßmus 		edgeLightColor, frameLightColor, frameShadowColor, bevelLightColor,
13342f86ba45SStephan Aßmus 		bevelShadowColor, fillGradient);
13352f86ba45SStephan Aßmus 
13362f86ba45SStephan Aßmus 	// rest of frame and fill
13372f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&clipping);
13382f86ba45SStephan Aßmus 
13392f86ba45SStephan Aßmus 	_DrawFrame(view, rect, edgeShadowColor, edgeShadowColor, edgeLightColor,
13402f86ba45SStephan Aßmus 		edgeLightColor,
13412f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
13422f86ba45SStephan Aßmus 	if ((borders & B_LEFT_BORDER) == 0)
13432f86ba45SStephan Aßmus 		rect.left++;
13442f86ba45SStephan Aßmus 	if ((borders & B_RIGHT_BORDER) == 0)
13452f86ba45SStephan Aßmus 		rect.right--;
13462f86ba45SStephan Aßmus 
13472f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor, frameShadowColor,
13482f86ba45SStephan Aßmus 		frameShadowColor, B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER);
13492f86ba45SStephan Aßmus 
13502f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelLightColor, bevelLightColor, bevelShadowColor,
13512f86ba45SStephan Aßmus 		bevelShadowColor);
13522f86ba45SStephan Aßmus 
13532f86ba45SStephan Aßmus 	view->FillRect(rect, fillGradient);
13542f86ba45SStephan Aßmus 
13552f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
13562f86ba45SStephan Aßmus }
13572f86ba45SStephan Aßmus 
13582f86ba45SStephan Aßmus 
13592f86ba45SStephan Aßmus void
136083aff015SPhilippe Houdoin BControlLook::DrawInactiveTab(BView* view, BRect& rect, const BRect& updateRect,
13612f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
13622f86ba45SStephan Aßmus {
13632f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
13642f86ba45SStephan Aßmus 		return;
13652f86ba45SStephan Aßmus 
13662f86ba45SStephan Aßmus 	rgb_color edgeShadowColor;
13672f86ba45SStephan Aßmus 	rgb_color edgeLightColor;
13682f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
13692f86ba45SStephan Aßmus 	rgb_color frameLightColor;
13702f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
13712f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
13722f86ba45SStephan Aßmus 	BGradientLinear fillGradient;
13732f86ba45SStephan Aßmus 	fillGradient.SetStart(rect.LeftTop() + BPoint(3, 3));
13742f86ba45SStephan Aßmus 	fillGradient.SetEnd(rect.LeftBottom() + BPoint(3, -3));
13752f86ba45SStephan Aßmus 
13762f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
13772f86ba45SStephan Aßmus 		edgeShadowColor = base;
13782f86ba45SStephan Aßmus 		edgeLightColor = base;
13792f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
13802f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.25);
13812f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(base, 1.07);
13822f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.8);
13832f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.85), 0);
13842f86ba45SStephan Aßmus 		fillGradient.AddColor(base, 255);
13852f86ba45SStephan Aßmus 	} else {
13862f86ba45SStephan Aßmus 		edgeShadowColor = tint_color(base, 1.03);
13872f86ba45SStephan Aßmus 		edgeLightColor = tint_color(base, 0.80);
13882f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
13892f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.30);
139012ea5a2cSStephan Aßmus 		bevelShadowColor = tint_color(base, 1.17);
13912f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 1.10);
13922f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.12), 0);
13932f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.08), 255);
13942f86ba45SStephan Aßmus 	}
13952f86ba45SStephan Aßmus 
13962f86ba45SStephan Aßmus 	// active tabs stand out at the top, but this is an inactive tab
13972f86ba45SStephan Aßmus 	view->SetHighColor(base);
13982f86ba45SStephan Aßmus 	view->FillRect(BRect(rect.left, rect.top, rect.right, rect.top + 4));
13992f86ba45SStephan Aßmus 	rect.top += 4;
14002f86ba45SStephan Aßmus 
14012f86ba45SStephan Aßmus 	// frame and fill
14022f86ba45SStephan Aßmus 	_DrawFrame(view, rect, edgeShadowColor, edgeShadowColor, edgeLightColor,
14032f86ba45SStephan Aßmus 		edgeLightColor,
14042f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
14052f86ba45SStephan Aßmus 
14062f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor, frameShadowColor,
14072f86ba45SStephan Aßmus 		frameShadowColor,
14082f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
14092f86ba45SStephan Aßmus 
141012ea5a2cSStephan Aßmus 	_DrawFrame(view, rect, bevelShadowColor, bevelShadowColor, bevelLightColor,
141112ea5a2cSStephan Aßmus 		bevelLightColor, B_LEFT_BORDER & ~borders);
14122f86ba45SStephan Aßmus 
14132f86ba45SStephan Aßmus 	view->FillRect(rect, fillGradient);
14142f86ba45SStephan Aßmus }
14152f86ba45SStephan Aßmus 
14162f86ba45SStephan Aßmus 
14172f86ba45SStephan Aßmus // #pragma mark -
14182f86ba45SStephan Aßmus 
14192f86ba45SStephan Aßmus 
14202f86ba45SStephan Aßmus void
14212f86ba45SStephan Aßmus BControlLook::DrawBorder(BView* view, BRect& rect, const BRect& updateRect,
14222f86ba45SStephan Aßmus 	const rgb_color& base, border_style border, uint32 flags, uint32 borders)
14232f86ba45SStephan Aßmus {
14242f86ba45SStephan Aßmus 	if (border == B_NO_BORDER)
14252f86ba45SStephan Aßmus 		return;
14262f86ba45SStephan Aßmus 
14272f86ba45SStephan Aßmus 	rgb_color scrollbarFrameColor = tint_color(base, B_DARKEN_2_TINT);
14282f86ba45SStephan Aßmus 	if (flags & B_FOCUSED)
14292f86ba45SStephan Aßmus 		scrollbarFrameColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
14302f86ba45SStephan Aßmus 
14312f86ba45SStephan Aßmus 	if (border == B_FANCY_BORDER)
14322f86ba45SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 1.0, 1.0, borders);
14332f86ba45SStephan Aßmus 
14342f86ba45SStephan Aßmus 	_DrawFrame(view, rect, scrollbarFrameColor, scrollbarFrameColor,
14352f86ba45SStephan Aßmus 		scrollbarFrameColor, scrollbarFrameColor, borders);
14362f86ba45SStephan Aßmus }
14372f86ba45SStephan Aßmus 
14382f86ba45SStephan Aßmus 
14392f86ba45SStephan Aßmus void
14402f86ba45SStephan Aßmus BControlLook::DrawRaisedBorder(BView* view, BRect& rect,
14412f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
14422f86ba45SStephan Aßmus 	uint32 borders)
14432f86ba45SStephan Aßmus {
14442f86ba45SStephan Aßmus 	rgb_color lightColor;
14452f86ba45SStephan Aßmus 	rgb_color shadowColor;
14462f86ba45SStephan Aßmus 
14472f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
14482f86ba45SStephan Aßmus 		lightColor = base;
14492f86ba45SStephan Aßmus 		shadowColor = base;
14502f86ba45SStephan Aßmus 	} else {
14512f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.85);
14522f86ba45SStephan Aßmus 		shadowColor = tint_color(base, 1.07);
14532f86ba45SStephan Aßmus 	}
14542f86ba45SStephan Aßmus 
14552f86ba45SStephan Aßmus 	_DrawFrame(view, rect, lightColor, lightColor, shadowColor, shadowColor,
14562f86ba45SStephan Aßmus 		borders);
14572f86ba45SStephan Aßmus }
14582f86ba45SStephan Aßmus 
14592f86ba45SStephan Aßmus 
14602f86ba45SStephan Aßmus void
14612f86ba45SStephan Aßmus BControlLook::DrawTextControlBorder(BView* view, BRect& rect,
14622f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
14632f86ba45SStephan Aßmus 	uint32 borders)
14642f86ba45SStephan Aßmus {
14652f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
14662f86ba45SStephan Aßmus 		return;
14672f86ba45SStephan Aßmus 
14682f86ba45SStephan Aßmus 	rgb_color dark1BorderColor;
14692f86ba45SStephan Aßmus 	rgb_color dark2BorderColor;
14702f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
14712f86ba45SStephan Aßmus 
14722f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
14732f86ba45SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.0, 1.0, borders);
14742f86ba45SStephan Aßmus 
14752f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.15);
14762f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.15);
14772f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
14782f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.50);
14792f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.49);
14802f86ba45SStephan Aßmus 
14812f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
14822f86ba45SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
14832f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor);
14842f86ba45SStephan Aßmus 
14852f86ba45SStephan Aßmus 		dark2BorderColor = dark1BorderColor;
14862f86ba45SStephan Aßmus 	} else {
14872f86ba45SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.6, 1.0, borders);
14882f86ba45SStephan Aßmus 
14892f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.40);
14902f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.38);
14912f86ba45SStephan Aßmus 	}
14922f86ba45SStephan Aßmus 
14932f86ba45SStephan Aßmus 	if ((flags & B_DISABLED) == 0 && (flags & B_FOCUSED)) {
14942f86ba45SStephan Aßmus 		dark1BorderColor = navigationColor;
14952f86ba45SStephan Aßmus 		dark2BorderColor = navigationColor;
14962f86ba45SStephan Aßmus 	}
14972f86ba45SStephan Aßmus 
14982f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
14992f86ba45SStephan Aßmus 		dark1BorderColor, dark1BorderColor,
15002f86ba45SStephan Aßmus 		dark2BorderColor, dark2BorderColor, borders);
15012f86ba45SStephan Aßmus }
15022f86ba45SStephan Aßmus 
15032f86ba45SStephan Aßmus 
15042f86ba45SStephan Aßmus void
15052f86ba45SStephan Aßmus BControlLook::DrawGroupFrame(BView* view, BRect& rect, const BRect& updateRect,
15062f86ba45SStephan Aßmus 	const rgb_color& base, uint32 borders)
15072f86ba45SStephan Aßmus {
15082f86ba45SStephan Aßmus 	rgb_color frameColor = tint_color(base, 1.30);
15092f86ba45SStephan Aßmus 	rgb_color bevelLight = tint_color(base, 0.8);
15102f86ba45SStephan Aßmus 	rgb_color bevelShadow = tint_color(base, 1.03);
15112f86ba45SStephan Aßmus 
15122f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelShadow, bevelShadow, bevelLight, bevelLight,
15132f86ba45SStephan Aßmus 		borders);
15142f86ba45SStephan Aßmus 
15152f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameColor, frameColor, frameColor, frameColor,
15162f86ba45SStephan Aßmus 		borders);
15172f86ba45SStephan Aßmus 
15182f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelLight, bevelLight, bevelShadow, bevelShadow,
15192f86ba45SStephan Aßmus 		borders);
15202f86ba45SStephan Aßmus }
15212f86ba45SStephan Aßmus 
15222f86ba45SStephan Aßmus 
15232f86ba45SStephan Aßmus void
15242f86ba45SStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, BRect rect,
15252f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags)
15262f86ba45SStephan Aßmus {
15272f86ba45SStephan Aßmus 	DrawLabel(view, label, rect, updateRect, base, flags,
15282f86ba45SStephan Aßmus 		DefaultLabelAlignment());
15292f86ba45SStephan Aßmus }
15302f86ba45SStephan Aßmus 
15312f86ba45SStephan Aßmus 
15322f86ba45SStephan Aßmus void
15332f86ba45SStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, BRect rect,
15342f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
15352f86ba45SStephan Aßmus 	const BAlignment& alignment)
15362f86ba45SStephan Aßmus {
15372f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
15382f86ba45SStephan Aßmus 		return;
15392f86ba45SStephan Aßmus 
15402f86ba45SStephan Aßmus 	// setup the text color
15412f86ba45SStephan Aßmus 	rgb_color color;
15422f86ba45SStephan Aßmus 	if (base.red + base.green + base.blue > 128 * 3)
15432f86ba45SStephan Aßmus 		color = tint_color(base, B_DARKEN_MAX_TINT);
15442f86ba45SStephan Aßmus 	else
15452f86ba45SStephan Aßmus 		color = tint_color(base, B_LIGHTEN_MAX_TINT);
15462f86ba45SStephan Aßmus 
15472f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
15482f86ba45SStephan Aßmus 		color.red = (uint8)(((int32)base.red + color.red + 1) / 2);
15492f86ba45SStephan Aßmus 		color.green = (uint8)(((int32)base.green + color.green + 1) / 2);
15502f86ba45SStephan Aßmus 		color.blue = (uint8)(((int32)base.blue + color.blue + 1) / 2);
15512f86ba45SStephan Aßmus 	}
15522f86ba45SStephan Aßmus 
15532f86ba45SStephan Aßmus 	view->SetHighColor(color);
15542f86ba45SStephan Aßmus 	view->SetDrawingMode(B_OP_OVER);
15552f86ba45SStephan Aßmus 
15562f86ba45SStephan Aßmus 	// truncate the label if necessary and get the width and height
15572f86ba45SStephan Aßmus 	BString truncatedLabel(label);
15582f86ba45SStephan Aßmus 
15592f86ba45SStephan Aßmus 	BFont font;
15602f86ba45SStephan Aßmus 	view->GetFont(&font);
15612f86ba45SStephan Aßmus 
15622f86ba45SStephan Aßmus 	float width = rect.Width();
15632f86ba45SStephan Aßmus 	font.TruncateString(&truncatedLabel, B_TRUNCATE_END, width);
15642f86ba45SStephan Aßmus 	width = font.StringWidth(truncatedLabel.String());
15652f86ba45SStephan Aßmus 
15662f86ba45SStephan Aßmus 	font_height fontHeight;
15672f86ba45SStephan Aßmus 	font.GetHeight(&fontHeight);
15682f86ba45SStephan Aßmus 	float height = ceilf(fontHeight.ascent) + ceilf(fontHeight.descent);
15692f86ba45SStephan Aßmus 
15702f86ba45SStephan Aßmus 	// handle alignment
15712f86ba45SStephan Aßmus 	BPoint location;
15722f86ba45SStephan Aßmus 
15732f86ba45SStephan Aßmus 	switch (alignment.horizontal) {
15742f86ba45SStephan Aßmus 	default:
15752f86ba45SStephan Aßmus 	case B_ALIGN_LEFT:
15762f86ba45SStephan Aßmus 		location.x = rect.left;
15772f86ba45SStephan Aßmus 		break;
15782f86ba45SStephan Aßmus 	case B_ALIGN_RIGHT:
15792f86ba45SStephan Aßmus 		location.x = rect.right - width;
15802f86ba45SStephan Aßmus 		break;
15812f86ba45SStephan Aßmus 	case B_ALIGN_CENTER:
15822f86ba45SStephan Aßmus 		location.x = (rect.left + rect.right - width) / 2.0f;
15832f86ba45SStephan Aßmus 		break;
15842f86ba45SStephan Aßmus 	}
15852f86ba45SStephan Aßmus 
15862f86ba45SStephan Aßmus 	switch (alignment.vertical) {
15872f86ba45SStephan Aßmus 	case B_ALIGN_TOP:
15882f86ba45SStephan Aßmus 		location.y = rect.top + ceilf(fontHeight.ascent);
15892f86ba45SStephan Aßmus 		break;
15902f86ba45SStephan Aßmus 	default:
15912f86ba45SStephan Aßmus 	case B_ALIGN_MIDDLE:
15922f86ba45SStephan Aßmus 		location.y = floorf((rect.top + rect.bottom - height) / 2.0f + 0.5f)
15932f86ba45SStephan Aßmus 			+ ceilf(fontHeight.ascent);
15942f86ba45SStephan Aßmus 		break;
15952f86ba45SStephan Aßmus 	case B_ALIGN_BOTTOM:
15962f86ba45SStephan Aßmus 		location.y = rect.bottom - ceilf(fontHeight.descent);
15972f86ba45SStephan Aßmus 		break;
15982f86ba45SStephan Aßmus 	}
15992f86ba45SStephan Aßmus 
16002f86ba45SStephan Aßmus 	view->DrawString(truncatedLabel.String(), location);
16012f86ba45SStephan Aßmus }
16022f86ba45SStephan Aßmus 
16032f86ba45SStephan Aßmus 
16042f86ba45SStephan Aßmus // #pragma mark -
16052f86ba45SStephan Aßmus 
16062f86ba45SStephan Aßmus 
16072f86ba45SStephan Aßmus void
160813cd46dfSStephan Aßmus BControlLook::_DrawButtonFrame(BView* view, BRect& rect,
160913cd46dfSStephan Aßmus 	const BRect& updateRect, const rgb_color& base,
161013cd46dfSStephan Aßmus 	float contrast, float brightness, uint32 flags, uint32 borders)
161113cd46dfSStephan Aßmus {
161213cd46dfSStephan Aßmus 	// colors
161313cd46dfSStephan Aßmus 	rgb_color dark1BorderColor;
161413cd46dfSStephan Aßmus 	rgb_color dark2BorderColor;
161513cd46dfSStephan Aßmus 
161613cd46dfSStephan Aßmus 	if ((flags & B_DISABLED) == 0) {
161713cd46dfSStephan Aßmus 		dark1BorderColor = tint_color(base, 1.33);
161813cd46dfSStephan Aßmus 		dark2BorderColor = tint_color(base, 1.45);
161913cd46dfSStephan Aßmus 
162013cd46dfSStephan Aßmus 		if (flags & B_DEFAULT_BUTTON) {
162113cd46dfSStephan Aßmus 			dark2BorderColor = tint_color(dark1BorderColor, 1.5);
162213cd46dfSStephan Aßmus 			dark1BorderColor = tint_color(dark1BorderColor, 1.35);
162313cd46dfSStephan Aßmus 		}
162413cd46dfSStephan Aßmus 	} else {
162513cd46dfSStephan Aßmus 		dark1BorderColor = tint_color(base, 1.147);
162613cd46dfSStephan Aßmus 		dark2BorderColor = tint_color(base, 1.24);
162713cd46dfSStephan Aßmus 
162813cd46dfSStephan Aßmus 		if (flags & B_DEFAULT_BUTTON) {
1629*74bb70aeSStephan Aßmus 			dark1BorderColor = tint_color(dark1BorderColor, 1.14);
1630*74bb70aeSStephan Aßmus 			dark2BorderColor = tint_color(dark1BorderColor, 1.12);
163113cd46dfSStephan Aßmus 		}
163213cd46dfSStephan Aßmus 	}
163313cd46dfSStephan Aßmus 
163413cd46dfSStephan Aßmus 	if (flags & B_ACTIVATED) {
163513cd46dfSStephan Aßmus 		rgb_color temp = dark2BorderColor;
163613cd46dfSStephan Aßmus 		dark2BorderColor = dark1BorderColor;
163713cd46dfSStephan Aßmus 		dark1BorderColor = temp;
163813cd46dfSStephan Aßmus 	}
163913cd46dfSStephan Aßmus 
164013cd46dfSStephan Aßmus 	// indicate focus by changing main button border
164113cd46dfSStephan Aßmus 	if (flags & B_FOCUSED) {
164213cd46dfSStephan Aßmus 		dark1BorderColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
164313cd46dfSStephan Aßmus 		dark2BorderColor = dark1BorderColor;
164413cd46dfSStephan Aßmus 	}
164513cd46dfSStephan Aßmus 
164613cd46dfSStephan Aßmus 	if (flags & B_DEFAULT_BUTTON) {
164713cd46dfSStephan Aßmus 		float focusTint = 1.2;
164813cd46dfSStephan Aßmus 		if (flags & B_DISABLED)
164913cd46dfSStephan Aßmus 			focusTint = (B_NO_TINT + focusTint) / 2;
165013cd46dfSStephan Aßmus 
165113cd46dfSStephan Aßmus 		rgb_color focusColor = tint_color(base, focusTint);
165213cd46dfSStephan Aßmus 		view->SetHighColor(base);
165313cd46dfSStephan Aßmus 
165413cd46dfSStephan Aßmus 		view->StrokeRect(rect);
165513cd46dfSStephan Aßmus 		rect.InsetBy(1.0, 1.0);
165613cd46dfSStephan Aßmus 
165713cd46dfSStephan Aßmus 		view->SetHighColor(focusColor);
165813cd46dfSStephan Aßmus 		view->StrokeRect(rect);
165913cd46dfSStephan Aßmus 		rect.InsetBy(1.0, 1.0);
166013cd46dfSStephan Aßmus 		view->StrokeRect(rect);
166113cd46dfSStephan Aßmus 		rect.InsetBy(1.0, 1.0);
166213cd46dfSStephan Aßmus 
166313cd46dfSStephan Aßmus 		// bevel around external border
166413cd46dfSStephan Aßmus 		_DrawOuterResessedFrame(view, rect, focusColor,
1665*74bb70aeSStephan Aßmus 			contrast * (((flags & B_DISABLED) ? 0.3 : 0.8)),
1666*74bb70aeSStephan Aßmus 			brightness * (((flags & B_DISABLED) ? 1.0 : 0.9)),
166713cd46dfSStephan Aßmus 			borders);
166813cd46dfSStephan Aßmus 	} else {
166913cd46dfSStephan Aßmus 		// bevel around external border
167013cd46dfSStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base,
167113cd46dfSStephan Aßmus 			contrast * ((flags & B_DISABLED) ? 0.0 : 1.0), brightness * 1.0,
167213cd46dfSStephan Aßmus 			borders);
167313cd46dfSStephan Aßmus 	}
167413cd46dfSStephan Aßmus 
167513cd46dfSStephan Aßmus 	_DrawFrame(view, rect, dark1BorderColor, dark1BorderColor,
167613cd46dfSStephan Aßmus 		dark2BorderColor, dark2BorderColor, borders);
167713cd46dfSStephan Aßmus }
167813cd46dfSStephan Aßmus 
167913cd46dfSStephan Aßmus 
168013cd46dfSStephan Aßmus void
16812f86ba45SStephan Aßmus BControlLook::_DrawOuterResessedFrame(BView* view, BRect& rect,
16822f86ba45SStephan Aßmus 	const rgb_color& base, float contrast, float brightness, uint32 borders)
16832f86ba45SStephan Aßmus {
16842f86ba45SStephan Aßmus 	// colors
16852f86ba45SStephan Aßmus 	float tintLight = kEdgeBevelLightTint;
16862f86ba45SStephan Aßmus 	float tintShadow = kEdgeBevelShadowTint;
16872f86ba45SStephan Aßmus 
16882f86ba45SStephan Aßmus 	if (contrast == 0.0) {
16892f86ba45SStephan Aßmus 		tintLight = B_NO_TINT;
16902f86ba45SStephan Aßmus 		tintShadow = B_NO_TINT;
16912f86ba45SStephan Aßmus 	} else if (contrast != 1.0) {
16922f86ba45SStephan Aßmus 		tintLight = B_NO_TINT + (tintLight - B_NO_TINT) * contrast;
16932f86ba45SStephan Aßmus 		tintShadow = B_NO_TINT + (tintShadow - B_NO_TINT) * contrast;
16942f86ba45SStephan Aßmus 	}
16952f86ba45SStephan Aßmus 
16962f86ba45SStephan Aßmus 	rgb_color borderBevelShadow = tint_color(base, tintShadow);
16972f86ba45SStephan Aßmus 	rgb_color borderBevelLight = tint_color(base, tintLight);
16982f86ba45SStephan Aßmus 
16992f86ba45SStephan Aßmus 	if (brightness < 1.0) {
17002f86ba45SStephan Aßmus 		borderBevelShadow.red = uint8(borderBevelShadow.red * brightness);
17012f86ba45SStephan Aßmus 		borderBevelShadow.green = uint8(borderBevelShadow.green * brightness);
17022f86ba45SStephan Aßmus 		borderBevelShadow.blue = uint8(borderBevelShadow.blue * brightness);
17032f86ba45SStephan Aßmus 		borderBevelLight.red = uint8(borderBevelLight.red * brightness);
17042f86ba45SStephan Aßmus 		borderBevelLight.green = uint8(borderBevelLight.green * brightness);
17052f86ba45SStephan Aßmus 		borderBevelLight.blue = uint8(borderBevelLight.blue * brightness);
17062f86ba45SStephan Aßmus 	}
17072f86ba45SStephan Aßmus 
17082f86ba45SStephan Aßmus 	_DrawFrame(view, rect, borderBevelShadow, borderBevelShadow,
17092f86ba45SStephan Aßmus 		borderBevelLight, borderBevelLight, borders);
17102f86ba45SStephan Aßmus }
17112f86ba45SStephan Aßmus 
17122f86ba45SStephan Aßmus 
17132f86ba45SStephan Aßmus void
17142f86ba45SStephan Aßmus BControlLook::_DrawFrame(BView* view, BRect& rect, const rgb_color& left,
17152f86ba45SStephan Aßmus 	const rgb_color& top, const rgb_color& right, const rgb_color& bottom,
17162f86ba45SStephan Aßmus 	uint32 borders)
17172f86ba45SStephan Aßmus {
17182f86ba45SStephan Aßmus 	view->BeginLineArray(4);
17192f86ba45SStephan Aßmus 
17202f86ba45SStephan Aßmus 	if (borders & B_LEFT_BORDER) {
17212f86ba45SStephan Aßmus 		view->AddLine(
17222f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
17232f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top), left);
17242f86ba45SStephan Aßmus 		rect.left++;
17252f86ba45SStephan Aßmus 	}
17262f86ba45SStephan Aßmus 	if (borders & B_TOP_BORDER) {
17272f86ba45SStephan Aßmus 		view->AddLine(
17282f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top),
17292f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top), top);
17302f86ba45SStephan Aßmus 		rect.top++;
17312f86ba45SStephan Aßmus 	}
17322f86ba45SStephan Aßmus 	if (borders & B_RIGHT_BORDER) {
17332f86ba45SStephan Aßmus 		view->AddLine(
17342f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top),
17352f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), right);
17362f86ba45SStephan Aßmus 		rect.right--;
17372f86ba45SStephan Aßmus 	}
17382f86ba45SStephan Aßmus 	if (borders & B_BOTTOM_BORDER) {
17392f86ba45SStephan Aßmus 		view->AddLine(
17402f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
17412f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), bottom);
17422f86ba45SStephan Aßmus 		rect.bottom--;
17432f86ba45SStephan Aßmus 	}
17442f86ba45SStephan Aßmus 
17452f86ba45SStephan Aßmus 	view->EndLineArray();
17462f86ba45SStephan Aßmus }
17472f86ba45SStephan Aßmus 
17482f86ba45SStephan Aßmus 
17492f86ba45SStephan Aßmus void
17502f86ba45SStephan Aßmus BControlLook::_DrawFrame(BView* view, BRect& rect, const rgb_color& left,
17512f86ba45SStephan Aßmus 	const rgb_color& top, const rgb_color& right, const rgb_color& bottom,
17522f86ba45SStephan Aßmus 	const rgb_color& rightTop, const rgb_color& leftBottom, uint32 borders)
17532f86ba45SStephan Aßmus {
17542f86ba45SStephan Aßmus 	view->BeginLineArray(6);
17552f86ba45SStephan Aßmus 
17562f86ba45SStephan Aßmus 	if (borders & B_TOP_BORDER) {
17572f86ba45SStephan Aßmus 		if (borders & B_RIGHT_BORDER) {
17582f86ba45SStephan Aßmus 			view->AddLine(
17592f86ba45SStephan Aßmus 				BPoint(rect.left, rect.top),
17602f86ba45SStephan Aßmus 				BPoint(rect.right - 1, rect.top), top);
17612f86ba45SStephan Aßmus 			view->AddLine(
17622f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top),
17632f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), rightTop);
17642f86ba45SStephan Aßmus 		} else {
17652f86ba45SStephan Aßmus 			view->AddLine(
17662f86ba45SStephan Aßmus 				BPoint(rect.left, rect.top),
17672f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), top);
17682f86ba45SStephan Aßmus 		}
17692f86ba45SStephan Aßmus 		rect.top++;
17702f86ba45SStephan Aßmus 	}
17712f86ba45SStephan Aßmus 
17722f86ba45SStephan Aßmus 	if (borders & B_LEFT_BORDER) {
17732f86ba45SStephan Aßmus 		view->AddLine(
17742f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top),
17752f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom - 1), left);
17762f86ba45SStephan Aßmus 		view->AddLine(
17772f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
17782f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom), leftBottom);
17792f86ba45SStephan Aßmus 		rect.left++;
17802f86ba45SStephan Aßmus 	}
17812f86ba45SStephan Aßmus 
17822f86ba45SStephan Aßmus 	if (borders & B_BOTTOM_BORDER) {
17832f86ba45SStephan Aßmus 		view->AddLine(
17842f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
17852f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), bottom);
17862f86ba45SStephan Aßmus 		rect.bottom--;
17872f86ba45SStephan Aßmus 	}
17882f86ba45SStephan Aßmus 
17892f86ba45SStephan Aßmus 	if (borders & B_RIGHT_BORDER) {
17902f86ba45SStephan Aßmus 		view->AddLine(
17912f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom),
17922f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top), right);
17932f86ba45SStephan Aßmus 		rect.right--;
17942f86ba45SStephan Aßmus 	}
17952f86ba45SStephan Aßmus 
17962f86ba45SStephan Aßmus 	view->EndLineArray();
17972f86ba45SStephan Aßmus }
17982f86ba45SStephan Aßmus 
17992f86ba45SStephan Aßmus 
18002f86ba45SStephan Aßmus //void
18012f86ba45SStephan Aßmus //BControlLook::_DrawShadowFrame(BView* view, BRect& rect, const rgb_color& base,
18022f86ba45SStephan Aßmus //	uint32 borders)
18032f86ba45SStephan Aßmus //{
18042f86ba45SStephan Aßmus //	view->BeginLineArray(4);
18052f86ba45SStephan Aßmus //
18062f86ba45SStephan Aßmus //	bevelColor1 = tint_color(base, 1.2);
18072f86ba45SStephan Aßmus //	bevelColor2 = tint_color(base, 1.1);
18082f86ba45SStephan Aßmus //
18092f86ba45SStephan Aßmus //	// shadow along left/top borders
18102f86ba45SStephan Aßmus //	if (rect.Height() > 0 && borders & B_LEFT_BORDER) {
18112f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
18122f86ba45SStephan Aßmus //			BPoint(rect.left, rect.bottom), bevelColor1);
18132f86ba45SStephan Aßmus //		rect.left++;
18142f86ba45SStephan Aßmus //	}
18152f86ba45SStephan Aßmus //	if (rect.Width() > 0 && borders & B_TOP_BORDER) {
18162f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
18172f86ba45SStephan Aßmus //			BPoint(rect.right, rect.top), bevelColor1);
18182f86ba45SStephan Aßmus //		rect.top++;
18192f86ba45SStephan Aßmus //	}
18202f86ba45SStephan Aßmus //
18212f86ba45SStephan Aßmus //	// softer shadow along left/top borders
18222f86ba45SStephan Aßmus //	if (rect.Height() > 0 && borders & B_LEFT_BORDER) {
18232f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
18242f86ba45SStephan Aßmus //			BPoint(rect.left, rect.bottom), bevelColor2);
18252f86ba45SStephan Aßmus //		rect.left++;
18262f86ba45SStephan Aßmus //	}
18272f86ba45SStephan Aßmus //	if (rect.Width() > 0 && borders & B_TOP_BORDER) {
18282f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
18292f86ba45SStephan Aßmus //			BPoint(rect.right, rect.top), bevelColor2);
18302f86ba45SStephan Aßmus //		rect.top++;
18312f86ba45SStephan Aßmus //	}
18322f86ba45SStephan Aßmus //
18332f86ba45SStephan Aßmus //	view->EndLineArray();
18342f86ba45SStephan Aßmus //}
18352f86ba45SStephan Aßmus 
18362f86ba45SStephan Aßmus 
18372f86ba45SStephan Aßmus void
18382f86ba45SStephan Aßmus BControlLook::_FillGradient(BView* view, const BRect& rect,
18392f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float bottomTint,
18402f86ba45SStephan Aßmus 	enum orientation orientation)
18412f86ba45SStephan Aßmus {
18422f86ba45SStephan Aßmus 	BGradientLinear gradient;
18432f86ba45SStephan Aßmus 	_MakeGradient(gradient, rect, base, topTint, bottomTint, orientation);
18442f86ba45SStephan Aßmus 	view->FillRect(rect, gradient);
18452f86ba45SStephan Aßmus }
18462f86ba45SStephan Aßmus 
18472f86ba45SStephan Aßmus 
18482f86ba45SStephan Aßmus void
18492f86ba45SStephan Aßmus BControlLook::_FillGlossyGradient(BView* view, const BRect& rect,
18502f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float middle1Tint,
18512f86ba45SStephan Aßmus 	float middle2Tint, float bottomTint, enum orientation orientation)
18522f86ba45SStephan Aßmus {
18532f86ba45SStephan Aßmus 	BGradientLinear gradient;
18542f86ba45SStephan Aßmus 	_MakeGlossyGradient(gradient, rect, base, topTint, middle1Tint,
18552f86ba45SStephan Aßmus 		middle2Tint, bottomTint, orientation);
18562f86ba45SStephan Aßmus 	view->FillRect(rect, gradient);
18572f86ba45SStephan Aßmus }
18582f86ba45SStephan Aßmus 
18592f86ba45SStephan Aßmus 
18602f86ba45SStephan Aßmus void
18612f86ba45SStephan Aßmus BControlLook::_MakeGradient(BGradientLinear& gradient, const BRect& rect,
18622f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float bottomTint,
18632f86ba45SStephan Aßmus 	enum orientation orientation) const
18642f86ba45SStephan Aßmus {
18652f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, topTint), 0);
18662f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, bottomTint), 255);
18672f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
18682f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
18692f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
18702f86ba45SStephan Aßmus 	else
18712f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
18722f86ba45SStephan Aßmus }
18732f86ba45SStephan Aßmus 
18742f86ba45SStephan Aßmus 
18752f86ba45SStephan Aßmus void
18762f86ba45SStephan Aßmus BControlLook::_MakeGlossyGradient(BGradientLinear& gradient, const BRect& rect,
18772f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float middle1Tint,
18782f86ba45SStephan Aßmus 	float middle2Tint, float bottomTint,
18792f86ba45SStephan Aßmus 	enum orientation orientation) const
18802f86ba45SStephan Aßmus {
18812f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, topTint), 0);
18822f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, middle1Tint), 132);
18832f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, middle2Tint), 136);
18842f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, bottomTint), 255);
18852f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
18862f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
18872f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
18882f86ba45SStephan Aßmus 	else
18892f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
18902f86ba45SStephan Aßmus }
18912f86ba45SStephan Aßmus 
18922f86ba45SStephan Aßmus 
18932f86ba45SStephan Aßmus bool
18942f86ba45SStephan Aßmus BControlLook::_RadioButtonAndCheckBoxMarkColor(const rgb_color& base,
18952f86ba45SStephan Aßmus 	rgb_color& color, uint32 flags) const
18962f86ba45SStephan Aßmus {
18972f86ba45SStephan Aßmus 	if ((flags & (B_ACTIVATED | B_CLICKED)) == 0) {
18982f86ba45SStephan Aßmus 		// no mark to be drawn at all
18992f86ba45SStephan Aßmus 		return false;
19002f86ba45SStephan Aßmus 	}
19012f86ba45SStephan Aßmus 
19022f86ba45SStephan Aßmus 	// TODO: Get from UI settings
19032f86ba45SStephan Aßmus 	color.red = 27;
19042f86ba45SStephan Aßmus 	color.green = 82;
19052f86ba45SStephan Aßmus 	color.blue = 140;
19062f86ba45SStephan Aßmus 
19072f86ba45SStephan Aßmus 	float mix = 1.0;
19082f86ba45SStephan Aßmus 
19092f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
19102f86ba45SStephan Aßmus 		// activated, but disabled
19112f86ba45SStephan Aßmus 		mix = 0.4;
19122f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
19132f86ba45SStephan Aßmus 		if (flags & B_ACTIVATED) {
19142f86ba45SStephan Aßmus 			// loosing activation
19152f86ba45SStephan Aßmus 			mix = 0.7;
19162f86ba45SStephan Aßmus 		} else {
19172f86ba45SStephan Aßmus 			// becoming activated
19182f86ba45SStephan Aßmus 			mix = 0.3;
19192f86ba45SStephan Aßmus 		}
19202f86ba45SStephan Aßmus 	} else {
19212f86ba45SStephan Aßmus 		// simply activated
19222f86ba45SStephan Aßmus 	}
19232f86ba45SStephan Aßmus 
19242f86ba45SStephan Aßmus 	color.red = uint8(color.red * mix + base.red * (1.0 - mix));
19252f86ba45SStephan Aßmus 	color.green = uint8(color.green * mix + base.green * (1.0 - mix));
19262f86ba45SStephan Aßmus 	color.blue = uint8(color.blue * mix + base.blue * (1.0 - mix));
19272f86ba45SStephan Aßmus 
19282f86ba45SStephan Aßmus 	return true;
19292f86ba45SStephan Aßmus }
19302f86ba45SStephan Aßmus 
19312f86ba45SStephan Aßmus 
19322f86ba45SStephan Aßmus void
19332f86ba45SStephan Aßmus BControlLook::_DrawRoundBarCorner(BView* view, BRect& rect,
19342f86ba45SStephan Aßmus 	const BRect& updateRect,
19352f86ba45SStephan Aßmus 	const rgb_color& edgeLightColor, const rgb_color& edgeShadowColor,
19362f86ba45SStephan Aßmus 	const rgb_color& frameLightColor, const rgb_color& frameShadowColor,
19372f86ba45SStephan Aßmus 	const rgb_color& fillLightColor, const rgb_color& fillShadowColor,
19382f86ba45SStephan Aßmus 	float leftInset, float topInset, float rightInset, float bottomInset,
19392f86ba45SStephan Aßmus 	enum orientation orientation)
19402f86ba45SStephan Aßmus {
19412f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
19422f86ba45SStephan Aßmus 		return;
19432f86ba45SStephan Aßmus 
19442f86ba45SStephan Aßmus 	BGradientLinear gradient;
19452f86ba45SStephan Aßmus 	gradient.AddColor(edgeShadowColor, 0);
19462f86ba45SStephan Aßmus 	gradient.AddColor(edgeLightColor, 255);
19472f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
19482f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
19492f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
19502f86ba45SStephan Aßmus 	else
19512f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
19522f86ba45SStephan Aßmus 
19532f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
19542f86ba45SStephan Aßmus 
19552f86ba45SStephan Aßmus 	rect.left += leftInset;
19562f86ba45SStephan Aßmus 	rect.top += topInset;
19572f86ba45SStephan Aßmus 	rect.right += rightInset;
19582f86ba45SStephan Aßmus 	rect.bottom += bottomInset;
19592f86ba45SStephan Aßmus 
19602f86ba45SStephan Aßmus 	gradient.MakeEmpty();
19612f86ba45SStephan Aßmus 	gradient.AddColor(frameShadowColor, 0);
19622f86ba45SStephan Aßmus 	gradient.AddColor(frameLightColor, 255);
19632f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
19642f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
19652f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
19662f86ba45SStephan Aßmus 	else
19672f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
19682f86ba45SStephan Aßmus 
19692f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
19702f86ba45SStephan Aßmus 
19712f86ba45SStephan Aßmus 	rect.left += leftInset;
19722f86ba45SStephan Aßmus 	rect.top += topInset;
19732f86ba45SStephan Aßmus 	rect.right += rightInset;
19742f86ba45SStephan Aßmus 	rect.bottom += bottomInset;
19752f86ba45SStephan Aßmus 
19762f86ba45SStephan Aßmus 	gradient.MakeEmpty();
19772f86ba45SStephan Aßmus 	gradient.AddColor(fillShadowColor, 0);
19782f86ba45SStephan Aßmus 	gradient.AddColor(fillLightColor, 255);
19792f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
19802f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
19812f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
19822f86ba45SStephan Aßmus 	else
19832f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
19842f86ba45SStephan Aßmus 
19852f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
19862f86ba45SStephan Aßmus }
19872f86ba45SStephan Aßmus 
19882f86ba45SStephan Aßmus 
19892f86ba45SStephan Aßmus void
19902f86ba45SStephan Aßmus BControlLook::_DrawRoundCornerLeftTop(BView* view, BRect& rect,
19912f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, const rgb_color& edgeColor,
19922f86ba45SStephan Aßmus 	const rgb_color& frameColor, const rgb_color& bevelColor,
19932f86ba45SStephan Aßmus 	const BGradientLinear& fillGradient)
19942f86ba45SStephan Aßmus {
19952f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
19962f86ba45SStephan Aßmus 		return;
19972f86ba45SStephan Aßmus 
19982f86ba45SStephan Aßmus 	BRegion clipping(rect);
19992f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&clipping);
20002f86ba45SStephan Aßmus 
20012f86ba45SStephan Aßmus 	// background
20022f86ba45SStephan Aßmus 	view->SetHighColor(base);
20032f86ba45SStephan Aßmus 	view->FillRect(rect);
20042f86ba45SStephan Aßmus 
20052f86ba45SStephan Aßmus 	// outer edge
20062f86ba45SStephan Aßmus 	BRect ellipseRect(rect);
20072f86ba45SStephan Aßmus 	ellipseRect.right = ellipseRect.left + ellipseRect.Width() * 2;
20082f86ba45SStephan Aßmus 	ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
20092f86ba45SStephan Aßmus 
20102f86ba45SStephan Aßmus 	view->SetHighColor(edgeColor);
20112f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect);
20122f86ba45SStephan Aßmus 
20132f86ba45SStephan Aßmus 	// frame
20142f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
20152f86ba45SStephan Aßmus 	view->SetHighColor(frameColor);
20162f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect);
20172f86ba45SStephan Aßmus 
20182f86ba45SStephan Aßmus 	// bevel
20192f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
20202f86ba45SStephan Aßmus 	view->SetHighColor(bevelColor);
20212f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect);
20222f86ba45SStephan Aßmus 
20232f86ba45SStephan Aßmus 	// fill
20242f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
20252f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, fillGradient);
20262f86ba45SStephan Aßmus 
20272f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
20282f86ba45SStephan Aßmus }
20292f86ba45SStephan Aßmus 
20302f86ba45SStephan Aßmus void
20312f86ba45SStephan Aßmus BControlLook::_DrawRoundCornerRightTop(BView* view, BRect& rect,
20322f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base,
20332f86ba45SStephan Aßmus 	const rgb_color& edgeTopColor, const rgb_color& edgeRightColor,
20342f86ba45SStephan Aßmus 	const rgb_color& frameTopColor, const rgb_color& frameRightColor,
20352f86ba45SStephan Aßmus 	const rgb_color& bevelTopColor, const rgb_color& bevelRightColor,
20362f86ba45SStephan Aßmus 	const BGradientLinear& fillGradient)
20372f86ba45SStephan Aßmus {
20382f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
20392f86ba45SStephan Aßmus 		return;
20402f86ba45SStephan Aßmus 
20412f86ba45SStephan Aßmus 	BRegion clipping(rect);
20422f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&clipping);
20432f86ba45SStephan Aßmus 
20442f86ba45SStephan Aßmus 	// background
20452f86ba45SStephan Aßmus 	view->SetHighColor(base);
20462f86ba45SStephan Aßmus 	view->FillRect(rect);
20472f86ba45SStephan Aßmus 
20482f86ba45SStephan Aßmus 	// outer edge
20492f86ba45SStephan Aßmus 	BRect ellipseRect(rect);
20502f86ba45SStephan Aßmus 	ellipseRect.left = ellipseRect.right - ellipseRect.Width() * 2;
20512f86ba45SStephan Aßmus 	ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
20522f86ba45SStephan Aßmus 
20532f86ba45SStephan Aßmus 	BGradientLinear gradient;
20542f86ba45SStephan Aßmus 	gradient.AddColor(edgeTopColor, 0);
20552f86ba45SStephan Aßmus 	gradient.AddColor(edgeRightColor, 255);
20562f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
20572f86ba45SStephan Aßmus 	gradient.SetEnd(rect.RightBottom());
20582f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, gradient);
20592f86ba45SStephan Aßmus 
20602f86ba45SStephan Aßmus 	// frame
20612f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
20622f86ba45SStephan Aßmus 	rect.right--;
20632f86ba45SStephan Aßmus 	rect.top++;
20642f86ba45SStephan Aßmus 	if (frameTopColor == frameRightColor) {
20652f86ba45SStephan Aßmus 		view->SetHighColor(frameTopColor);
20662f86ba45SStephan Aßmus 		view->FillEllipse(ellipseRect);
20672f86ba45SStephan Aßmus 	} else {
20682f86ba45SStephan Aßmus 		gradient.SetColor(0, frameTopColor);
20692f86ba45SStephan Aßmus 		gradient.SetColor(1, frameRightColor);
20702f86ba45SStephan Aßmus 		gradient.SetStart(rect.LeftTop());
20712f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightBottom());
20722f86ba45SStephan Aßmus 		view->FillEllipse(ellipseRect, gradient);
20732f86ba45SStephan Aßmus 	}
20742f86ba45SStephan Aßmus 
20752f86ba45SStephan Aßmus 	// bevel
20762f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
20772f86ba45SStephan Aßmus 	rect.right--;
20782f86ba45SStephan Aßmus 	rect.top++;
20792f86ba45SStephan Aßmus 	gradient.SetColor(0, bevelTopColor);
20802f86ba45SStephan Aßmus 	gradient.SetColor(1, bevelRightColor);
20812f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
20822f86ba45SStephan Aßmus 	gradient.SetEnd(rect.RightBottom());
20832f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, gradient);
20842f86ba45SStephan Aßmus 
20852f86ba45SStephan Aßmus 	// fill
20862f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
20872f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, fillGradient);
20882f86ba45SStephan Aßmus 
20892f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
20902f86ba45SStephan Aßmus }
20912f86ba45SStephan Aßmus 
20922f86ba45SStephan Aßmus 
20932f86ba45SStephan Aßmus // NOTE: May come from a add-on in the future. Initialized in
20942f86ba45SStephan Aßmus // InterfaceDefs.cpp
20952f86ba45SStephan Aßmus BControlLook* be_control_look = NULL;
20962f86ba45SStephan Aßmus 
20972f86ba45SStephan Aßmus } // namespace BPrivate
2098