xref: /haiku/src/kits/interface/ControlLook.cpp (revision c4e211feb65c3656c3ad7dba1b8b60e983ca1e13)
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 {
4220a11271SAxel Dörfler 	return ceilf(be_plain_font->Size() / 2.0);
4320a11271SAxel Dörfler }
4420a11271SAxel Dörfler 
4520a11271SAxel Dörfler 
4620a11271SAxel Dörfler float
4720a11271SAxel Dörfler BControlLook::DefaultItemSpacing() const
4820a11271SAxel Dörfler {
4920a11271SAxel Dörfler 	return ceilf(be_plain_font->Size() * 0.85);
502f86ba45SStephan Aßmus }
512f86ba45SStephan Aßmus 
522f86ba45SStephan Aßmus 
532f86ba45SStephan Aßmus uint32
542f86ba45SStephan Aßmus BControlLook::Flags(BControl* control) const
552f86ba45SStephan Aßmus {
562f86ba45SStephan Aßmus 	uint32 flags = 0;
572f86ba45SStephan Aßmus 
582f86ba45SStephan Aßmus 	if (!control->IsEnabled())
592f86ba45SStephan Aßmus 		flags |= B_DISABLED;
602f86ba45SStephan Aßmus 
612f86ba45SStephan Aßmus 	if (control->IsFocus())
622f86ba45SStephan Aßmus 		flags |= B_FOCUSED;
632f86ba45SStephan Aßmus 
642f86ba45SStephan Aßmus 	if (control->Value() == B_CONTROL_ON)
652f86ba45SStephan Aßmus 		flags |= B_ACTIVATED;
662f86ba45SStephan Aßmus 
6761ac1a85SStephan Aßmus 	if (control->Parent() != NULL
6861ac1a85SStephan Aßmus 		&& (control->Parent()->Flags() & B_DRAW_ON_CHILDREN) != 0) {
6961ac1a85SStephan Aßmus 		// In this constellation, assume we want to render the control
7061ac1a85SStephan Aßmus 		// against the already existing view contents of the parent view.
7161ac1a85SStephan Aßmus 		flags |= B_BLEND_FRAME;
7261ac1a85SStephan Aßmus 	}
7361ac1a85SStephan Aßmus 
742f86ba45SStephan Aßmus 	return flags;
752f86ba45SStephan Aßmus }
762f86ba45SStephan Aßmus 
772f86ba45SStephan Aßmus 
782f86ba45SStephan Aßmus // #pragma mark -
792f86ba45SStephan Aßmus 
802f86ba45SStephan Aßmus 
812f86ba45SStephan Aßmus void
822f86ba45SStephan Aßmus BControlLook::DrawButtonFrame(BView* view, BRect& rect, const BRect& updateRect,
83681c2e44SStephan Aßmus 	const rgb_color& base, const rgb_color& background, uint32 flags,
84681c2e44SStephan Aßmus 	uint32 borders)
852f86ba45SStephan Aßmus {
86681c2e44SStephan Aßmus 	_DrawButtonFrame(view, rect, updateRect, base, background, 1.0, 1.0, flags,
87681c2e44SStephan Aßmus 		borders);
882f86ba45SStephan Aßmus }
892f86ba45SStephan Aßmus 
902f86ba45SStephan Aßmus 
912f86ba45SStephan Aßmus void
922f86ba45SStephan Aßmus BControlLook::DrawButtonBackground(BView* view, BRect& rect,
932f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
942f86ba45SStephan Aßmus 	uint32 borders, enum orientation orientation)
952f86ba45SStephan Aßmus {
962f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
972f86ba45SStephan Aßmus 		return;
982f86ba45SStephan Aßmus 
992f86ba45SStephan Aßmus 	// the surface edges
1002f86ba45SStephan Aßmus 
1012f86ba45SStephan Aßmus 	// colors
1022f86ba45SStephan Aßmus 	rgb_color buttonBgColor = tint_color(base, B_LIGHTEN_1_TINT);
1032f86ba45SStephan Aßmus 	rgb_color maxLightColor;
1042f86ba45SStephan Aßmus 
1052f86ba45SStephan Aßmus 	rgb_color bevelColor1;
1062f86ba45SStephan Aßmus 	rgb_color bevelColor2;
1072f86ba45SStephan Aßmus 
1082f86ba45SStephan Aßmus 	if ((flags & B_DISABLED) == 0) {
1092f86ba45SStephan Aßmus 		maxLightColor = tint_color(base, 0.2);
1102f86ba45SStephan Aßmus 		bevelColor1 = tint_color(base, 1.08);
1112f86ba45SStephan Aßmus 		bevelColor2 = base;
1122f86ba45SStephan Aßmus 	} else {
1132f86ba45SStephan Aßmus 		maxLightColor = tint_color(base, 0.7);
1142f86ba45SStephan Aßmus 		bevelColor1 = base;
1152f86ba45SStephan Aßmus 		bevelColor2 = buttonBgColor;
1162f86ba45SStephan Aßmus 		buttonBgColor = maxLightColor;
1172f86ba45SStephan Aßmus 	}
1182f86ba45SStephan Aßmus 
1192f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
1202f86ba45SStephan Aßmus 		view->BeginLineArray(4);
1212f86ba45SStephan Aßmus 
1222f86ba45SStephan Aßmus 		bevelColor1 = tint_color(bevelColor1, B_DARKEN_1_TINT);
1232f86ba45SStephan Aßmus 		bevelColor2 = tint_color(bevelColor2, B_DARKEN_1_TINT);
1242f86ba45SStephan Aßmus 
1252f86ba45SStephan Aßmus 		// shadow along left/top borders
1262f86ba45SStephan Aßmus 		if (borders & B_LEFT_BORDER) {
1272f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1282f86ba45SStephan Aßmus 				BPoint(rect.left, rect.bottom), bevelColor1);
1292f86ba45SStephan Aßmus 			rect.left++;
1302f86ba45SStephan Aßmus 		}
1312f86ba45SStephan Aßmus 		if (borders & B_TOP_BORDER) {
1322f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1332f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), bevelColor1);
1342f86ba45SStephan Aßmus 			rect.top++;
1352f86ba45SStephan Aßmus 		}
1362f86ba45SStephan Aßmus 
1372f86ba45SStephan Aßmus 		// softer shadow along left/top borders
1382f86ba45SStephan Aßmus 		if (borders & B_LEFT_BORDER) {
1392f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1402f86ba45SStephan Aßmus 				BPoint(rect.left, rect.bottom), bevelColor2);
1412f86ba45SStephan Aßmus 			rect.left++;
1422f86ba45SStephan Aßmus 		}
1432f86ba45SStephan Aßmus 		if (borders & B_TOP_BORDER) {
1442f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1452f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), bevelColor2);
1462f86ba45SStephan Aßmus 			rect.top++;
1472f86ba45SStephan Aßmus 		}
1482f86ba45SStephan Aßmus 
1492f86ba45SStephan Aßmus 		view->EndLineArray();
1502f86ba45SStephan Aßmus 	} else {
1512f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
1522f86ba45SStephan Aßmus 			maxLightColor, maxLightColor,
1532f86ba45SStephan Aßmus 			bevelColor1, bevelColor1,
1542f86ba45SStephan Aßmus 			buttonBgColor, buttonBgColor, borders);
1552f86ba45SStephan Aßmus 	}
1562f86ba45SStephan Aßmus 
1572f86ba45SStephan Aßmus 	// the actual surface top
1582f86ba45SStephan Aßmus 
1592f86ba45SStephan Aßmus 	float topTint = 0.49;
1602f86ba45SStephan Aßmus 	float middleTint1 = 0.62;
1612f86ba45SStephan Aßmus 	float middleTint2 = 0.76;
1622f86ba45SStephan Aßmus 	float bottomTint = 0.90;
1632f86ba45SStephan Aßmus 
1642f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
1652f86ba45SStephan Aßmus 		topTint = 1.11;
1662f86ba45SStephan Aßmus 		bottomTint = 1.08;
1672f86ba45SStephan Aßmus 	}
1682f86ba45SStephan Aßmus 
1692f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
1702f86ba45SStephan Aßmus 		topTint = (topTint + B_NO_TINT) / 2;
1712f86ba45SStephan Aßmus 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
1722f86ba45SStephan Aßmus 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
1732f86ba45SStephan Aßmus 		bottomTint = (bottomTint + B_NO_TINT) / 2;
1742f86ba45SStephan Aßmus 	} else if (flags & B_HOVER) {
1752f86ba45SStephan Aßmus 		static const float kHoverTintFactor = 0.85;
1762f86ba45SStephan Aßmus 		topTint *= kHoverTintFactor;
1772f86ba45SStephan Aßmus 		middleTint1 *= kHoverTintFactor;
1782f86ba45SStephan Aßmus 		middleTint2 *= kHoverTintFactor;
1792f86ba45SStephan Aßmus 		bottomTint *= kHoverTintFactor;
1802f86ba45SStephan Aßmus 	}
1812f86ba45SStephan Aßmus 
1822f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
1832f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, topTint, bottomTint, orientation);
1842f86ba45SStephan Aßmus 	} else {
1852f86ba45SStephan Aßmus 		_FillGlossyGradient(view, rect, base, topTint, middleTint1,
1862f86ba45SStephan Aßmus 			middleTint2, bottomTint, orientation);
1872f86ba45SStephan Aßmus 	}
1882f86ba45SStephan Aßmus }
1892f86ba45SStephan Aßmus 
1902f86ba45SStephan Aßmus 
1912f86ba45SStephan Aßmus void
1922f86ba45SStephan Aßmus BControlLook::DrawMenuBarBackground(BView* view, BRect& rect,
1931a72cb41SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
1941a72cb41SStephan Aßmus 	uint32 borders)
1952f86ba45SStephan Aßmus {
1962f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
1972f86ba45SStephan Aßmus 		return;
1982f86ba45SStephan Aßmus 
1992f86ba45SStephan Aßmus 	// the surface edges
2002f86ba45SStephan Aßmus 
2012f86ba45SStephan Aßmus 	// colors
2021a72cb41SStephan Aßmus 	float topTint;
2031a72cb41SStephan Aßmus 	float bottomTint;
2041a72cb41SStephan Aßmus 
2051a72cb41SStephan Aßmus 	if (flags & B_ACTIVATED) {
2061a72cb41SStephan Aßmus 		rgb_color bevelColor1 = tint_color(base, 1.40);
2071a72cb41SStephan Aßmus 		rgb_color bevelColor2 = tint_color(base, 1.25);
2081a72cb41SStephan Aßmus 
2091a72cb41SStephan Aßmus 		topTint = 1.25;
2101a72cb41SStephan Aßmus 		bottomTint = 1.20;
2112f86ba45SStephan Aßmus 
2122f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
2131a72cb41SStephan Aßmus 			bevelColor1, bevelColor1,
2141a72cb41SStephan Aßmus 			bevelColor2, bevelColor2,
2151a72cb41SStephan Aßmus 			borders & B_TOP_BORDER);
2161a72cb41SStephan Aßmus 	} else {
2171a72cb41SStephan Aßmus 		rgb_color cornerColor = tint_color(base, 0.9);
2181a72cb41SStephan Aßmus 		rgb_color bevelColorTop = tint_color(base, 0.5);
2191a72cb41SStephan Aßmus 		rgb_color bevelColorLeft = tint_color(base, 0.7);
2201a72cb41SStephan Aßmus 		rgb_color bevelColorRightBottom = tint_color(base, 1.08);
2211a72cb41SStephan Aßmus 
2221a72cb41SStephan Aßmus 		topTint = 0.69;
2231a72cb41SStephan Aßmus 		bottomTint = 1.03;
2241a72cb41SStephan Aßmus 
2251a72cb41SStephan Aßmus 		_DrawFrame(view, rect,
2261a72cb41SStephan Aßmus 			bevelColorLeft, bevelColorTop,
2271a72cb41SStephan Aßmus 			bevelColorRightBottom, bevelColorRightBottom,
2282f86ba45SStephan Aßmus 			cornerColor, cornerColor,
2292f86ba45SStephan Aßmus 			borders);
2301a72cb41SStephan Aßmus 	}
2312f86ba45SStephan Aßmus 
2322f86ba45SStephan Aßmus 	// the actual surface top
2332f86ba45SStephan Aßmus 
2342f86ba45SStephan Aßmus 	_FillGradient(view, rect, base, topTint, bottomTint);
2352f86ba45SStephan Aßmus }
2362f86ba45SStephan Aßmus 
2372f86ba45SStephan Aßmus 
2382f86ba45SStephan Aßmus void
239681c2e44SStephan Aßmus BControlLook::DrawMenuFieldFrame(BView* view, BRect& rect,
240681c2e44SStephan Aßmus 	const BRect& updateRect, const rgb_color& base,
241681c2e44SStephan Aßmus 	const rgb_color& background, uint32 flags, uint32 borders)
24213cd46dfSStephan Aßmus {
243681c2e44SStephan Aßmus 	_DrawButtonFrame(view, rect, updateRect, base, background, 0.6, 1.0, flags,
244681c2e44SStephan Aßmus 		borders);
24513cd46dfSStephan Aßmus }
24613cd46dfSStephan Aßmus 
24713cd46dfSStephan Aßmus 
24813cd46dfSStephan Aßmus void
2492f86ba45SStephan Aßmus BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect,
2502f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, bool popupIndicator,
2512f86ba45SStephan Aßmus 	uint32 flags)
2522f86ba45SStephan Aßmus {
2532f86ba45SStephan Aßmus 	if (popupIndicator) {
2542f86ba45SStephan Aßmus 		BRect leftRect(rect);
2552f86ba45SStephan Aßmus 		leftRect.right -= 10;
2562f86ba45SStephan Aßmus 
2572f86ba45SStephan Aßmus 		BRect rightRect(rect);
2582f86ba45SStephan Aßmus 		rightRect.left = rightRect.right - 9;
2592f86ba45SStephan Aßmus 
2602f86ba45SStephan Aßmus 		DrawMenuFieldBackground(view, leftRect, updateRect, base, flags,
2612f86ba45SStephan Aßmus 			B_LEFT_BORDER | B_TOP_BORDER | B_BOTTOM_BORDER);
2622f86ba45SStephan Aßmus 
2632f86ba45SStephan Aßmus 		rgb_color indicatorBase;
2642f86ba45SStephan Aßmus 		rgb_color markColor;
2652f86ba45SStephan Aßmus 		if (flags & B_DISABLED) {
2662f86ba45SStephan Aßmus 			indicatorBase = tint_color(base, 1.05);
26713cd46dfSStephan Aßmus 			markColor = tint_color(base, 1.35);
2682f86ba45SStephan Aßmus 		} else {
26913cd46dfSStephan Aßmus 			indicatorBase = tint_color(base, 1.12);
27013cd46dfSStephan Aßmus 			markColor = tint_color(base, 1.65);
2712f86ba45SStephan Aßmus 		}
2722f86ba45SStephan Aßmus 
2732f86ba45SStephan Aßmus 		DrawMenuFieldBackground(view, rightRect, updateRect, indicatorBase,
2742f86ba45SStephan Aßmus 			flags, B_RIGHT_BORDER | B_TOP_BORDER | B_BOTTOM_BORDER);
2752f86ba45SStephan Aßmus 
2762f86ba45SStephan Aßmus 		// popup marker
2772f86ba45SStephan Aßmus 		BPoint center(roundf((rightRect.left + rightRect.right) / 2.0),
2782f86ba45SStephan Aßmus 					  roundf((rightRect.top + rightRect.bottom) / 2.0));
2792f86ba45SStephan Aßmus 		BPoint triangle[3];
2802f86ba45SStephan Aßmus 		triangle[0] = center + BPoint(-2.5, -0.5);
2812f86ba45SStephan Aßmus 		triangle[1] = center + BPoint(2.5, -0.5);
2822f86ba45SStephan Aßmus 		triangle[2] = center + BPoint(0.0, 2.0);
2832f86ba45SStephan Aßmus 
2842f86ba45SStephan Aßmus 		uint32 viewFlags = view->Flags();
2852f86ba45SStephan Aßmus 		view->SetFlags(viewFlags | B_SUBPIXEL_PRECISE);
2862f86ba45SStephan Aßmus 
2872f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
2882f86ba45SStephan Aßmus 		view->FillTriangle(triangle[0], triangle[1], triangle[2]);
2892f86ba45SStephan Aßmus 
2902f86ba45SStephan Aßmus 		view->SetFlags(viewFlags);
2912f86ba45SStephan Aßmus 
2922f86ba45SStephan Aßmus 		rect = leftRect;
2932f86ba45SStephan Aßmus 	} else {
2942f86ba45SStephan Aßmus 		DrawMenuFieldBackground(view, rect, updateRect, base, flags);
2952f86ba45SStephan Aßmus 	}
2962f86ba45SStephan Aßmus }
2972f86ba45SStephan Aßmus 
2982f86ba45SStephan Aßmus void
2992f86ba45SStephan Aßmus BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect,
3002f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
3012f86ba45SStephan Aßmus 	uint32 borders)
3022f86ba45SStephan Aßmus {
3032f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
3042f86ba45SStephan Aßmus 		return;
3052f86ba45SStephan Aßmus 
3062f86ba45SStephan Aßmus 	// the surface edges
3072f86ba45SStephan Aßmus 
3082f86ba45SStephan Aßmus 	// colors
3092f86ba45SStephan Aßmus 	rgb_color cornerColor = tint_color(base, 0.85);
3102f86ba45SStephan Aßmus 	rgb_color bevelColor1 = tint_color(base, 0.3);
3112f86ba45SStephan Aßmus 	rgb_color bevelColor2 = tint_color(base, 0.5);
3122f86ba45SStephan Aßmus 	rgb_color bevelColor3 = tint_color(base, 1.03);
3132f86ba45SStephan Aßmus 
3142f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
3152f86ba45SStephan Aßmus 		cornerColor = tint_color(base, 0.8);
3162f86ba45SStephan Aßmus 		bevelColor1 = tint_color(base, 0.7);
3172f86ba45SStephan Aßmus 		bevelColor2 = tint_color(base, 0.8);
3182f86ba45SStephan Aßmus 		bevelColor3 = tint_color(base, 1.01);
3192f86ba45SStephan Aßmus 	} else {
3202f86ba45SStephan Aßmus 		cornerColor = tint_color(base, 0.85);
3212f86ba45SStephan Aßmus 		bevelColor1 = tint_color(base, 0.3);
3222f86ba45SStephan Aßmus 		bevelColor2 = tint_color(base, 0.5);
3232f86ba45SStephan Aßmus 		bevelColor3 = tint_color(base, 1.03);
3242f86ba45SStephan Aßmus 	}
3252f86ba45SStephan Aßmus 
3262f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
3272f86ba45SStephan Aßmus 		bevelColor2, bevelColor1,
3282f86ba45SStephan Aßmus 		bevelColor3, bevelColor3,
3292f86ba45SStephan Aßmus 		cornerColor, cornerColor,
3302f86ba45SStephan Aßmus 		borders);
3312f86ba45SStephan Aßmus 
3322f86ba45SStephan Aßmus 	// the actual surface top
3332f86ba45SStephan Aßmus 
3342f86ba45SStephan Aßmus 	float topTint = 0.49;
3352f86ba45SStephan Aßmus 	float middleTint1 = 0.62;
3362f86ba45SStephan Aßmus 	float middleTint2 = 0.76;
3372f86ba45SStephan Aßmus 	float bottomTint = 0.90;
3382f86ba45SStephan Aßmus 
3392f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
3402f86ba45SStephan Aßmus 		topTint = (topTint + B_NO_TINT) / 2;
3412f86ba45SStephan Aßmus 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
3422f86ba45SStephan Aßmus 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
3432f86ba45SStephan Aßmus 		bottomTint = (bottomTint + B_NO_TINT) / 2;
3442f86ba45SStephan Aßmus 	} else if (flags & B_HOVER) {
3452f86ba45SStephan Aßmus 		static const float kHoverTintFactor = 0.85;
3462f86ba45SStephan Aßmus 		topTint *= kHoverTintFactor;
3472f86ba45SStephan Aßmus 		middleTint1 *= kHoverTintFactor;
3482f86ba45SStephan Aßmus 		middleTint2 *= kHoverTintFactor;
3492f86ba45SStephan Aßmus 		bottomTint *= kHoverTintFactor;
3502f86ba45SStephan Aßmus 	}
3512f86ba45SStephan Aßmus 
3522f86ba45SStephan Aßmus 	_FillGlossyGradient(view, rect, base, topTint, middleTint1,
3532f86ba45SStephan Aßmus 		middleTint2, bottomTint);
3542f86ba45SStephan Aßmus }
3552f86ba45SStephan Aßmus 
3562f86ba45SStephan Aßmus void
3572f86ba45SStephan Aßmus BControlLook::DrawMenuBackground(BView* view, BRect& rect,
3582f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
3592f86ba45SStephan Aßmus 	uint32 borders)
3602f86ba45SStephan Aßmus {
3612f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
3622f86ba45SStephan Aßmus 		return;
3632f86ba45SStephan Aßmus 
3642f86ba45SStephan Aßmus 	// the surface edges
3652f86ba45SStephan Aßmus 
3662f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
3672f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
3682f86ba45SStephan Aßmus 	rgb_color background = tint_color(base, 0.75);
3692f86ba45SStephan Aßmus 
3702f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
3712f86ba45SStephan Aßmus 		bevelLightColor = tint_color(background, 0.80);
3722f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(background, 1.07);
3732f86ba45SStephan Aßmus 	} else {
3742f86ba45SStephan Aßmus 		bevelLightColor = tint_color(background, 0.6);
3752f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(background, 1.12);
3762f86ba45SStephan Aßmus 	}
3772f86ba45SStephan Aßmus 
3782f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
3792f86ba45SStephan Aßmus 		bevelLightColor, bevelLightColor,
3802f86ba45SStephan Aßmus 		bevelShadowColor, bevelShadowColor,
3812f86ba45SStephan Aßmus 		borders);
3822f86ba45SStephan Aßmus 
3832f86ba45SStephan Aßmus 	// the actual surface top
3842f86ba45SStephan Aßmus 
3852f86ba45SStephan Aßmus 	view->SetHighColor(background);
3862f86ba45SStephan Aßmus 	view->FillRect(rect);
3872f86ba45SStephan Aßmus }
3882f86ba45SStephan Aßmus 
3892f86ba45SStephan Aßmus 
3902f86ba45SStephan Aßmus void
3912f86ba45SStephan Aßmus BControlLook::DrawMenuItemBackground(BView* view, BRect& rect,
3922f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
3932f86ba45SStephan Aßmus 	uint32 borders)
3942f86ba45SStephan Aßmus {
3952f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
3962f86ba45SStephan Aßmus 		return;
3972f86ba45SStephan Aßmus 
3982f86ba45SStephan Aßmus 	// the surface edges
3992f86ba45SStephan Aßmus 
4002f86ba45SStephan Aßmus 	float topTint;
4012f86ba45SStephan Aßmus 	float bottomTint;
4022f86ba45SStephan Aßmus 	rgb_color selectedColor = base;
4032f86ba45SStephan Aßmus 
4042f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
4052f86ba45SStephan Aßmus 		topTint = 0.9;
4062f86ba45SStephan Aßmus 		bottomTint = 1.05;
4072f86ba45SStephan Aßmus 		selectedColor = tint_color(base, 1.26);
4082f86ba45SStephan Aßmus 	} else if (flags & B_DISABLED) {
4092f86ba45SStephan Aßmus 		topTint = 0.80;
4102f86ba45SStephan Aßmus 		bottomTint = 1.07;
4112f86ba45SStephan Aßmus 	} else {
4122f86ba45SStephan Aßmus 		topTint = 0.6;
4132f86ba45SStephan Aßmus 		bottomTint = 1.12;
4142f86ba45SStephan Aßmus 	}
4152f86ba45SStephan Aßmus 
4162f86ba45SStephan Aßmus 	rgb_color bevelLightColor = tint_color(selectedColor, topTint);
4172f86ba45SStephan Aßmus 	rgb_color bevelShadowColor = tint_color(selectedColor, bottomTint);
4182f86ba45SStephan Aßmus 
4192f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
4202f86ba45SStephan Aßmus 		bevelLightColor, bevelLightColor,
4212f86ba45SStephan Aßmus 		bevelShadowColor, bevelShadowColor,
4222f86ba45SStephan Aßmus 		borders);
4232f86ba45SStephan Aßmus 
4242f86ba45SStephan Aßmus 	// the actual surface top
4252f86ba45SStephan Aßmus 
4262f86ba45SStephan Aßmus 	view->SetLowColor(selectedColor);
4272f86ba45SStephan Aßmus //	_FillGradient(view, rect, selectedColor, topTint, bottomTint);
4282f86ba45SStephan Aßmus 	_FillGradient(view, rect, selectedColor, bottomTint, topTint);
4292f86ba45SStephan Aßmus }
4302f86ba45SStephan Aßmus 
4312f86ba45SStephan Aßmus 
4322f86ba45SStephan Aßmus void
4332f86ba45SStephan Aßmus BControlLook::DrawStatusBar(BView* view, BRect& rect, const BRect& updateRect,
4342f86ba45SStephan Aßmus 	const rgb_color& base, const rgb_color& barColor, float progressPosition)
4352f86ba45SStephan Aßmus {
4362f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
4372f86ba45SStephan Aßmus 		return;
4382f86ba45SStephan Aßmus 
4392f86ba45SStephan Aßmus 	_DrawOuterResessedFrame(view, rect, base, 0.6);
4402f86ba45SStephan Aßmus 
4412f86ba45SStephan Aßmus 	// colors
4422f86ba45SStephan Aßmus 	rgb_color dark1BorderColor = tint_color(base, 1.3);
4432f86ba45SStephan Aßmus 	rgb_color dark2BorderColor = tint_color(base, 1.2);
4442f86ba45SStephan Aßmus 	rgb_color dark1FilledBorderColor = tint_color(barColor, 1.20);
4452f86ba45SStephan Aßmus 	rgb_color dark2FilledBorderColor = tint_color(barColor, 1.45);
4462f86ba45SStephan Aßmus 
4472f86ba45SStephan Aßmus 	BRect filledRect(rect);
4482f86ba45SStephan Aßmus 	filledRect.right = progressPosition - 1;
4492f86ba45SStephan Aßmus 
4502f86ba45SStephan Aßmus 	BRect nonfilledRect(rect);
4512f86ba45SStephan Aßmus 	nonfilledRect.left = progressPosition;
4522f86ba45SStephan Aßmus 
4532f86ba45SStephan Aßmus 	bool filledSurface = filledRect.Width() > 0;
4542f86ba45SStephan Aßmus 	bool nonfilledSurface = nonfilledRect.Width() > 0;
4552f86ba45SStephan Aßmus 
4562f86ba45SStephan Aßmus 	if (filledSurface) {
4572f86ba45SStephan Aßmus 		_DrawFrame(view, filledRect,
4582f86ba45SStephan Aßmus 			dark1FilledBorderColor, dark1FilledBorderColor,
4592f86ba45SStephan Aßmus 			dark2FilledBorderColor, dark2FilledBorderColor);
4602f86ba45SStephan Aßmus 
4612f86ba45SStephan Aßmus 		_FillGlossyGradient(view, filledRect, barColor, 0.55, 0.68, 0.76, 0.90);
4622f86ba45SStephan Aßmus 	}
4632f86ba45SStephan Aßmus 
4642f86ba45SStephan Aßmus 	if (nonfilledSurface) {
4652f86ba45SStephan Aßmus 		_DrawFrame(view, nonfilledRect, dark1BorderColor, dark1BorderColor,
4662f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor,
4672f86ba45SStephan Aßmus 			B_TOP_BORDER | B_BOTTOM_BORDER | B_RIGHT_BORDER);
4682f86ba45SStephan Aßmus 
4692f86ba45SStephan Aßmus 		if (nonfilledRect.left < nonfilledRect.right) {
4702f86ba45SStephan Aßmus 			// shadow from fill bar, or left border
4712f86ba45SStephan Aßmus 			rgb_color leftBorder = dark1BorderColor;
4722f86ba45SStephan Aßmus 			if (filledSurface)
4732f86ba45SStephan Aßmus 				leftBorder = tint_color(base, 0.50);
4742f86ba45SStephan Aßmus 			view->SetHighColor(leftBorder);
4752f86ba45SStephan Aßmus 			view->StrokeLine(nonfilledRect.LeftTop(),
4762f86ba45SStephan Aßmus 				nonfilledRect.LeftBottom());
4772f86ba45SStephan Aßmus 			nonfilledRect.left++;
4782f86ba45SStephan Aßmus 		}
4792f86ba45SStephan Aßmus 
4802f86ba45SStephan Aßmus 		_FillGradient(view, nonfilledRect, base, 0.25, 0.06);
4812f86ba45SStephan Aßmus 	}
4822f86ba45SStephan Aßmus }
4832f86ba45SStephan Aßmus 
4842f86ba45SStephan Aßmus 
4852f86ba45SStephan Aßmus void
4862f86ba45SStephan Aßmus BControlLook::DrawCheckBox(BView* view, BRect& rect, const BRect& updateRect,
4872f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags)
4882f86ba45SStephan Aßmus {
4892f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
4902f86ba45SStephan Aßmus 		return;
4912f86ba45SStephan Aßmus 
4922f86ba45SStephan Aßmus 	rgb_color dark1BorderColor;
4932f86ba45SStephan Aßmus 	rgb_color dark2BorderColor;
4942f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
4952f86ba45SStephan Aßmus 
4962f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
4974f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.0, 1.0, flags);
4982f86ba45SStephan Aßmus 
4992f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.15);
5002f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.15);
5012f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
5022f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.50);
5032f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.48);
5042f86ba45SStephan Aßmus 
5052f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
5062f86ba45SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
5072f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor);
5082f86ba45SStephan Aßmus 
5092f86ba45SStephan Aßmus 		dark2BorderColor = dark1BorderColor;
5102f86ba45SStephan Aßmus 	} else {
5114f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.6, 1.0, flags);
5122f86ba45SStephan Aßmus 
5132f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.40);
5142f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.38);
5152f86ba45SStephan Aßmus 	}
5162f86ba45SStephan Aßmus 
5172f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
5182f86ba45SStephan Aßmus 		dark1BorderColor = navigationColor;
5192f86ba45SStephan Aßmus 		dark2BorderColor = navigationColor;
5202f86ba45SStephan Aßmus 	}
5212f86ba45SStephan Aßmus 
5222f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
5232f86ba45SStephan Aßmus 		dark1BorderColor, dark1BorderColor,
5242f86ba45SStephan Aßmus 		dark2BorderColor, dark2BorderColor);
5252f86ba45SStephan Aßmus 
5262f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
5272f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, 0.4, 0.2);
5282f86ba45SStephan Aßmus 	} else {
5292f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, 0.15, 0.0);
5302f86ba45SStephan Aßmus 	}
5312f86ba45SStephan Aßmus 
5322f86ba45SStephan Aßmus 	rgb_color markColor;
5332f86ba45SStephan Aßmus 	if (_RadioButtonAndCheckBoxMarkColor(base, markColor, flags)) {
5342f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
5352f86ba45SStephan Aßmus 
5362f86ba45SStephan Aßmus 		rect.InsetBy(2, 2);
5372f86ba45SStephan Aßmus 		view->SetPenSize(max_c(1.0, ceilf(rect.Width() / 3.5)));
5382f86ba45SStephan Aßmus 		view->SetDrawingMode(B_OP_OVER);
5392f86ba45SStephan Aßmus 
5402f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.RightBottom());
5412f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftBottom(), rect.RightTop());
5422f86ba45SStephan Aßmus 	}
5432f86ba45SStephan Aßmus }
5442f86ba45SStephan Aßmus 
5452f86ba45SStephan Aßmus 
5462f86ba45SStephan Aßmus void
5472f86ba45SStephan Aßmus BControlLook::DrawRadioButton(BView* view, BRect& rect, const BRect& updateRect,
5482f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags)
5492f86ba45SStephan Aßmus {
5502f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
5512f86ba45SStephan Aßmus 		return;
5522f86ba45SStephan Aßmus 
5532f86ba45SStephan Aßmus 	rgb_color borderColor;
5542f86ba45SStephan Aßmus 	rgb_color bevelLight;
5552f86ba45SStephan Aßmus 	rgb_color bevelShadow;
5562f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
5572f86ba45SStephan Aßmus 
5582f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
5592f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.15);
5602f86ba45SStephan Aßmus 		bevelLight = base;
5612f86ba45SStephan Aßmus 		bevelShadow = base;
5622f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
5632f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.50);
5642f86ba45SStephan Aßmus 		bevelLight = borderColor;
5652f86ba45SStephan Aßmus 		bevelShadow = borderColor;
5662f86ba45SStephan Aßmus 	} else {
5672f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.45);
5682f86ba45SStephan Aßmus 		bevelLight = tint_color(base, 0.55);
5692f86ba45SStephan Aßmus 		bevelShadow = tint_color(base, 1.11);
5702f86ba45SStephan Aßmus 	}
5712f86ba45SStephan Aßmus 
5722f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
5732f86ba45SStephan Aßmus 		borderColor = navigationColor;
5742f86ba45SStephan Aßmus 	}
5752f86ba45SStephan Aßmus 
5762f86ba45SStephan Aßmus 	BGradientLinear bevelGradient;
5772f86ba45SStephan Aßmus 	bevelGradient.AddColor(bevelShadow, 0);
5782f86ba45SStephan Aßmus 	bevelGradient.AddColor(bevelLight, 255);
5792f86ba45SStephan Aßmus 	bevelGradient.SetStart(rect.LeftTop());
5802f86ba45SStephan Aßmus 	bevelGradient.SetEnd(rect.RightBottom());
5812f86ba45SStephan Aßmus 
5822f86ba45SStephan Aßmus 	view->FillEllipse(rect, bevelGradient);
5832f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
5842f86ba45SStephan Aßmus 
5852f86ba45SStephan Aßmus 	bevelGradient.MakeEmpty();
5862f86ba45SStephan Aßmus 	bevelGradient.AddColor(borderColor, 0);
5872f86ba45SStephan Aßmus 	bevelGradient.AddColor(tint_color(borderColor, 0.8), 255);
5882f86ba45SStephan Aßmus 	view->FillEllipse(rect, bevelGradient);
5892f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
5902f86ba45SStephan Aßmus 
5912f86ba45SStephan Aßmus 	float topTint;
5922f86ba45SStephan Aßmus 	float bottomTint;
5932f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
5942f86ba45SStephan Aßmus 		topTint = 0.4;
5952f86ba45SStephan Aßmus 		bottomTint = 0.2;
5962f86ba45SStephan Aßmus 	} else {
5972f86ba45SStephan Aßmus 		topTint = 0.15;
5982f86ba45SStephan Aßmus 		bottomTint = 0.0;
5992f86ba45SStephan Aßmus 	}
6002f86ba45SStephan Aßmus 
6012f86ba45SStephan Aßmus 	BGradientLinear gradient;
6022f86ba45SStephan Aßmus 	_MakeGradient(gradient, rect, base, topTint, bottomTint);
6032f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
6042f86ba45SStephan Aßmus 
6052f86ba45SStephan Aßmus 	rgb_color markColor;
6062f86ba45SStephan Aßmus 	if (_RadioButtonAndCheckBoxMarkColor(base, markColor, flags)) {
6072f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
6082f86ba45SStephan Aßmus 		rect.InsetBy(3, 3);
6092f86ba45SStephan Aßmus 		view->FillEllipse(rect);
6102f86ba45SStephan Aßmus 	}
6112f86ba45SStephan Aßmus }
6122f86ba45SStephan Aßmus 
6132f86ba45SStephan Aßmus 
6142f86ba45SStephan Aßmus void
6152f86ba45SStephan Aßmus BControlLook::DrawScrollBarBackground(BView* view, BRect& rect1, BRect& rect2,
6162f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
6172f86ba45SStephan Aßmus 	enum orientation orientation)
6182f86ba45SStephan Aßmus {
6192f86ba45SStephan Aßmus 	DrawScrollBarBackground(view, rect1, updateRect, base, flags, orientation);
6202f86ba45SStephan Aßmus 	DrawScrollBarBackground(view, rect2, updateRect, base, flags, orientation);
6212f86ba45SStephan Aßmus }
6222f86ba45SStephan Aßmus 
6232f86ba45SStephan Aßmus void
6242f86ba45SStephan Aßmus BControlLook::DrawScrollBarBackground(BView* view, BRect& rect,
6252f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
6262f86ba45SStephan Aßmus 	enum orientation orientation)
6272f86ba45SStephan Aßmus {
6282f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
6292f86ba45SStephan Aßmus 		return;
6302f86ba45SStephan Aßmus 
6312f86ba45SStephan Aßmus 	float gradient1Tint;
6322f86ba45SStephan Aßmus 	float gradient2Tint;
6332f86ba45SStephan Aßmus 	float darkEdge1Tint;
6342f86ba45SStephan Aßmus 	float darkEdge2Tint;
6352f86ba45SStephan Aßmus 	float shadowTint;
6362f86ba45SStephan Aßmus 
6372f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
6382f86ba45SStephan Aßmus 		gradient1Tint = 0.9;
6392f86ba45SStephan Aßmus 		gradient2Tint = 0.8;
6402f86ba45SStephan Aßmus 		darkEdge1Tint = B_DARKEN_2_TINT;
6412f86ba45SStephan Aßmus 		darkEdge2Tint = B_DARKEN_2_TINT;
6422f86ba45SStephan Aßmus 		shadowTint = gradient1Tint;
6432f86ba45SStephan Aßmus 	} else {
6442f86ba45SStephan Aßmus 		gradient1Tint = 1.10;
6452f86ba45SStephan Aßmus 		gradient2Tint = 1.05;
6462f86ba45SStephan Aßmus 		darkEdge1Tint = B_DARKEN_3_TINT;
6472f86ba45SStephan Aßmus 		darkEdge2Tint = B_DARKEN_2_TINT;
6482f86ba45SStephan Aßmus 		shadowTint = gradient1Tint;
6492f86ba45SStephan Aßmus 	}
6502f86ba45SStephan Aßmus 
6512f86ba45SStephan Aßmus 	rgb_color darkEdge1 = tint_color(base, darkEdge1Tint);
6522f86ba45SStephan Aßmus 	rgb_color darkEdge2 = tint_color(base, darkEdge2Tint);
6532f86ba45SStephan Aßmus 	rgb_color shadow = tint_color(base, shadowTint);
6542f86ba45SStephan Aßmus 
6552f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
6562f86ba45SStephan Aßmus 		// dark vertical line on left edge
6572f86ba45SStephan Aßmus 		if (rect.Width() > 0) {
6582f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge1);
6592f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
6602f86ba45SStephan Aßmus 			rect.left++;
6612f86ba45SStephan Aßmus 		}
6622f86ba45SStephan Aßmus 		// dark vertical line on right edge
6632f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6642f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge2);
6652f86ba45SStephan Aßmus 			view->StrokeLine(rect.RightTop(), rect.RightBottom());
6662f86ba45SStephan Aßmus 			rect.right--;
6672f86ba45SStephan Aßmus 		}
6682f86ba45SStephan Aßmus 		// vertical shadow line after left edge
6692f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6702f86ba45SStephan Aßmus 			view->SetHighColor(shadow);
6712f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
6722f86ba45SStephan Aßmus 			rect.left++;
6732f86ba45SStephan Aßmus 		}
6742f86ba45SStephan Aßmus 		// fill
6752f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6762f86ba45SStephan Aßmus 			_FillGradient(view, rect, base, gradient1Tint, gradient2Tint,
6772f86ba45SStephan Aßmus 				orientation);
6782f86ba45SStephan Aßmus 		}
6792f86ba45SStephan Aßmus 	} else {
6802f86ba45SStephan Aßmus 		// dark vertical line on top edge
6812f86ba45SStephan Aßmus 		if (rect.Height() > 0) {
6822f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge1);
6832f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.RightTop());
6842f86ba45SStephan Aßmus 			rect.top++;
6852f86ba45SStephan Aßmus 		}
6862f86ba45SStephan Aßmus 		// dark vertical line on bottom edge
6872f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6882f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge2);
6892f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftBottom(), rect.RightBottom());
6902f86ba45SStephan Aßmus 			rect.bottom--;
6912f86ba45SStephan Aßmus 		}
6922f86ba45SStephan Aßmus 		// horizontal shadow line after top edge
6932f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6942f86ba45SStephan Aßmus 			view->SetHighColor(shadow);
6952f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.RightTop());
6962f86ba45SStephan Aßmus 			rect.top++;
6972f86ba45SStephan Aßmus 		}
6982f86ba45SStephan Aßmus 		// fill
6992f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
7002f86ba45SStephan Aßmus 			_FillGradient(view, rect, base, gradient1Tint, gradient2Tint,
7012f86ba45SStephan Aßmus 				orientation);
7022f86ba45SStephan Aßmus 		}
7032f86ba45SStephan Aßmus 	}
7042f86ba45SStephan Aßmus }
7052f86ba45SStephan Aßmus 
7062f86ba45SStephan Aßmus 
70740a10e1cSStephan Aßmus void
70874bb70aeSStephan Aßmus BControlLook::DrawScrollViewFrame(BView* view, BRect& rect,
70974bb70aeSStephan Aßmus 	const BRect& updateRect, BRect verticalScrollBarFrame,
71074bb70aeSStephan Aßmus 	BRect horizontalScrollBarFrame, const rgb_color& base,
71174bb70aeSStephan Aßmus 	border_style border, uint32 flags, uint32 _borders)
71274bb70aeSStephan Aßmus {
713ce955579SStephan Aßmus 	// calculate scroll corner rect before messing with the "rect"
714ce955579SStephan Aßmus 	BRect scrollCornerFillRect(rect.right, rect.bottom,
715ce955579SStephan Aßmus 		rect.right, rect.bottom);
716ce955579SStephan Aßmus 	if (horizontalScrollBarFrame.IsValid())
717ce955579SStephan Aßmus 		scrollCornerFillRect.left = horizontalScrollBarFrame.right + 1;
718ce955579SStephan Aßmus 	if (verticalScrollBarFrame.IsValid())
719ce955579SStephan Aßmus 		scrollCornerFillRect.top = verticalScrollBarFrame.bottom + 1;
720ce955579SStephan Aßmus 
721c44aa833SStephan Aßmus 	if (border == B_NO_BORDER) {
722c44aa833SStephan Aßmus 		if (scrollCornerFillRect.IsValid()) {
723c44aa833SStephan Aßmus 			view->SetHighColor(base);
724c44aa833SStephan Aßmus 			view->FillRect(scrollCornerFillRect);
725c44aa833SStephan Aßmus 		}
726c44aa833SStephan Aßmus 		return;
727c44aa833SStephan Aßmus 	}
728c44aa833SStephan Aßmus 
729c44aa833SStephan Aßmus 	bool excludeScrollCorner = border == B_FANCY_BORDER
730c44aa833SStephan Aßmus 		&& horizontalScrollBarFrame.IsValid()
731c44aa833SStephan Aßmus 		&& verticalScrollBarFrame.IsValid();
732c44aa833SStephan Aßmus 
73374bb70aeSStephan Aßmus 	uint32 borders = _borders;
73474bb70aeSStephan Aßmus 	if (excludeScrollCorner) {
73574bb70aeSStephan Aßmus 		rect.bottom = horizontalScrollBarFrame.top;
73674bb70aeSStephan Aßmus 		rect.right = verticalScrollBarFrame.left;
73774bb70aeSStephan Aßmus 		borders &= ~(B_RIGHT_BORDER | B_BOTTOM_BORDER);
73874bb70aeSStephan Aßmus 	}
73974bb70aeSStephan Aßmus 
74074bb70aeSStephan Aßmus 	rgb_color scrollbarFrameColor = tint_color(base, B_DARKEN_2_TINT);
74174bb70aeSStephan Aßmus 
74274bb70aeSStephan Aßmus 	if (border == B_FANCY_BORDER)
7434f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 1.0, 1.0, flags, borders);
74474bb70aeSStephan Aßmus 
74574bb70aeSStephan Aßmus 	if (flags & B_FOCUSED) {
74674bb70aeSStephan Aßmus 		rgb_color focusColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
74774bb70aeSStephan Aßmus 		_DrawFrame(view, rect, focusColor, focusColor, focusColor, focusColor,
74874bb70aeSStephan Aßmus 			borders);
74974bb70aeSStephan Aßmus 	} else {
75074bb70aeSStephan Aßmus 		_DrawFrame(view, rect, scrollbarFrameColor, scrollbarFrameColor,
75174bb70aeSStephan Aßmus 			scrollbarFrameColor, scrollbarFrameColor, borders);
75274bb70aeSStephan Aßmus 	}
75374bb70aeSStephan Aßmus 
75474bb70aeSStephan Aßmus 	if (excludeScrollCorner) {
75574bb70aeSStephan Aßmus 		horizontalScrollBarFrame.InsetBy(-1, -1);
75674bb70aeSStephan Aßmus 		// do not overdraw the top edge
75774bb70aeSStephan Aßmus 		horizontalScrollBarFrame.top += 2;
75874bb70aeSStephan Aßmus 		borders = _borders;
75974bb70aeSStephan Aßmus 		borders &= ~B_TOP_BORDER;
76074bb70aeSStephan Aßmus 		_DrawOuterResessedFrame(view, horizontalScrollBarFrame, base,
7614f579098SStephan Aßmus 			1.0, 1.0, flags, borders);
76274bb70aeSStephan Aßmus 		_DrawFrame(view, horizontalScrollBarFrame, scrollbarFrameColor,
76374bb70aeSStephan Aßmus 			scrollbarFrameColor, scrollbarFrameColor, scrollbarFrameColor,
76474bb70aeSStephan Aßmus 			borders);
76574bb70aeSStephan Aßmus 
76674bb70aeSStephan Aßmus 
76774bb70aeSStephan Aßmus 		verticalScrollBarFrame.InsetBy(-1, -1);
76874bb70aeSStephan Aßmus 		// do not overdraw the left edge
76974bb70aeSStephan Aßmus 		verticalScrollBarFrame.left += 2;
77074bb70aeSStephan Aßmus 		borders = _borders;
77174bb70aeSStephan Aßmus 		borders &= ~B_LEFT_BORDER;
77274bb70aeSStephan Aßmus 		_DrawOuterResessedFrame(view, verticalScrollBarFrame, base,
7734f579098SStephan Aßmus 			1.0, 1.0, flags, borders);
77474bb70aeSStephan Aßmus 		_DrawFrame(view, verticalScrollBarFrame, scrollbarFrameColor,
77574bb70aeSStephan Aßmus 			scrollbarFrameColor, scrollbarFrameColor, scrollbarFrameColor,
77674bb70aeSStephan Aßmus 			borders);
777ce955579SStephan Aßmus 
778ce955579SStephan Aßmus 		// exclude recessed frame
779ce955579SStephan Aßmus 		scrollCornerFillRect.top++;
780ce955579SStephan Aßmus 		scrollCornerFillRect.left++;
781ce955579SStephan Aßmus 	}
782ce955579SStephan Aßmus 
783ce955579SStephan Aßmus 	if (scrollCornerFillRect.IsValid()) {
784ce955579SStephan Aßmus 		view->SetHighColor(base);
785ce955579SStephan Aßmus 		view->FillRect(scrollCornerFillRect);
78674bb70aeSStephan Aßmus 	}
78774bb70aeSStephan Aßmus }
78874bb70aeSStephan Aßmus 
78974bb70aeSStephan Aßmus 
79074bb70aeSStephan Aßmus void
79140a10e1cSStephan Aßmus BControlLook::DrawArrowShape(BView* view, BRect& rect, const BRect& updateRect,
79240a10e1cSStephan Aßmus 	const rgb_color& base, uint32 direction, uint32 flags, float tint)
79340a10e1cSStephan Aßmus {
79440a10e1cSStephan Aßmus 	BPoint tri1, tri2, tri3;
79540a10e1cSStephan Aßmus 	float hInset = rect.Width() / 3;
79640a10e1cSStephan Aßmus 	float vInset = rect.Height() / 3;
79740a10e1cSStephan Aßmus 	rect.InsetBy(hInset, vInset);
79840a10e1cSStephan Aßmus 
79940a10e1cSStephan Aßmus 	switch (direction) {
80040a10e1cSStephan Aßmus 		case B_LEFT_ARROW:
80140a10e1cSStephan Aßmus 			tri1.Set(rect.right, rect.top);
80240a10e1cSStephan Aßmus 			tri2.Set(rect.right - rect.Width() / 1.33,
80340a10e1cSStephan Aßmus 				(rect.top + rect.bottom + 1) /2 );
80440a10e1cSStephan Aßmus 			tri3.Set(rect.right, rect.bottom + 1);
80540a10e1cSStephan Aßmus 			break;
80640a10e1cSStephan Aßmus 		case B_RIGHT_ARROW:
80740a10e1cSStephan Aßmus 			tri1.Set(rect.left, rect.bottom + 1);
80840a10e1cSStephan Aßmus 			tri2.Set(rect.left + rect.Width() / 1.33,
80940a10e1cSStephan Aßmus 				(rect.top + rect.bottom + 1) / 2);
81040a10e1cSStephan Aßmus 			tri3.Set(rect.left, rect.top);
81140a10e1cSStephan Aßmus 			break;
81240a10e1cSStephan Aßmus 		case B_UP_ARROW:
81340a10e1cSStephan Aßmus 			tri1.Set(rect.left, rect.bottom);
81440a10e1cSStephan Aßmus 			tri2.Set((rect.left + rect.right + 1) / 2,
81540a10e1cSStephan Aßmus 				rect.bottom - rect.Height() / 1.33);
81640a10e1cSStephan Aßmus 			tri3.Set(rect.right + 1, rect.bottom);
81740a10e1cSStephan Aßmus 			break;
81840a10e1cSStephan Aßmus 		case B_DOWN_ARROW:
81940a10e1cSStephan Aßmus 		default:
82040a10e1cSStephan Aßmus 			tri1.Set(rect.left, rect.top);
82140a10e1cSStephan Aßmus 			tri2.Set((rect.left + rect.right + 1) / 2,
82240a10e1cSStephan Aßmus 				rect.top + rect.Height() / 1.33);
82340a10e1cSStephan Aßmus 			tri3.Set(rect.right + 1, rect.top);
82440a10e1cSStephan Aßmus 			break;
82540a10e1cSStephan Aßmus 	}
82640a10e1cSStephan Aßmus 	// offset triangle if down
82740a10e1cSStephan Aßmus 	if (flags & B_ACTIVATED)
82840a10e1cSStephan Aßmus 		view->MovePenTo(BPoint(1, 1));
82940a10e1cSStephan Aßmus 	else
83040a10e1cSStephan Aßmus 		view->MovePenTo(BPoint(0, 0));
83140a10e1cSStephan Aßmus 
83240a10e1cSStephan Aßmus 	BShape arrowShape;
83340a10e1cSStephan Aßmus 	arrowShape.MoveTo(tri1);
83440a10e1cSStephan Aßmus 	arrowShape.LineTo(tri2);
83540a10e1cSStephan Aßmus 	arrowShape.LineTo(tri3);
83640a10e1cSStephan Aßmus 
83740a10e1cSStephan Aßmus 	if (flags & B_DISABLED)
83840a10e1cSStephan Aßmus 		tint = (tint + B_NO_TINT + B_NO_TINT) / 3;
83940a10e1cSStephan Aßmus 
84040a10e1cSStephan Aßmus 	view->SetHighColor(tint_color(base, tint));
84140a10e1cSStephan Aßmus 
84240a10e1cSStephan Aßmus 	float penSize = view->PenSize();
84340a10e1cSStephan Aßmus 	drawing_mode mode = view->DrawingMode();
84440a10e1cSStephan Aßmus 
84540a10e1cSStephan Aßmus 	view->SetPenSize(ceilf(hInset / 2.0));
84640a10e1cSStephan Aßmus 	view->SetDrawingMode(B_OP_OVER);
84740a10e1cSStephan Aßmus 	view->StrokeShape(&arrowShape);
84840a10e1cSStephan Aßmus 
84940a10e1cSStephan Aßmus 	view->SetPenSize(penSize);
85040a10e1cSStephan Aßmus 	view->SetDrawingMode(mode);
85140a10e1cSStephan Aßmus }
85240a10e1cSStephan Aßmus 
85340a10e1cSStephan Aßmus 
8542f86ba45SStephan Aßmus rgb_color
8552f86ba45SStephan Aßmus BControlLook::SliderBarColor(const rgb_color& base)
8562f86ba45SStephan Aßmus {
8572f86ba45SStephan Aßmus 	return tint_color(ui_color(B_PANEL_BACKGROUND_COLOR), B_DARKEN_1_TINT);
8582f86ba45SStephan Aßmus }
8592f86ba45SStephan Aßmus 
8602f86ba45SStephan Aßmus 
8612f86ba45SStephan Aßmus void
8622f86ba45SStephan Aßmus BControlLook::DrawSliderBar(BView* view, BRect rect, const BRect& updateRect,
8632f86ba45SStephan Aßmus 	const rgb_color& base, rgb_color leftFillColor, rgb_color rightFillColor,
8642f86ba45SStephan Aßmus 	float sliderScale, uint32 flags, enum orientation orientation)
8652f86ba45SStephan Aßmus {
8662f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
8672f86ba45SStephan Aßmus 		return;
8682f86ba45SStephan Aßmus 
8692f86ba45SStephan Aßmus 	// separate the bar in two sides
8702f86ba45SStephan Aßmus 	float sliderPosition;
8712f86ba45SStephan Aßmus 	BRect leftBarSide = rect;
8722f86ba45SStephan Aßmus 	BRect rightBarSide = rect;
8732f86ba45SStephan Aßmus 
8742f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
8752f86ba45SStephan Aßmus 		sliderPosition = floorf(rect.left + 2 + (rect.Width() - 2)
8762f86ba45SStephan Aßmus 			* sliderScale);
8772f86ba45SStephan Aßmus 		leftBarSide.right = sliderPosition - 1;
8782f86ba45SStephan Aßmus 		rightBarSide.left = sliderPosition;
8792f86ba45SStephan Aßmus 	} else {
8802f86ba45SStephan Aßmus 		sliderPosition = floorf(rect.top + 2 + (rect.Height() - 2)
8812f86ba45SStephan Aßmus 			* sliderScale);
8822f86ba45SStephan Aßmus 		leftBarSide.bottom = sliderPosition - 1;
8832f86ba45SStephan Aßmus 		rightBarSide.top = sliderPosition;
8842f86ba45SStephan Aßmus 	}
8852f86ba45SStephan Aßmus 
8862f86ba45SStephan Aßmus 	// fill the background for the corners, exclude the middle bar for now
8872f86ba45SStephan Aßmus 	BRegion region(rect);
8882f86ba45SStephan Aßmus 	region.Exclude(rightBarSide);
8892f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
8902f86ba45SStephan Aßmus 
8912f86ba45SStephan Aßmus 	view->PushState();
8922f86ba45SStephan Aßmus 
8932f86ba45SStephan Aßmus 	DrawSliderBar(view, rect, updateRect, base, leftFillColor, flags,
8942f86ba45SStephan Aßmus 		orientation);
8952f86ba45SStephan Aßmus 
8962f86ba45SStephan Aßmus 	view->PopState();
8972f86ba45SStephan Aßmus 
8982f86ba45SStephan Aßmus 	region.Set(rect);
8992f86ba45SStephan Aßmus 	region.Exclude(leftBarSide);
9002f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
9012f86ba45SStephan Aßmus 
9022f86ba45SStephan Aßmus 	view->PushState();
9032f86ba45SStephan Aßmus 
9042f86ba45SStephan Aßmus 	DrawSliderBar(view, rect, updateRect, base, rightFillColor, flags,
9052f86ba45SStephan Aßmus 		orientation);
9062f86ba45SStephan Aßmus 
9072f86ba45SStephan Aßmus 	view->PopState();
9082f86ba45SStephan Aßmus 
9092f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
9102f86ba45SStephan Aßmus }
9112f86ba45SStephan Aßmus 
9122f86ba45SStephan Aßmus 
9132f86ba45SStephan Aßmus void
9142f86ba45SStephan Aßmus BControlLook::DrawSliderBar(BView* view, BRect rect, const BRect& updateRect,
9152f86ba45SStephan Aßmus 	const rgb_color& base, rgb_color fillColor, uint32 flags,
9162f86ba45SStephan Aßmus 	enum orientation orientation)
9172f86ba45SStephan Aßmus {
9182f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
9192f86ba45SStephan Aßmus 		return;
9202f86ba45SStephan Aßmus 
9212f86ba45SStephan Aßmus 	// separate the rect into corners
9222f86ba45SStephan Aßmus 	BRect leftCorner(rect);
9232f86ba45SStephan Aßmus 	BRect rightCorner(rect);
9242f86ba45SStephan Aßmus 	BRect barRect(rect);
9252f86ba45SStephan Aßmus 
9262f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
9272f86ba45SStephan Aßmus 		leftCorner.right = leftCorner.left + leftCorner.Height();
9282f86ba45SStephan Aßmus 		rightCorner.left = rightCorner.right - rightCorner.Height();
9292f86ba45SStephan Aßmus 		barRect.left += ceilf(barRect.Height() / 2);
9302f86ba45SStephan Aßmus 		barRect.right -= ceilf(barRect.Height() / 2);
9312f86ba45SStephan Aßmus 	} else {
9322f86ba45SStephan Aßmus 		leftCorner.bottom = leftCorner.top + leftCorner.Width();
9332f86ba45SStephan Aßmus 		rightCorner.top = rightCorner.bottom - rightCorner.Width();
9342f86ba45SStephan Aßmus 		barRect.top += ceilf(barRect.Width() / 2);
9352f86ba45SStephan Aßmus 		barRect.bottom -= ceilf(barRect.Width() / 2);
9362f86ba45SStephan Aßmus 	}
9372f86ba45SStephan Aßmus 
9382f86ba45SStephan Aßmus 	// fill the background for the corners, exclude the middle bar for now
9392f86ba45SStephan Aßmus 	BRegion region(rect);
9402f86ba45SStephan Aßmus 	region.Exclude(barRect);
9412f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
9422f86ba45SStephan Aßmus 
94361ac1a85SStephan Aßmus 	if ((flags & B_BLEND_FRAME) == 0) {
9442f86ba45SStephan Aßmus 		view->SetHighColor(base);
9452f86ba45SStephan Aßmus 		view->FillRect(rect);
94661ac1a85SStephan Aßmus 	}
9472f86ba45SStephan Aßmus 
9482f86ba45SStephan Aßmus 	// figure out the tints to be used
9492f86ba45SStephan Aßmus 	float edgeLightTint;
9502f86ba45SStephan Aßmus 	float edgeShadowTint;
9512f86ba45SStephan Aßmus 	float frameLightTint;
9522f86ba45SStephan Aßmus 	float frameShadowTint;
9532f86ba45SStephan Aßmus 	float fillLightTint;
9542f86ba45SStephan Aßmus 	float fillShadowTint;
95561ac1a85SStephan Aßmus 	uint8 edgeLightAlpha;
95661ac1a85SStephan Aßmus 	uint8 edgeShadowAlpha;
95761ac1a85SStephan Aßmus 	uint8 frameLightAlpha;
95861ac1a85SStephan Aßmus 	uint8 frameShadowAlpha;
9592f86ba45SStephan Aßmus 
9602f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
9612f86ba45SStephan Aßmus 		edgeLightTint = 1.0;
9622f86ba45SStephan Aßmus 		edgeShadowTint = 1.0;
9632f86ba45SStephan Aßmus 		frameLightTint = 1.20;
9642f86ba45SStephan Aßmus 		frameShadowTint = 1.25;
9652f86ba45SStephan Aßmus 		fillLightTint = 0.9;
9662f86ba45SStephan Aßmus 		fillShadowTint = 1.05;
96710ddee8dSStephan Aßmus 		edgeLightAlpha = 12;
96810ddee8dSStephan Aßmus 		edgeShadowAlpha = 12;
96961ac1a85SStephan Aßmus 		frameLightAlpha = 40;
97061ac1a85SStephan Aßmus 		frameShadowAlpha = 45;
9712f86ba45SStephan Aßmus 
9722f86ba45SStephan Aßmus 		fillColor.red = uint8(fillColor.red * 0.4 + base.red * 0.6);
9732f86ba45SStephan Aßmus 		fillColor.green = uint8(fillColor.green * 0.4 + base.green * 0.6);
9742f86ba45SStephan Aßmus 		fillColor.blue = uint8(fillColor.blue * 0.4 + base.blue * 0.6);
9752f86ba45SStephan Aßmus 	} else {
9762f86ba45SStephan Aßmus 		edgeLightTint = 0.65;
9772f86ba45SStephan Aßmus 		edgeShadowTint = 1.07;
9782f86ba45SStephan Aßmus 		frameLightTint = 1.40;
9792f86ba45SStephan Aßmus 		frameShadowTint = 1.50;
9802f86ba45SStephan Aßmus 		fillLightTint = 0.8;
9812f86ba45SStephan Aßmus 		fillShadowTint = 1.1;
98210ddee8dSStephan Aßmus 		edgeLightAlpha = 15;
98310ddee8dSStephan Aßmus 		edgeShadowAlpha = 15;
98461ac1a85SStephan Aßmus 		frameLightAlpha = 92;
98561ac1a85SStephan Aßmus 		frameShadowAlpha = 107;
9862f86ba45SStephan Aßmus 	}
9872f86ba45SStephan Aßmus 
98861ac1a85SStephan Aßmus 	rgb_color edgeLightColor;
98961ac1a85SStephan Aßmus 	rgb_color edgeShadowColor;
99061ac1a85SStephan Aßmus 	rgb_color frameLightColor;
99161ac1a85SStephan Aßmus 	rgb_color frameShadowColor;
9922f86ba45SStephan Aßmus 	rgb_color fillLightColor = tint_color(fillColor, fillLightTint);
9932f86ba45SStephan Aßmus 	rgb_color fillShadowColor = tint_color(fillColor, fillShadowTint);
9942f86ba45SStephan Aßmus 
99561ac1a85SStephan Aßmus 	drawing_mode oldMode = view->DrawingMode();
99661ac1a85SStephan Aßmus 
99761ac1a85SStephan Aßmus 	if (flags & B_BLEND_FRAME) {
99861ac1a85SStephan Aßmus 		edgeLightColor = (rgb_color){ 255, 255, 255, edgeLightAlpha };
99961ac1a85SStephan Aßmus 		edgeShadowColor = (rgb_color){ 0, 0, 0, edgeShadowAlpha };
100061ac1a85SStephan Aßmus 		frameLightColor = (rgb_color){ 0, 0, 0, frameLightAlpha };
100161ac1a85SStephan Aßmus 		frameShadowColor = (rgb_color){ 0, 0, 0, frameShadowAlpha };
100261ac1a85SStephan Aßmus 
100361ac1a85SStephan Aßmus 		view->SetDrawingMode(B_OP_ALPHA);
100461ac1a85SStephan Aßmus 	} else {
100561ac1a85SStephan Aßmus 		edgeLightColor = tint_color(base, edgeLightTint);
100661ac1a85SStephan Aßmus 		edgeShadowColor = tint_color(base, edgeShadowTint);
100761ac1a85SStephan Aßmus 		frameLightColor = tint_color(fillColor, frameLightTint);
100861ac1a85SStephan Aßmus 		frameShadowColor = tint_color(fillColor, frameShadowTint);
100961ac1a85SStephan Aßmus 	}
101061ac1a85SStephan Aßmus 
10112f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
10122f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, leftCorner, updateRect, edgeLightColor,
10132f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
10142f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 1.0, 0.0, -1.0, orientation);
10152f86ba45SStephan Aßmus 
10162f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, rightCorner, updateRect, edgeLightColor,
10172f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
10182f86ba45SStephan Aßmus 			fillShadowColor, 0.0, 1.0, -1.0, -1.0, orientation);
10192f86ba45SStephan Aßmus 	} else {
10202f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, leftCorner, updateRect, edgeLightColor,
10212f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
10222f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 1.0, -1.0, 0.0, orientation);
10232f86ba45SStephan Aßmus 
10242f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, rightCorner, updateRect, edgeLightColor,
10252f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
10262f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 0.0, -1.0, -1.0, orientation);
10272f86ba45SStephan Aßmus 	}
10282f86ba45SStephan Aßmus 
10292f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
10302f86ba45SStephan Aßmus 
10312f86ba45SStephan Aßmus 	view->BeginLineArray(4);
10322f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
10332f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.RightTop(), edgeShadowColor);
10342f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftBottom(), barRect.RightBottom(),
10352f86ba45SStephan Aßmus 			edgeLightColor);
10362f86ba45SStephan Aßmus 		barRect.InsetBy(0, 1);
10372f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.RightTop(), frameShadowColor);
10382f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftBottom(), barRect.RightBottom(),
10392f86ba45SStephan Aßmus 			frameLightColor);
10402f86ba45SStephan Aßmus 		barRect.InsetBy(0, 1);
10412f86ba45SStephan Aßmus 	} else {
10422f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.LeftBottom(), edgeShadowColor);
10432f86ba45SStephan Aßmus 		view->AddLine(barRect.RightTop(), barRect.RightBottom(),
10442f86ba45SStephan Aßmus 			edgeLightColor);
10452f86ba45SStephan Aßmus 		barRect.InsetBy(1, 0);
10462f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.LeftBottom(), frameShadowColor);
10472f86ba45SStephan Aßmus 		view->AddLine(barRect.RightTop(), barRect.RightBottom(),
10482f86ba45SStephan Aßmus 			frameLightColor);
10492f86ba45SStephan Aßmus 		barRect.InsetBy(1, 0);
10502f86ba45SStephan Aßmus 	}
10512f86ba45SStephan Aßmus 	view->EndLineArray();
10522f86ba45SStephan Aßmus 
105361ac1a85SStephan Aßmus 	view->SetDrawingMode(oldMode);
105461ac1a85SStephan Aßmus 
10552f86ba45SStephan Aßmus 	_FillGradient(view, barRect, fillColor, fillShadowTint, fillLightTint,
10562f86ba45SStephan Aßmus 		orientation);
10572f86ba45SStephan Aßmus }
10582f86ba45SStephan Aßmus 
10592f86ba45SStephan Aßmus 
10602f86ba45SStephan Aßmus void
10612f86ba45SStephan Aßmus BControlLook::DrawSliderThumb(BView* view, BRect& rect, const BRect& updateRect,
10622f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, enum orientation orientation)
10632f86ba45SStephan Aßmus {
10642f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
10652f86ba45SStephan Aßmus 		return;
10662f86ba45SStephan Aßmus 
10672f86ba45SStephan Aßmus 	// figure out frame color
10682f86ba45SStephan Aßmus 	rgb_color frameLightColor;
10692f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
10702f86ba45SStephan Aßmus 	rgb_color shadowColor = (rgb_color){ 0, 0, 0, 60 };
10712f86ba45SStephan Aßmus 
10722f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
10732f86ba45SStephan Aßmus 		// focused
10742f86ba45SStephan Aßmus 		frameLightColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
10752f86ba45SStephan Aßmus 		frameShadowColor = frameLightColor;
10762f86ba45SStephan Aßmus 	} else {
10772f86ba45SStephan Aßmus 		// figure out the tints to be used
10782f86ba45SStephan Aßmus 		float frameLightTint;
10792f86ba45SStephan Aßmus 		float frameShadowTint;
10802f86ba45SStephan Aßmus 
10812f86ba45SStephan Aßmus 		if (flags & B_DISABLED) {
10822f86ba45SStephan Aßmus 			frameLightTint = 1.30;
10832f86ba45SStephan Aßmus 			frameShadowTint = 1.35;
10842f86ba45SStephan Aßmus 			shadowColor.alpha = 30;
10852f86ba45SStephan Aßmus 		} else {
10862f86ba45SStephan Aßmus 			frameLightTint = 1.6;
10872f86ba45SStephan Aßmus 			frameShadowTint = 1.65;
10882f86ba45SStephan Aßmus 		}
10892f86ba45SStephan Aßmus 
10902f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, frameLightTint);
10912f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, frameShadowTint);
10922f86ba45SStephan Aßmus 	}
10932f86ba45SStephan Aßmus 
10942f86ba45SStephan Aßmus 	BRect originalRect(rect);
10952f86ba45SStephan Aßmus 	rect.right--;
10962f86ba45SStephan Aßmus 	rect.bottom--;
10972f86ba45SStephan Aßmus 
10982f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor,
10992f86ba45SStephan Aßmus 		frameShadowColor, frameShadowColor);
11002f86ba45SStephan Aßmus 
11012f86ba45SStephan Aßmus 	flags &= ~B_ACTIVATED;
11022f86ba45SStephan Aßmus 	DrawButtonBackground(view, rect, updateRect, base, flags);
11032f86ba45SStephan Aßmus 
11042f86ba45SStephan Aßmus 	// thumb shadow
11052f86ba45SStephan Aßmus 	view->SetDrawingMode(B_OP_ALPHA);
11062f86ba45SStephan Aßmus 	view->SetHighColor(shadowColor);
11072f86ba45SStephan Aßmus 	originalRect.left++;
11082f86ba45SStephan Aßmus 	originalRect.top++;
11092f86ba45SStephan Aßmus 	view->StrokeLine(originalRect.LeftBottom(), originalRect.RightBottom());
11102f86ba45SStephan Aßmus 	originalRect.bottom--;
11112f86ba45SStephan Aßmus 	view->StrokeLine(originalRect.RightTop(), originalRect.RightBottom());
11122f86ba45SStephan Aßmus 
11132f86ba45SStephan Aßmus 	// thumb edge
11142f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
11152f86ba45SStephan Aßmus 		rect.InsetBy(0, floorf(rect.Height() / 4));
11162f86ba45SStephan Aßmus 		rect.left = floorf((rect.left + rect.right) / 2);
11172f86ba45SStephan Aßmus 		rect.right = rect.left + 1;
11182f86ba45SStephan Aßmus 		shadowColor = tint_color(base, B_DARKEN_2_TINT);
11192f86ba45SStephan Aßmus 		shadowColor.alpha = 128;
11202f86ba45SStephan Aßmus 		view->SetHighColor(shadowColor);
11212f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
11222f86ba45SStephan Aßmus 		rgb_color lightColor = tint_color(base, B_LIGHTEN_2_TINT);
11232f86ba45SStephan Aßmus 		lightColor.alpha = 128;
11242f86ba45SStephan Aßmus 		view->SetHighColor(lightColor);
11252f86ba45SStephan Aßmus 		view->StrokeLine(rect.RightTop(), rect.RightBottom());
11262f86ba45SStephan Aßmus 	} else {
11272f86ba45SStephan Aßmus 		rect.InsetBy(floorf(rect.Width() / 4), 0);
11282f86ba45SStephan Aßmus 		rect.top = floorf((rect.top + rect.bottom) / 2);
11292f86ba45SStephan Aßmus 		rect.bottom = rect.top + 1;
11302f86ba45SStephan Aßmus 		shadowColor = tint_color(base, B_DARKEN_2_TINT);
11312f86ba45SStephan Aßmus 		shadowColor.alpha = 128;
11322f86ba45SStephan Aßmus 		view->SetHighColor(shadowColor);
11332f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.RightTop());
11342f86ba45SStephan Aßmus 		rgb_color lightColor = tint_color(base, B_LIGHTEN_2_TINT);
11352f86ba45SStephan Aßmus 		lightColor.alpha = 128;
11362f86ba45SStephan Aßmus 		view->SetHighColor(lightColor);
11372f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftBottom(), rect.RightBottom());
11382f86ba45SStephan Aßmus 	}
11392f86ba45SStephan Aßmus 
11402f86ba45SStephan Aßmus 	view->SetDrawingMode(B_OP_COPY);
11412f86ba45SStephan Aßmus }
11422f86ba45SStephan Aßmus 
11432f86ba45SStephan Aßmus 
11442f86ba45SStephan Aßmus void
11452f86ba45SStephan Aßmus BControlLook::DrawSliderTriangle(BView* view, BRect& rect,
11462f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
11472f86ba45SStephan Aßmus 	enum orientation orientation)
11482f86ba45SStephan Aßmus {
11498ee9217eSStephan Aßmus 	DrawSliderTriangle(view, rect, updateRect, base, base, flags, orientation);
11508ee9217eSStephan Aßmus }
11518ee9217eSStephan Aßmus 
11528ee9217eSStephan Aßmus 
11538ee9217eSStephan Aßmus void
11548ee9217eSStephan Aßmus BControlLook::DrawSliderTriangle(BView* view, BRect& rect,
11558ee9217eSStephan Aßmus 	const BRect& updateRect, const rgb_color& base, const rgb_color& fill,
11568ee9217eSStephan Aßmus 	uint32 flags, enum orientation orientation)
11578ee9217eSStephan Aßmus {
11582f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
11592f86ba45SStephan Aßmus 		return;
11602f86ba45SStephan Aßmus 
11612f86ba45SStephan Aßmus 	// figure out frame color
11622f86ba45SStephan Aßmus 	rgb_color frameLightColor;
11632f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
11642f86ba45SStephan Aßmus 	rgb_color shadowColor = (rgb_color){ 0, 0, 0, 60 };
11652f86ba45SStephan Aßmus 
11662f86ba45SStephan Aßmus 	float topTint = 0.49;
11672f86ba45SStephan Aßmus 	float middleTint1 = 0.62;
11682f86ba45SStephan Aßmus 	float middleTint2 = 0.76;
11692f86ba45SStephan Aßmus 	float bottomTint = 0.90;
11702f86ba45SStephan Aßmus 
11712f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
11722f86ba45SStephan Aßmus 		topTint = (topTint + B_NO_TINT) / 2;
11732f86ba45SStephan Aßmus 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
11742f86ba45SStephan Aßmus 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
11752f86ba45SStephan Aßmus 		bottomTint = (bottomTint + B_NO_TINT) / 2;
11762f86ba45SStephan Aßmus 	} else if (flags & B_HOVER) {
11772f86ba45SStephan Aßmus 		static const float kHoverTintFactor = 0.85;
11782f86ba45SStephan Aßmus 		topTint *= kHoverTintFactor;
11792f86ba45SStephan Aßmus 		middleTint1 *= kHoverTintFactor;
11802f86ba45SStephan Aßmus 		middleTint2 *= kHoverTintFactor;
11812f86ba45SStephan Aßmus 		bottomTint *= kHoverTintFactor;
11822f86ba45SStephan Aßmus 	}
11832f86ba45SStephan Aßmus 
11842f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
11852f86ba45SStephan Aßmus 		// focused
11862f86ba45SStephan Aßmus 		frameLightColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
11872f86ba45SStephan Aßmus 		frameShadowColor = frameLightColor;
11882f86ba45SStephan Aßmus 	} else {
11892f86ba45SStephan Aßmus 		// figure out the tints to be used
11902f86ba45SStephan Aßmus 		float frameLightTint;
11912f86ba45SStephan Aßmus 		float frameShadowTint;
11922f86ba45SStephan Aßmus 
11932f86ba45SStephan Aßmus 		if (flags & B_DISABLED) {
11942f86ba45SStephan Aßmus 			frameLightTint = 1.30;
11952f86ba45SStephan Aßmus 			frameShadowTint = 1.35;
11962f86ba45SStephan Aßmus 			shadowColor.alpha = 30;
11972f86ba45SStephan Aßmus 		} else {
11982f86ba45SStephan Aßmus 			frameLightTint = 1.6;
11992f86ba45SStephan Aßmus 			frameShadowTint = 1.65;
12002f86ba45SStephan Aßmus 		}
12012f86ba45SStephan Aßmus 
12022f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, frameLightTint);
12032f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, frameShadowTint);
12042f86ba45SStephan Aßmus 	}
12052f86ba45SStephan Aßmus 
12068ee9217eSStephan Aßmus 	// make room for the shadow
12078ee9217eSStephan Aßmus 	rect.right--;
12088ee9217eSStephan Aßmus 	rect.bottom--;
12092f86ba45SStephan Aßmus 
12102f86ba45SStephan Aßmus 	uint32 viewFlags = view->Flags();
12112f86ba45SStephan Aßmus 	view->SetFlags(viewFlags | B_SUBPIXEL_PRECISE);
12122f86ba45SStephan Aßmus 	view->SetLineMode(B_ROUND_CAP, B_ROUND_JOIN);
12132f86ba45SStephan Aßmus 
12148ee9217eSStephan Aßmus 	float center = (rect.left + rect.right) / 2;
12152f86ba45SStephan Aßmus 
12168ee9217eSStephan Aßmus 	BShape shape;
12178ee9217eSStephan Aßmus 	shape.MoveTo(BPoint(rect.left + 0.5, rect.bottom + 0.5));
12188ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.right + 0.5, rect.bottom + 0.5));
12198ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.right + 0.5, rect.bottom - 1 + 0.5));
12208ee9217eSStephan Aßmus 	shape.LineTo(BPoint(center + 0.5, rect.top + 0.5));
12218ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.left + 0.5, rect.bottom - 1 + 0.5));
12228ee9217eSStephan Aßmus 	shape.Close();
12238ee9217eSStephan Aßmus 
12248ee9217eSStephan Aßmus 	view->MovePenTo(BPoint(1, 1));
12258ee9217eSStephan Aßmus 
12268ee9217eSStephan Aßmus 	view->SetDrawingMode(B_OP_ALPHA);
12278ee9217eSStephan Aßmus 	view->SetHighColor(shadowColor);
12288ee9217eSStephan Aßmus 	view->StrokeShape(&shape);
12298ee9217eSStephan Aßmus 
12308ee9217eSStephan Aßmus 	view->MovePenTo(B_ORIGIN);
12318ee9217eSStephan Aßmus 
12328ee9217eSStephan Aßmus 	view->SetDrawingMode(B_OP_COPY);
12332f86ba45SStephan Aßmus 	view->SetHighColor(frameLightColor);
12348ee9217eSStephan Aßmus 	view->StrokeShape(&shape);
12352f86ba45SStephan Aßmus 
12362f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
12378ee9217eSStephan Aßmus 	shape.Clear();
12388ee9217eSStephan Aßmus 	shape.MoveTo(BPoint(rect.left, rect.bottom + 1));
12398ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.right + 1, rect.bottom + 1));
12408ee9217eSStephan Aßmus 	shape.LineTo(BPoint(center + 0.5, rect.top));
12418ee9217eSStephan Aßmus 	shape.Close();
12422f86ba45SStephan Aßmus 
12432f86ba45SStephan Aßmus 	BGradientLinear gradient;
12442f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
12458ee9217eSStephan Aßmus 		_MakeGradient(gradient, rect, fill, topTint, bottomTint);
12462f86ba45SStephan Aßmus 	} else {
12478ee9217eSStephan Aßmus 		_MakeGlossyGradient(gradient, rect, fill, topTint, middleTint1,
12482f86ba45SStephan Aßmus 			middleTint2, bottomTint);
12492f86ba45SStephan Aßmus 	}
12502f86ba45SStephan Aßmus 
12518ee9217eSStephan Aßmus 	view->FillShape(&shape, gradient);
12522f86ba45SStephan Aßmus 
12532f86ba45SStephan Aßmus 	view->SetFlags(viewFlags);
12542f86ba45SStephan Aßmus }
12552f86ba45SStephan Aßmus 
12562f86ba45SStephan Aßmus 
12572f86ba45SStephan Aßmus void
12582f86ba45SStephan Aßmus BControlLook::DrawSliderHashMarks(BView* view, BRect& rect,
12592f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, int32 count,
12602f86ba45SStephan Aßmus 	hash_mark_location location, uint32 flags, enum orientation orientation)
12612f86ba45SStephan Aßmus {
12622f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
12632f86ba45SStephan Aßmus 		return;
12642f86ba45SStephan Aßmus 
12652f86ba45SStephan Aßmus 	rgb_color lightColor;
12662f86ba45SStephan Aßmus 	rgb_color darkColor;
12672f86ba45SStephan Aßmus 
12682f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
12692f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.9);
12702f86ba45SStephan Aßmus 		darkColor = tint_color(base, 1.07);
12712f86ba45SStephan Aßmus 	} else {
12722f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.8);
12732f86ba45SStephan Aßmus 		darkColor = tint_color(base, 1.14);
12742f86ba45SStephan Aßmus 	}
12752f86ba45SStephan Aßmus 
12762f86ba45SStephan Aßmus 	int32 hashMarkCount = max_c(count, 2);
12772f86ba45SStephan Aßmus 		// draw at least two hashmarks at min/max if
12782f86ba45SStephan Aßmus 		// fHashMarks != B_HASH_MARKS_NONE
12792f86ba45SStephan Aßmus 	float factor;
12802f86ba45SStephan Aßmus 	float startPos;
12812f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
12822f86ba45SStephan Aßmus 		factor = (rect.Width() - 2) / (hashMarkCount - 1);
12832f86ba45SStephan Aßmus 		startPos = rect.left + 1;
12842f86ba45SStephan Aßmus 	} else {
12852f86ba45SStephan Aßmus 		factor = (rect.Height() - 2) / (hashMarkCount - 1);
12862f86ba45SStephan Aßmus 		startPos = rect.top + 1;
12872f86ba45SStephan Aßmus 	}
12882f86ba45SStephan Aßmus 
12892f86ba45SStephan Aßmus 	if (location & B_HASH_MARKS_TOP) {
12902f86ba45SStephan Aßmus 		view->BeginLineArray(hashMarkCount * 2);
12912f86ba45SStephan Aßmus 
12922f86ba45SStephan Aßmus 		if (orientation == B_HORIZONTAL) {
12932f86ba45SStephan Aßmus 			float pos = startPos;
12942f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
12952f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos, rect.top),
12962f86ba45SStephan Aßmus 							  BPoint(pos, rect.top + 4), darkColor);
12972f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos + 1, rect.top),
12982f86ba45SStephan Aßmus 							  BPoint(pos + 1, rect.top + 4), lightColor);
12992f86ba45SStephan Aßmus 
13002f86ba45SStephan Aßmus 				pos += factor;
13012f86ba45SStephan Aßmus 			}
13022f86ba45SStephan Aßmus 		} else {
13032f86ba45SStephan Aßmus 			float pos = startPos;
13042f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
13052f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.left, pos),
13062f86ba45SStephan Aßmus 							  BPoint(rect.left + 4, pos), darkColor);
13072f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.left, pos + 1),
13082f86ba45SStephan Aßmus 							  BPoint(rect.left + 4, pos + 1), lightColor);
13092f86ba45SStephan Aßmus 
13102f86ba45SStephan Aßmus 				pos += factor;
13112f86ba45SStephan Aßmus 			}
13122f86ba45SStephan Aßmus 		}
13132f86ba45SStephan Aßmus 
13142f86ba45SStephan Aßmus 		view->EndLineArray();
13152f86ba45SStephan Aßmus 	}
13162f86ba45SStephan Aßmus 
13172f86ba45SStephan Aßmus 	if (location & B_HASH_MARKS_BOTTOM) {
13182f86ba45SStephan Aßmus 
13192f86ba45SStephan Aßmus 		view->BeginLineArray(hashMarkCount * 2);
13202f86ba45SStephan Aßmus 
13212f86ba45SStephan Aßmus 		if (orientation == B_HORIZONTAL) {
13222f86ba45SStephan Aßmus 			float pos = startPos;
13232f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
13242f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos, rect.bottom - 4),
13252f86ba45SStephan Aßmus 							  BPoint(pos, rect.bottom), darkColor);
13262f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos + 1, rect.bottom - 4),
13272f86ba45SStephan Aßmus 							  BPoint(pos + 1, rect.bottom), lightColor);
13282f86ba45SStephan Aßmus 
13292f86ba45SStephan Aßmus 				pos += factor;
13302f86ba45SStephan Aßmus 			}
13312f86ba45SStephan Aßmus 		} else {
13322f86ba45SStephan Aßmus 			float pos = startPos;
13332f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
13342f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.right - 4, pos),
13352f86ba45SStephan Aßmus 							  BPoint(rect.right, pos), darkColor);
13362f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.right - 4, pos + 1),
13372f86ba45SStephan Aßmus 							  BPoint(rect.right, pos + 1), lightColor);
13382f86ba45SStephan Aßmus 
13392f86ba45SStephan Aßmus 				pos += factor;
13402f86ba45SStephan Aßmus 			}
13412f86ba45SStephan Aßmus 		}
13422f86ba45SStephan Aßmus 
13432f86ba45SStephan Aßmus 		view->EndLineArray();
13442f86ba45SStephan Aßmus 	}
13452f86ba45SStephan Aßmus }
13462f86ba45SStephan Aßmus 
13472f86ba45SStephan Aßmus 
13482f86ba45SStephan Aßmus void
13492f86ba45SStephan Aßmus BControlLook::DrawActiveTab(BView* view, BRect& rect, const BRect& updateRect,
13502f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
13512f86ba45SStephan Aßmus {
13522f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
13532f86ba45SStephan Aßmus 		return;
13542f86ba45SStephan Aßmus 
13552f86ba45SStephan Aßmus 	rgb_color edgeShadowColor;
13562f86ba45SStephan Aßmus 	rgb_color edgeLightColor;
13572f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
13582f86ba45SStephan Aßmus 	rgb_color frameLightColor;
13592f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
13602f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
13612f86ba45SStephan Aßmus 	BGradientLinear fillGradient;
13622f86ba45SStephan Aßmus 	fillGradient.SetStart(rect.LeftTop() + BPoint(3, 3));
13632f86ba45SStephan Aßmus 	fillGradient.SetEnd(rect.LeftBottom() + BPoint(3, -3));
13642f86ba45SStephan Aßmus 
13652f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
13662f86ba45SStephan Aßmus 		edgeShadowColor = base;
13672f86ba45SStephan Aßmus 		edgeLightColor = base;
13682f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
13692f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.25);
13702f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(base, 1.07);
13712f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.8);
13722f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.85), 0);
13732f86ba45SStephan Aßmus 		fillGradient.AddColor(base, 255);
13742f86ba45SStephan Aßmus 	} else {
13752f86ba45SStephan Aßmus 		edgeShadowColor = tint_color(base, 1.03);
13762f86ba45SStephan Aßmus 		edgeLightColor = tint_color(base, 0.80);
13772f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
13782f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.30);
13792f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(base, 1.07);
13802f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.6);
13812f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.75), 0);
13822f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.03), 255);
13832f86ba45SStephan Aßmus 	}
138412ea5a2cSStephan Aßmus 
13852f86ba45SStephan Aßmus 	static const float kRoundCornerRadius = 4;
13862f86ba45SStephan Aßmus 
13872f86ba45SStephan Aßmus 	// left/top corner
13882f86ba45SStephan Aßmus 	BRect cornerRect(rect);
13892f86ba45SStephan Aßmus 	cornerRect.right = cornerRect.left + kRoundCornerRadius;
13902f86ba45SStephan Aßmus 	cornerRect.bottom = cornerRect.top + kRoundCornerRadius;
13912f86ba45SStephan Aßmus 
13922f86ba45SStephan Aßmus 	BRegion clipping(rect);
13932f86ba45SStephan Aßmus 	clipping.Exclude(cornerRect);
13942f86ba45SStephan Aßmus 
13952f86ba45SStephan Aßmus 	_DrawRoundCornerLeftTop(view, cornerRect, updateRect, base, edgeShadowColor,
13962f86ba45SStephan Aßmus 		frameLightColor, bevelLightColor, fillGradient);
13972f86ba45SStephan Aßmus 
13982f86ba45SStephan Aßmus 	// left/top corner
13992f86ba45SStephan Aßmus 	cornerRect.right = rect.right;
14002f86ba45SStephan Aßmus 	cornerRect.left = cornerRect.right - kRoundCornerRadius;
14012f86ba45SStephan Aßmus 
14022f86ba45SStephan Aßmus 	clipping.Exclude(cornerRect);
14032f86ba45SStephan Aßmus 
14042f86ba45SStephan Aßmus 	_DrawRoundCornerRightTop(view, cornerRect, updateRect, base, edgeShadowColor,
14052f86ba45SStephan Aßmus 		edgeLightColor, frameLightColor, frameShadowColor, bevelLightColor,
14062f86ba45SStephan Aßmus 		bevelShadowColor, fillGradient);
14072f86ba45SStephan Aßmus 
14082f86ba45SStephan Aßmus 	// rest of frame and fill
14092f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&clipping);
14102f86ba45SStephan Aßmus 
14112f86ba45SStephan Aßmus 	_DrawFrame(view, rect, edgeShadowColor, edgeShadowColor, edgeLightColor,
14122f86ba45SStephan Aßmus 		edgeLightColor,
14132f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
14142f86ba45SStephan Aßmus 	if ((borders & B_LEFT_BORDER) == 0)
14152f86ba45SStephan Aßmus 		rect.left++;
14162f86ba45SStephan Aßmus 	if ((borders & B_RIGHT_BORDER) == 0)
14172f86ba45SStephan Aßmus 		rect.right--;
14182f86ba45SStephan Aßmus 
14192f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor, frameShadowColor,
14202f86ba45SStephan Aßmus 		frameShadowColor, B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER);
14212f86ba45SStephan Aßmus 
14222f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelLightColor, bevelLightColor, bevelShadowColor,
14232f86ba45SStephan Aßmus 		bevelShadowColor);
14242f86ba45SStephan Aßmus 
14252f86ba45SStephan Aßmus 	view->FillRect(rect, fillGradient);
14262f86ba45SStephan Aßmus 
14272f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
14282f86ba45SStephan Aßmus }
14292f86ba45SStephan Aßmus 
14302f86ba45SStephan Aßmus 
14312f86ba45SStephan Aßmus void
143283aff015SPhilippe Houdoin BControlLook::DrawInactiveTab(BView* view, BRect& rect, const BRect& updateRect,
14332f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
14342f86ba45SStephan Aßmus {
14352f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
14362f86ba45SStephan Aßmus 		return;
14372f86ba45SStephan Aßmus 
14382f86ba45SStephan Aßmus 	rgb_color edgeShadowColor;
14392f86ba45SStephan Aßmus 	rgb_color edgeLightColor;
14402f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
14412f86ba45SStephan Aßmus 	rgb_color frameLightColor;
14422f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
14432f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
14442f86ba45SStephan Aßmus 	BGradientLinear fillGradient;
14452f86ba45SStephan Aßmus 	fillGradient.SetStart(rect.LeftTop() + BPoint(3, 3));
14462f86ba45SStephan Aßmus 	fillGradient.SetEnd(rect.LeftBottom() + BPoint(3, -3));
14472f86ba45SStephan Aßmus 
14482f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
14492f86ba45SStephan Aßmus 		edgeShadowColor = base;
14502f86ba45SStephan Aßmus 		edgeLightColor = base;
14512f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
14522f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.25);
14532f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(base, 1.07);
14542f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.8);
14552f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.85), 0);
14562f86ba45SStephan Aßmus 		fillGradient.AddColor(base, 255);
14572f86ba45SStephan Aßmus 	} else {
14582f86ba45SStephan Aßmus 		edgeShadowColor = tint_color(base, 1.03);
14592f86ba45SStephan Aßmus 		edgeLightColor = tint_color(base, 0.80);
14602f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
14612f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.30);
146212ea5a2cSStephan Aßmus 		bevelShadowColor = tint_color(base, 1.17);
14632f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 1.10);
14642f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.12), 0);
14652f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.08), 255);
14662f86ba45SStephan Aßmus 	}
14672f86ba45SStephan Aßmus 
14682f86ba45SStephan Aßmus 	// active tabs stand out at the top, but this is an inactive tab
14692f86ba45SStephan Aßmus 	view->SetHighColor(base);
14702f86ba45SStephan Aßmus 	view->FillRect(BRect(rect.left, rect.top, rect.right, rect.top + 4));
14712f86ba45SStephan Aßmus 	rect.top += 4;
14722f86ba45SStephan Aßmus 
14732f86ba45SStephan Aßmus 	// frame and fill
14742f86ba45SStephan Aßmus 	_DrawFrame(view, rect, edgeShadowColor, edgeShadowColor, edgeLightColor,
14752f86ba45SStephan Aßmus 		edgeLightColor,
14762f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
14772f86ba45SStephan Aßmus 
14782f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor, frameShadowColor,
14792f86ba45SStephan Aßmus 		frameShadowColor,
14802f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
14812f86ba45SStephan Aßmus 
1482b3601d82SStephan Aßmus 	if (rect.IsValid()) {
1483b3601d82SStephan Aßmus 		_DrawFrame(view, rect, bevelShadowColor, bevelShadowColor,
1484b3601d82SStephan Aßmus 			bevelLightColor, bevelLightColor, B_LEFT_BORDER & ~borders);
1485b3601d82SStephan Aßmus 	} else {
1486b3601d82SStephan Aßmus 		if ((B_LEFT_BORDER & ~borders) != 0)
1487b3601d82SStephan Aßmus 			rect.left++;
1488b3601d82SStephan Aßmus 	}
14892f86ba45SStephan Aßmus 
14902f86ba45SStephan Aßmus 	view->FillRect(rect, fillGradient);
14912f86ba45SStephan Aßmus }
14922f86ba45SStephan Aßmus 
14932f86ba45SStephan Aßmus 
14941f9fd6d8SStephan Aßmus void
14951f9fd6d8SStephan Aßmus BControlLook::DrawSplitter(BView* view, BRect& rect, const BRect& updateRect,
14961f9fd6d8SStephan Aßmus 	const rgb_color& base, enum orientation orientation, uint32 flags,
14971f9fd6d8SStephan Aßmus 	uint32 borders)
14981f9fd6d8SStephan Aßmus {
14991f9fd6d8SStephan Aßmus 	rgb_color background;
15001f9fd6d8SStephan Aßmus 	if ((flags & (B_CLICKED | B_ACTIVATED)) != 0)
15011f9fd6d8SStephan Aßmus 		background = tint_color(base, B_DARKEN_1_TINT);
15021f9fd6d8SStephan Aßmus 	else
15031f9fd6d8SStephan Aßmus 		background = base;
15041f9fd6d8SStephan Aßmus 
15051f9fd6d8SStephan Aßmus 	rgb_color light = tint_color(background, 0.6);
15061f9fd6d8SStephan Aßmus 	rgb_color shadow = tint_color(background, 1.21);
15071f9fd6d8SStephan Aßmus 
15081f9fd6d8SStephan Aßmus 	// frame
15091f9fd6d8SStephan Aßmus 	if (borders != 0 && rect.Width() > 3 && rect.Height() > 3)
15101f9fd6d8SStephan Aßmus 		DrawRaisedBorder(view, rect, updateRect, background, flags, borders);
15111f9fd6d8SStephan Aßmus 
15121f9fd6d8SStephan Aßmus 	// dots and rest of background
15131f9fd6d8SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
15141f9fd6d8SStephan Aßmus 		if (rect.Width() > 2) {
15151f9fd6d8SStephan Aßmus 			// background on left/right
15161f9fd6d8SStephan Aßmus 			BRegion region(rect);
15171f9fd6d8SStephan Aßmus 			rect.left = floorf((rect.left + rect.right) / 2.0 - 0.5);
15181f9fd6d8SStephan Aßmus 			rect.right = rect.left + 1;
15191f9fd6d8SStephan Aßmus 			region.Exclude(rect);
15201f9fd6d8SStephan Aßmus 			view->SetHighColor(background);
15211f9fd6d8SStephan Aßmus 			view->FillRegion(&region);
15221f9fd6d8SStephan Aßmus 		}
15231f9fd6d8SStephan Aßmus 
15241f9fd6d8SStephan Aßmus 		BPoint dot = rect.LeftTop();
15251f9fd6d8SStephan Aßmus 		BPoint stop = rect.LeftBottom();
15261f9fd6d8SStephan Aßmus 		int32 num = 1;
15271f9fd6d8SStephan Aßmus 		while (dot.y <= stop.y) {
15281f9fd6d8SStephan Aßmus 			rgb_color col1;
15291f9fd6d8SStephan Aßmus 			rgb_color col2;
15301f9fd6d8SStephan Aßmus 			switch (num) {
15311f9fd6d8SStephan Aßmus 				case 1:
15321f9fd6d8SStephan Aßmus 					col1 = background;
15331f9fd6d8SStephan Aßmus 					col2 = background;
15341f9fd6d8SStephan Aßmus 					break;
15351f9fd6d8SStephan Aßmus 				case 2:
15361f9fd6d8SStephan Aßmus 					col1 = shadow;
15371f9fd6d8SStephan Aßmus 					col2 = background;
15381f9fd6d8SStephan Aßmus 					break;
15391f9fd6d8SStephan Aßmus 				case 3:
1540a5339f65SStephan Aßmus 				default:
15411f9fd6d8SStephan Aßmus 					col1 = background;
15421f9fd6d8SStephan Aßmus 					col2 = light;
15431f9fd6d8SStephan Aßmus 					num = 0;
15441f9fd6d8SStephan Aßmus 					break;
15451f9fd6d8SStephan Aßmus 			}
15461f9fd6d8SStephan Aßmus 			view->SetHighColor(col1);
15471f9fd6d8SStephan Aßmus 			view->StrokeLine(dot, dot, B_SOLID_HIGH);
15481f9fd6d8SStephan Aßmus 			view->SetHighColor(col2);
15491f9fd6d8SStephan Aßmus 			dot.x++;
15501f9fd6d8SStephan Aßmus 			view->StrokeLine(dot, dot, B_SOLID_HIGH);
15511f9fd6d8SStephan Aßmus 			dot.x -= 1.0;
15521f9fd6d8SStephan Aßmus 			// next pixel
15531f9fd6d8SStephan Aßmus 			num++;
15541f9fd6d8SStephan Aßmus 			dot.y++;
15551f9fd6d8SStephan Aßmus 		}
15561f9fd6d8SStephan Aßmus 	} else {
15571f9fd6d8SStephan Aßmus 		if (rect.Height() > 2) {
15581f9fd6d8SStephan Aßmus 			// background on left/right
15591f9fd6d8SStephan Aßmus 			BRegion region(rect);
15601f9fd6d8SStephan Aßmus 			rect.top = floorf((rect.top + rect.bottom) / 2.0 - 0.5);
15611f9fd6d8SStephan Aßmus 			rect.bottom = rect.top + 1;
15621f9fd6d8SStephan Aßmus 			region.Exclude(rect);
15631f9fd6d8SStephan Aßmus 			view->SetHighColor(background);
15641f9fd6d8SStephan Aßmus 			view->FillRegion(&region);
15651f9fd6d8SStephan Aßmus 		}
15661f9fd6d8SStephan Aßmus 
15671f9fd6d8SStephan Aßmus 		BPoint dot = rect.LeftTop();
15681f9fd6d8SStephan Aßmus 		BPoint stop = rect.RightTop();
15691f9fd6d8SStephan Aßmus 		int32 num = 1;
15701f9fd6d8SStephan Aßmus 		while (dot.x <= stop.x) {
15711f9fd6d8SStephan Aßmus 			rgb_color col1;
15721f9fd6d8SStephan Aßmus 			rgb_color col2;
15731f9fd6d8SStephan Aßmus 			switch (num) {
15741f9fd6d8SStephan Aßmus 				case 1:
15751f9fd6d8SStephan Aßmus 					col1 = background;
15761f9fd6d8SStephan Aßmus 					col2 = background;
15771f9fd6d8SStephan Aßmus 					break;
15781f9fd6d8SStephan Aßmus 				case 2:
15791f9fd6d8SStephan Aßmus 					col1 = shadow;
15801f9fd6d8SStephan Aßmus 					col2 = background;
15811f9fd6d8SStephan Aßmus 					break;
15821f9fd6d8SStephan Aßmus 				case 3:
15839f981a88SFrançois Revol 				default:
15841f9fd6d8SStephan Aßmus 					col1 = background;
15851f9fd6d8SStephan Aßmus 					col2 = light;
15861f9fd6d8SStephan Aßmus 					num = 0;
15871f9fd6d8SStephan Aßmus 					break;
15881f9fd6d8SStephan Aßmus 			}
15891f9fd6d8SStephan Aßmus 			view->SetHighColor(col1);
15901f9fd6d8SStephan Aßmus 			view->StrokeLine(dot, dot, B_SOLID_HIGH);
15911f9fd6d8SStephan Aßmus 			view->SetHighColor(col2);
15921f9fd6d8SStephan Aßmus 			dot.y++;
15931f9fd6d8SStephan Aßmus 			view->StrokeLine(dot, dot, B_SOLID_HIGH);
15941f9fd6d8SStephan Aßmus 			dot.y -= 1.0;
15951f9fd6d8SStephan Aßmus 			// next pixel
15961f9fd6d8SStephan Aßmus 			num++;
15971f9fd6d8SStephan Aßmus 			dot.x++;
15981f9fd6d8SStephan Aßmus 		}
15991f9fd6d8SStephan Aßmus 	}
16001f9fd6d8SStephan Aßmus }
16011f9fd6d8SStephan Aßmus 
16021f9fd6d8SStephan Aßmus 
16032f86ba45SStephan Aßmus // #pragma mark -
16042f86ba45SStephan Aßmus 
16052f86ba45SStephan Aßmus 
16062f86ba45SStephan Aßmus void
16072f86ba45SStephan Aßmus BControlLook::DrawBorder(BView* view, BRect& rect, const BRect& updateRect,
16082f86ba45SStephan Aßmus 	const rgb_color& base, border_style border, uint32 flags, uint32 borders)
16092f86ba45SStephan Aßmus {
16102f86ba45SStephan Aßmus 	if (border == B_NO_BORDER)
16112f86ba45SStephan Aßmus 		return;
16122f86ba45SStephan Aßmus 
16132f86ba45SStephan Aßmus 	rgb_color scrollbarFrameColor = tint_color(base, B_DARKEN_2_TINT);
16142f86ba45SStephan Aßmus 	if (flags & B_FOCUSED)
16152f86ba45SStephan Aßmus 		scrollbarFrameColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
16162f86ba45SStephan Aßmus 
16172f86ba45SStephan Aßmus 	if (border == B_FANCY_BORDER)
16184f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 1.0, 1.0, flags, borders);
16192f86ba45SStephan Aßmus 
16202f86ba45SStephan Aßmus 	_DrawFrame(view, rect, scrollbarFrameColor, scrollbarFrameColor,
16212f86ba45SStephan Aßmus 		scrollbarFrameColor, scrollbarFrameColor, borders);
16222f86ba45SStephan Aßmus }
16232f86ba45SStephan Aßmus 
16242f86ba45SStephan Aßmus 
16252f86ba45SStephan Aßmus void
16262f86ba45SStephan Aßmus BControlLook::DrawRaisedBorder(BView* view, BRect& rect,
16272f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
16282f86ba45SStephan Aßmus 	uint32 borders)
16292f86ba45SStephan Aßmus {
16302f86ba45SStephan Aßmus 	rgb_color lightColor;
16312f86ba45SStephan Aßmus 	rgb_color shadowColor;
16322f86ba45SStephan Aßmus 
16332f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
16342f86ba45SStephan Aßmus 		lightColor = base;
16352f86ba45SStephan Aßmus 		shadowColor = base;
16362f86ba45SStephan Aßmus 	} else {
16372f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.85);
16382f86ba45SStephan Aßmus 		shadowColor = tint_color(base, 1.07);
16392f86ba45SStephan Aßmus 	}
16402f86ba45SStephan Aßmus 
16412f86ba45SStephan Aßmus 	_DrawFrame(view, rect, lightColor, lightColor, shadowColor, shadowColor,
16422f86ba45SStephan Aßmus 		borders);
16432f86ba45SStephan Aßmus }
16442f86ba45SStephan Aßmus 
16452f86ba45SStephan Aßmus 
16462f86ba45SStephan Aßmus void
16472f86ba45SStephan Aßmus BControlLook::DrawTextControlBorder(BView* view, BRect& rect,
16482f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
16492f86ba45SStephan Aßmus 	uint32 borders)
16502f86ba45SStephan Aßmus {
16512f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
16522f86ba45SStephan Aßmus 		return;
16532f86ba45SStephan Aßmus 
16542f86ba45SStephan Aßmus 	rgb_color dark1BorderColor;
16552f86ba45SStephan Aßmus 	rgb_color dark2BorderColor;
16562f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
16572f86ba45SStephan Aßmus 
16582f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
16594f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.0, 1.0, flags, borders);
16602f86ba45SStephan Aßmus 
16614f579098SStephan Aßmus 		if (flags & B_BLEND_FRAME)
16624f579098SStephan Aßmus 			dark1BorderColor = (rgb_color){ 0, 0, 0, 40 };
16634f579098SStephan Aßmus 		else
16642f86ba45SStephan Aßmus 			dark1BorderColor = tint_color(base, 1.15);
16654f579098SStephan Aßmus 		dark2BorderColor = dark1BorderColor;
16662f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
16672f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.50);
16682f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.49);
16692f86ba45SStephan Aßmus 
16704f579098SStephan Aßmus 		// BCheckBox uses this to indicate the clicked state...
16712f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
16722f86ba45SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
16732f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor);
16742f86ba45SStephan Aßmus 
16752f86ba45SStephan Aßmus 		dark2BorderColor = dark1BorderColor;
16762f86ba45SStephan Aßmus 	} else {
16774f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.6, 1.0, flags, borders);
16782f86ba45SStephan Aßmus 
16794f579098SStephan Aßmus 		if (flags & B_BLEND_FRAME) {
16804f579098SStephan Aßmus 			dark1BorderColor = (rgb_color){ 0, 0, 0, 102 };
16814f579098SStephan Aßmus 			dark2BorderColor = (rgb_color){ 0, 0, 0, 97 };
16824f579098SStephan Aßmus 		} else {
16832f86ba45SStephan Aßmus 			dark1BorderColor = tint_color(base, 1.40);
16842f86ba45SStephan Aßmus 			dark2BorderColor = tint_color(base, 1.38);
16852f86ba45SStephan Aßmus 		}
16864f579098SStephan Aßmus 	}
16872f86ba45SStephan Aßmus 
16882f86ba45SStephan Aßmus 	if ((flags & B_DISABLED) == 0 && (flags & B_FOCUSED)) {
16892f86ba45SStephan Aßmus 		dark1BorderColor = navigationColor;
16902f86ba45SStephan Aßmus 		dark2BorderColor = navigationColor;
16912f86ba45SStephan Aßmus 	}
16922f86ba45SStephan Aßmus 
16934f579098SStephan Aßmus 	if (flags & B_BLEND_FRAME) {
16944f579098SStephan Aßmus 		drawing_mode oldMode = view->DrawingMode();
16954f579098SStephan Aßmus 		view->SetDrawingMode(B_OP_ALPHA);
16964f579098SStephan Aßmus 
16972f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
16982f86ba45SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
16992f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor, borders);
17004f579098SStephan Aßmus 
17014f579098SStephan Aßmus 		view->SetDrawingMode(oldMode);
17024f579098SStephan Aßmus 	} else {
17034f579098SStephan Aßmus 		_DrawFrame(view, rect,
17044f579098SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
17054f579098SStephan Aßmus 			dark2BorderColor, dark2BorderColor, borders);
17064f579098SStephan Aßmus 	}
17072f86ba45SStephan Aßmus }
17082f86ba45SStephan Aßmus 
17092f86ba45SStephan Aßmus 
17102f86ba45SStephan Aßmus void
17112f86ba45SStephan Aßmus BControlLook::DrawGroupFrame(BView* view, BRect& rect, const BRect& updateRect,
17122f86ba45SStephan Aßmus 	const rgb_color& base, uint32 borders)
17132f86ba45SStephan Aßmus {
17142f86ba45SStephan Aßmus 	rgb_color frameColor = tint_color(base, 1.30);
17152f86ba45SStephan Aßmus 	rgb_color bevelLight = tint_color(base, 0.8);
17162f86ba45SStephan Aßmus 	rgb_color bevelShadow = tint_color(base, 1.03);
17172f86ba45SStephan Aßmus 
17182f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelShadow, bevelShadow, bevelLight, bevelLight,
17192f86ba45SStephan Aßmus 		borders);
17202f86ba45SStephan Aßmus 
17212f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameColor, frameColor, frameColor, frameColor,
17222f86ba45SStephan Aßmus 		borders);
17232f86ba45SStephan Aßmus 
17242f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelLight, bevelLight, bevelShadow, bevelShadow,
17252f86ba45SStephan Aßmus 		borders);
17262f86ba45SStephan Aßmus }
17272f86ba45SStephan Aßmus 
17282f86ba45SStephan Aßmus 
17292f86ba45SStephan Aßmus void
17302f86ba45SStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, BRect rect,
17312f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags)
17322f86ba45SStephan Aßmus {
17332f86ba45SStephan Aßmus 	DrawLabel(view, label, rect, updateRect, base, flags,
17342f86ba45SStephan Aßmus 		DefaultLabelAlignment());
17352f86ba45SStephan Aßmus }
17362f86ba45SStephan Aßmus 
17372f86ba45SStephan Aßmus 
17382f86ba45SStephan Aßmus void
17392f86ba45SStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, BRect rect,
17402f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
17412f86ba45SStephan Aßmus 	const BAlignment& alignment)
17422f86ba45SStephan Aßmus {
17432f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
17442f86ba45SStephan Aßmus 		return;
17452f86ba45SStephan Aßmus 
17462f86ba45SStephan Aßmus 	// truncate the label if necessary and get the width and height
17472f86ba45SStephan Aßmus 	BString truncatedLabel(label);
17482f86ba45SStephan Aßmus 
17492f86ba45SStephan Aßmus 	BFont font;
17502f86ba45SStephan Aßmus 	view->GetFont(&font);
17512f86ba45SStephan Aßmus 
17522f86ba45SStephan Aßmus 	float width = rect.Width();
17532f86ba45SStephan Aßmus 	font.TruncateString(&truncatedLabel, B_TRUNCATE_END, width);
17542f86ba45SStephan Aßmus 	width = font.StringWidth(truncatedLabel.String());
17552f86ba45SStephan Aßmus 
17562f86ba45SStephan Aßmus 	font_height fontHeight;
17572f86ba45SStephan Aßmus 	font.GetHeight(&fontHeight);
17582f86ba45SStephan Aßmus 	float height = ceilf(fontHeight.ascent) + ceilf(fontHeight.descent);
17592f86ba45SStephan Aßmus 
17602f86ba45SStephan Aßmus 	// handle alignment
17612f86ba45SStephan Aßmus 	BPoint location;
17622f86ba45SStephan Aßmus 
17632f86ba45SStephan Aßmus 	switch (alignment.horizontal) {
17642f86ba45SStephan Aßmus 	default:
17652f86ba45SStephan Aßmus 		case B_ALIGN_LEFT:
17662f86ba45SStephan Aßmus 			location.x = rect.left;
17672f86ba45SStephan Aßmus 			break;
17682f86ba45SStephan Aßmus 		case B_ALIGN_RIGHT:
17692f86ba45SStephan Aßmus 			location.x = rect.right - width;
17702f86ba45SStephan Aßmus 			break;
17712f86ba45SStephan Aßmus 		case B_ALIGN_CENTER:
17722f86ba45SStephan Aßmus 			location.x = (rect.left + rect.right - width) / 2.0f;
17732f86ba45SStephan Aßmus 			break;
17742f86ba45SStephan Aßmus 	}
17752f86ba45SStephan Aßmus 
17762f86ba45SStephan Aßmus 	switch (alignment.vertical) {
17772f86ba45SStephan Aßmus 		case B_ALIGN_TOP:
17782f86ba45SStephan Aßmus 			location.y = rect.top + ceilf(fontHeight.ascent);
17792f86ba45SStephan Aßmus 			break;
17802f86ba45SStephan Aßmus 		default:
17812f86ba45SStephan Aßmus 		case B_ALIGN_MIDDLE:
17822f86ba45SStephan Aßmus 			location.y = floorf((rect.top + rect.bottom - height) / 2.0f + 0.5f)
17832f86ba45SStephan Aßmus 				+ ceilf(fontHeight.ascent);
17842f86ba45SStephan Aßmus 			break;
17852f86ba45SStephan Aßmus 		case B_ALIGN_BOTTOM:
17862f86ba45SStephan Aßmus 			location.y = rect.bottom - ceilf(fontHeight.descent);
17872f86ba45SStephan Aßmus 			break;
17882f86ba45SStephan Aßmus 	}
17892f86ba45SStephan Aßmus 
1790*c4e211feSStephan Aßmus 	DrawLabel(view, truncatedLabel.String(), base, flags, location);
1791*c4e211feSStephan Aßmus }
1792*c4e211feSStephan Aßmus 
1793*c4e211feSStephan Aßmus 
1794*c4e211feSStephan Aßmus void
1795*c4e211feSStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, const rgb_color& base,
1796*c4e211feSStephan Aßmus 	uint32 flags, const BPoint& where)
1797*c4e211feSStephan Aßmus {
1798*c4e211feSStephan Aßmus 	// setup the text color
1799*c4e211feSStephan Aßmus 	// TODO: Should either use the ui_color(B_CONTROL_TEXT_COLOR) here,
1800*c4e211feSStephan Aßmus 	// or elliminate that constant alltogether (stippi: +1).
1801*c4e211feSStephan Aßmus 	rgb_color color;
1802*c4e211feSStephan Aßmus 	if (base.red + base.green + base.blue > 128 * 3)
1803*c4e211feSStephan Aßmus 		color = tint_color(base, B_DARKEN_MAX_TINT);
1804*c4e211feSStephan Aßmus 	else
1805*c4e211feSStephan Aßmus 		color = tint_color(base, B_LIGHTEN_MAX_TINT);
1806*c4e211feSStephan Aßmus 
1807*c4e211feSStephan Aßmus 	if (flags & B_DISABLED) {
1808*c4e211feSStephan Aßmus 		color.red = (uint8)(((int32)base.red + color.red + 1) / 2);
1809*c4e211feSStephan Aßmus 		color.green = (uint8)(((int32)base.green + color.green + 1) / 2);
1810*c4e211feSStephan Aßmus 		color.blue = (uint8)(((int32)base.blue + color.blue + 1) / 2);
1811*c4e211feSStephan Aßmus 	}
1812*c4e211feSStephan Aßmus 
1813*c4e211feSStephan Aßmus 	view->SetHighColor(color);
1814*c4e211feSStephan Aßmus 	drawing_mode oldMode = view->DrawingMode();
1815*c4e211feSStephan Aßmus 	view->SetDrawingMode(B_OP_OVER);
1816*c4e211feSStephan Aßmus 
1817*c4e211feSStephan Aßmus 	view->DrawString(label, where);
1818*c4e211feSStephan Aßmus 
1819*c4e211feSStephan Aßmus 	view->SetDrawingMode(oldMode);
18202f86ba45SStephan Aßmus }
18212f86ba45SStephan Aßmus 
18222f86ba45SStephan Aßmus 
18232f86ba45SStephan Aßmus // #pragma mark -
18242f86ba45SStephan Aßmus 
18252f86ba45SStephan Aßmus 
18262f86ba45SStephan Aßmus void
182713cd46dfSStephan Aßmus BControlLook::_DrawButtonFrame(BView* view, BRect& rect,
1828681c2e44SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, const rgb_color& background,
182913cd46dfSStephan Aßmus 	float contrast, float brightness, uint32 flags, uint32 borders)
183013cd46dfSStephan Aßmus {
183113cd46dfSStephan Aßmus 	// colors
183213cd46dfSStephan Aßmus 	rgb_color dark1BorderColor;
183313cd46dfSStephan Aßmus 	rgb_color dark2BorderColor;
183413cd46dfSStephan Aßmus 
183513cd46dfSStephan Aßmus 	if ((flags & B_DISABLED) == 0) {
18364f579098SStephan Aßmus 		if (flags & B_BLEND_FRAME) {
18374f579098SStephan Aßmus 			dark1BorderColor = (rgb_color){ 0, 0, 0, 75 };
18384f579098SStephan Aßmus 			dark2BorderColor = (rgb_color){ 0, 0, 0, 95 };
18394f579098SStephan Aßmus 		} else {
184013cd46dfSStephan Aßmus 			dark1BorderColor = tint_color(base, 1.33);
184113cd46dfSStephan Aßmus 			dark2BorderColor = tint_color(base, 1.45);
18424f579098SStephan Aßmus 		}
184313cd46dfSStephan Aßmus 
184413cd46dfSStephan Aßmus 		if (flags & B_DEFAULT_BUTTON) {
18454f579098SStephan Aßmus 			// TODO: B_BLEND_FRAME
184613cd46dfSStephan Aßmus 			dark2BorderColor = tint_color(dark1BorderColor, 1.5);
184713cd46dfSStephan Aßmus 			dark1BorderColor = tint_color(dark1BorderColor, 1.35);
184813cd46dfSStephan Aßmus 		}
184913cd46dfSStephan Aßmus 	} else {
18504f579098SStephan Aßmus 		// TODO: B_BLEND_FRAME
185113cd46dfSStephan Aßmus 		dark1BorderColor = tint_color(base, 1.147);
185213cd46dfSStephan Aßmus 		dark2BorderColor = tint_color(base, 1.24);
185313cd46dfSStephan Aßmus 
185413cd46dfSStephan Aßmus 		if (flags & B_DEFAULT_BUTTON) {
185574bb70aeSStephan Aßmus 			dark1BorderColor = tint_color(dark1BorderColor, 1.14);
185674bb70aeSStephan Aßmus 			dark2BorderColor = tint_color(dark1BorderColor, 1.12);
185713cd46dfSStephan Aßmus 		}
185813cd46dfSStephan Aßmus 	}
185913cd46dfSStephan Aßmus 
186013cd46dfSStephan Aßmus 	if (flags & B_ACTIVATED) {
186113cd46dfSStephan Aßmus 		rgb_color temp = dark2BorderColor;
186213cd46dfSStephan Aßmus 		dark2BorderColor = dark1BorderColor;
186313cd46dfSStephan Aßmus 		dark1BorderColor = temp;
186413cd46dfSStephan Aßmus 	}
186513cd46dfSStephan Aßmus 
186613cd46dfSStephan Aßmus 	// indicate focus by changing main button border
186713cd46dfSStephan Aßmus 	if (flags & B_FOCUSED) {
186813cd46dfSStephan Aßmus 		dark1BorderColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
186913cd46dfSStephan Aßmus 		dark2BorderColor = dark1BorderColor;
187013cd46dfSStephan Aßmus 	}
187113cd46dfSStephan Aßmus 
187213cd46dfSStephan Aßmus 	if (flags & B_DEFAULT_BUTTON) {
18734f579098SStephan Aßmus 		// TODO: B_BLEND_FRAME
187413cd46dfSStephan Aßmus 		float focusTint = 1.2;
187513cd46dfSStephan Aßmus 		if (flags & B_DISABLED)
187613cd46dfSStephan Aßmus 			focusTint = (B_NO_TINT + focusTint) / 2;
187713cd46dfSStephan Aßmus 
187813cd46dfSStephan Aßmus 		rgb_color focusColor = tint_color(base, focusTint);
187913cd46dfSStephan Aßmus 		view->SetHighColor(base);
188013cd46dfSStephan Aßmus 
188113cd46dfSStephan Aßmus 		view->StrokeRect(rect);
188213cd46dfSStephan Aßmus 		rect.InsetBy(1.0, 1.0);
188313cd46dfSStephan Aßmus 
188413cd46dfSStephan Aßmus 		view->SetHighColor(focusColor);
188513cd46dfSStephan Aßmus 		view->StrokeRect(rect);
188613cd46dfSStephan Aßmus 		rect.InsetBy(1.0, 1.0);
188713cd46dfSStephan Aßmus 		view->StrokeRect(rect);
188813cd46dfSStephan Aßmus 		rect.InsetBy(1.0, 1.0);
188913cd46dfSStephan Aßmus 
189013cd46dfSStephan Aßmus 		// bevel around external border
189113cd46dfSStephan Aßmus 		_DrawOuterResessedFrame(view, rect, focusColor,
189274bb70aeSStephan Aßmus 			contrast * (((flags & B_DISABLED) ? 0.3 : 0.8)),
189374bb70aeSStephan Aßmus 			brightness * (((flags & B_DISABLED) ? 1.0 : 0.9)),
18944f579098SStephan Aßmus 			flags, borders);
189513cd46dfSStephan Aßmus 	} else {
189613cd46dfSStephan Aßmus 		// bevel around external border
1897681c2e44SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, background,
189813cd46dfSStephan Aßmus 			contrast * ((flags & B_DISABLED) ? 0.0 : 1.0), brightness * 1.0,
18994f579098SStephan Aßmus 			flags, borders);
190013cd46dfSStephan Aßmus 	}
190113cd46dfSStephan Aßmus 
19024f579098SStephan Aßmus 	if (flags & B_BLEND_FRAME) {
19034f579098SStephan Aßmus 		drawing_mode oldDrawingMode = view->DrawingMode();
19044f579098SStephan Aßmus 		view->SetDrawingMode(B_OP_ALPHA);
19054f579098SStephan Aßmus 
190613cd46dfSStephan Aßmus 		_DrawFrame(view, rect, dark1BorderColor, dark1BorderColor,
190713cd46dfSStephan Aßmus 			dark2BorderColor, dark2BorderColor, borders);
19084f579098SStephan Aßmus 
19094f579098SStephan Aßmus 		view->SetDrawingMode(oldDrawingMode);
19104f579098SStephan Aßmus 	} else {
19114f579098SStephan Aßmus 		_DrawFrame(view, rect, dark1BorderColor, dark1BorderColor,
19124f579098SStephan Aßmus 			dark2BorderColor, dark2BorderColor, borders);
19134f579098SStephan Aßmus 	}
191413cd46dfSStephan Aßmus }
191513cd46dfSStephan Aßmus 
191613cd46dfSStephan Aßmus 
191713cd46dfSStephan Aßmus void
19182f86ba45SStephan Aßmus BControlLook::_DrawOuterResessedFrame(BView* view, BRect& rect,
19194f579098SStephan Aßmus 	const rgb_color& base, float contrast, float brightness, uint32 flags,
19204f579098SStephan Aßmus 	uint32 borders)
19212f86ba45SStephan Aßmus {
19224f579098SStephan Aßmus 	if (flags & B_BLEND_FRAME) {
19234f579098SStephan Aßmus 		// assumes the background has already been painted
19244f579098SStephan Aßmus 		drawing_mode oldDrawingMode = view->DrawingMode();
19254f579098SStephan Aßmus 		view->SetDrawingMode(B_OP_ALPHA);
19264f579098SStephan Aßmus 
19274f579098SStephan Aßmus 		uint8 alpha = uint8(20 * contrast);
19284f579098SStephan Aßmus 		uint32 white = uint8(255 * brightness);
19294f579098SStephan Aßmus 
19304f579098SStephan Aßmus 		rgb_color borderBevelShadow = (rgb_color){ 0, 0, 0, alpha };
19314f579098SStephan Aßmus 		rgb_color borderBevelLight = (rgb_color){ white, white, white, alpha };
19324f579098SStephan Aßmus 
19334f579098SStephan Aßmus 		_DrawFrame(view, rect, borderBevelShadow, borderBevelShadow,
19344f579098SStephan Aßmus 			borderBevelLight, borderBevelLight, borders);
19354f579098SStephan Aßmus 
19364f579098SStephan Aßmus 		view->SetDrawingMode(oldDrawingMode);
19374f579098SStephan Aßmus 	} else {
19382f86ba45SStephan Aßmus 		// colors
19392f86ba45SStephan Aßmus 		float tintLight = kEdgeBevelLightTint;
19402f86ba45SStephan Aßmus 		float tintShadow = kEdgeBevelShadowTint;
19412f86ba45SStephan Aßmus 
19422f86ba45SStephan Aßmus 		if (contrast == 0.0) {
19432f86ba45SStephan Aßmus 			tintLight = B_NO_TINT;
19442f86ba45SStephan Aßmus 			tintShadow = B_NO_TINT;
19452f86ba45SStephan Aßmus 		} else if (contrast != 1.0) {
19462f86ba45SStephan Aßmus 			tintLight = B_NO_TINT + (tintLight - B_NO_TINT) * contrast;
19472f86ba45SStephan Aßmus 			tintShadow = B_NO_TINT + (tintShadow - B_NO_TINT) * contrast;
19482f86ba45SStephan Aßmus 		}
19492f86ba45SStephan Aßmus 
19502f86ba45SStephan Aßmus 		rgb_color borderBevelShadow = tint_color(base, tintShadow);
19512f86ba45SStephan Aßmus 		rgb_color borderBevelLight = tint_color(base, tintLight);
19522f86ba45SStephan Aßmus 
19532f86ba45SStephan Aßmus 		if (brightness < 1.0) {
19542f86ba45SStephan Aßmus 			borderBevelShadow.red = uint8(borderBevelShadow.red * brightness);
19552f86ba45SStephan Aßmus 			borderBevelShadow.green = uint8(borderBevelShadow.green * brightness);
19562f86ba45SStephan Aßmus 			borderBevelShadow.blue = uint8(borderBevelShadow.blue * brightness);
19572f86ba45SStephan Aßmus 			borderBevelLight.red = uint8(borderBevelLight.red * brightness);
19582f86ba45SStephan Aßmus 			borderBevelLight.green = uint8(borderBevelLight.green * brightness);
19592f86ba45SStephan Aßmus 			borderBevelLight.blue = uint8(borderBevelLight.blue * brightness);
19602f86ba45SStephan Aßmus 		}
19612f86ba45SStephan Aßmus 
19622f86ba45SStephan Aßmus 		_DrawFrame(view, rect, borderBevelShadow, borderBevelShadow,
19632f86ba45SStephan Aßmus 			borderBevelLight, borderBevelLight, borders);
19642f86ba45SStephan Aßmus 	}
19654f579098SStephan Aßmus }
19662f86ba45SStephan Aßmus 
19672f86ba45SStephan Aßmus 
19682f86ba45SStephan Aßmus void
19692f86ba45SStephan Aßmus BControlLook::_DrawFrame(BView* view, BRect& rect, const rgb_color& left,
19702f86ba45SStephan Aßmus 	const rgb_color& top, const rgb_color& right, const rgb_color& bottom,
19712f86ba45SStephan Aßmus 	uint32 borders)
19722f86ba45SStephan Aßmus {
19732f86ba45SStephan Aßmus 	view->BeginLineArray(4);
19742f86ba45SStephan Aßmus 
19752f86ba45SStephan Aßmus 	if (borders & B_LEFT_BORDER) {
19762f86ba45SStephan Aßmus 		view->AddLine(
19772f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
19782f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top), left);
19792f86ba45SStephan Aßmus 		rect.left++;
19802f86ba45SStephan Aßmus 	}
19812f86ba45SStephan Aßmus 	if (borders & B_TOP_BORDER) {
19822f86ba45SStephan Aßmus 		view->AddLine(
19832f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top),
19842f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top), top);
19852f86ba45SStephan Aßmus 		rect.top++;
19862f86ba45SStephan Aßmus 	}
19872f86ba45SStephan Aßmus 	if (borders & B_RIGHT_BORDER) {
19882f86ba45SStephan Aßmus 		view->AddLine(
19892f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top),
19902f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), right);
19912f86ba45SStephan Aßmus 		rect.right--;
19922f86ba45SStephan Aßmus 	}
19932f86ba45SStephan Aßmus 	if (borders & B_BOTTOM_BORDER) {
19942f86ba45SStephan Aßmus 		view->AddLine(
19952f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
19962f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), bottom);
19972f86ba45SStephan Aßmus 		rect.bottom--;
19982f86ba45SStephan Aßmus 	}
19992f86ba45SStephan Aßmus 
20002f86ba45SStephan Aßmus 	view->EndLineArray();
20012f86ba45SStephan Aßmus }
20022f86ba45SStephan Aßmus 
20032f86ba45SStephan Aßmus 
20042f86ba45SStephan Aßmus void
20052f86ba45SStephan Aßmus BControlLook::_DrawFrame(BView* view, BRect& rect, const rgb_color& left,
20062f86ba45SStephan Aßmus 	const rgb_color& top, const rgb_color& right, const rgb_color& bottom,
20072f86ba45SStephan Aßmus 	const rgb_color& rightTop, const rgb_color& leftBottom, uint32 borders)
20082f86ba45SStephan Aßmus {
20092f86ba45SStephan Aßmus 	view->BeginLineArray(6);
20102f86ba45SStephan Aßmus 
20112f86ba45SStephan Aßmus 	if (borders & B_TOP_BORDER) {
20122f86ba45SStephan Aßmus 		if (borders & B_RIGHT_BORDER) {
20132f86ba45SStephan Aßmus 			view->AddLine(
20142f86ba45SStephan Aßmus 				BPoint(rect.left, rect.top),
20152f86ba45SStephan Aßmus 				BPoint(rect.right - 1, rect.top), top);
20162f86ba45SStephan Aßmus 			view->AddLine(
20172f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top),
20182f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), rightTop);
20192f86ba45SStephan Aßmus 		} else {
20202f86ba45SStephan Aßmus 			view->AddLine(
20212f86ba45SStephan Aßmus 				BPoint(rect.left, rect.top),
20222f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), top);
20232f86ba45SStephan Aßmus 		}
20242f86ba45SStephan Aßmus 		rect.top++;
20252f86ba45SStephan Aßmus 	}
20262f86ba45SStephan Aßmus 
20272f86ba45SStephan Aßmus 	if (borders & B_LEFT_BORDER) {
20282f86ba45SStephan Aßmus 		view->AddLine(
20292f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top),
20302f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom - 1), left);
20312f86ba45SStephan Aßmus 		view->AddLine(
20322f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
20332f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom), leftBottom);
20342f86ba45SStephan Aßmus 		rect.left++;
20352f86ba45SStephan Aßmus 	}
20362f86ba45SStephan Aßmus 
20372f86ba45SStephan Aßmus 	if (borders & B_BOTTOM_BORDER) {
20382f86ba45SStephan Aßmus 		view->AddLine(
20392f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
20402f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), bottom);
20412f86ba45SStephan Aßmus 		rect.bottom--;
20422f86ba45SStephan Aßmus 	}
20432f86ba45SStephan Aßmus 
20442f86ba45SStephan Aßmus 	if (borders & B_RIGHT_BORDER) {
20452f86ba45SStephan Aßmus 		view->AddLine(
20462f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom),
20472f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top), right);
20482f86ba45SStephan Aßmus 		rect.right--;
20492f86ba45SStephan Aßmus 	}
20502f86ba45SStephan Aßmus 
20512f86ba45SStephan Aßmus 	view->EndLineArray();
20522f86ba45SStephan Aßmus }
20532f86ba45SStephan Aßmus 
20542f86ba45SStephan Aßmus 
20552f86ba45SStephan Aßmus //void
20562f86ba45SStephan Aßmus //BControlLook::_DrawShadowFrame(BView* view, BRect& rect, const rgb_color& base,
20572f86ba45SStephan Aßmus //	uint32 borders)
20582f86ba45SStephan Aßmus //{
20592f86ba45SStephan Aßmus //	view->BeginLineArray(4);
20602f86ba45SStephan Aßmus //
20612f86ba45SStephan Aßmus //	bevelColor1 = tint_color(base, 1.2);
20622f86ba45SStephan Aßmus //	bevelColor2 = tint_color(base, 1.1);
20632f86ba45SStephan Aßmus //
20642f86ba45SStephan Aßmus //	// shadow along left/top borders
20652f86ba45SStephan Aßmus //	if (rect.Height() > 0 && borders & B_LEFT_BORDER) {
20662f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
20672f86ba45SStephan Aßmus //			BPoint(rect.left, rect.bottom), bevelColor1);
20682f86ba45SStephan Aßmus //		rect.left++;
20692f86ba45SStephan Aßmus //	}
20702f86ba45SStephan Aßmus //	if (rect.Width() > 0 && borders & B_TOP_BORDER) {
20712f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
20722f86ba45SStephan Aßmus //			BPoint(rect.right, rect.top), bevelColor1);
20732f86ba45SStephan Aßmus //		rect.top++;
20742f86ba45SStephan Aßmus //	}
20752f86ba45SStephan Aßmus //
20762f86ba45SStephan Aßmus //	// softer shadow along left/top borders
20772f86ba45SStephan Aßmus //	if (rect.Height() > 0 && borders & B_LEFT_BORDER) {
20782f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
20792f86ba45SStephan Aßmus //			BPoint(rect.left, rect.bottom), bevelColor2);
20802f86ba45SStephan Aßmus //		rect.left++;
20812f86ba45SStephan Aßmus //	}
20822f86ba45SStephan Aßmus //	if (rect.Width() > 0 && borders & B_TOP_BORDER) {
20832f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
20842f86ba45SStephan Aßmus //			BPoint(rect.right, rect.top), bevelColor2);
20852f86ba45SStephan Aßmus //		rect.top++;
20862f86ba45SStephan Aßmus //	}
20872f86ba45SStephan Aßmus //
20882f86ba45SStephan Aßmus //	view->EndLineArray();
20892f86ba45SStephan Aßmus //}
20902f86ba45SStephan Aßmus 
20912f86ba45SStephan Aßmus 
20922f86ba45SStephan Aßmus void
20932f86ba45SStephan Aßmus BControlLook::_FillGradient(BView* view, const BRect& rect,
20942f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float bottomTint,
20952f86ba45SStephan Aßmus 	enum orientation orientation)
20962f86ba45SStephan Aßmus {
20972f86ba45SStephan Aßmus 	BGradientLinear gradient;
20982f86ba45SStephan Aßmus 	_MakeGradient(gradient, rect, base, topTint, bottomTint, orientation);
20992f86ba45SStephan Aßmus 	view->FillRect(rect, gradient);
21002f86ba45SStephan Aßmus }
21012f86ba45SStephan Aßmus 
21022f86ba45SStephan Aßmus 
21032f86ba45SStephan Aßmus void
21042f86ba45SStephan Aßmus BControlLook::_FillGlossyGradient(BView* view, const BRect& rect,
21052f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float middle1Tint,
21062f86ba45SStephan Aßmus 	float middle2Tint, float bottomTint, enum orientation orientation)
21072f86ba45SStephan Aßmus {
21082f86ba45SStephan Aßmus 	BGradientLinear gradient;
21092f86ba45SStephan Aßmus 	_MakeGlossyGradient(gradient, rect, base, topTint, middle1Tint,
21102f86ba45SStephan Aßmus 		middle2Tint, bottomTint, orientation);
21112f86ba45SStephan Aßmus 	view->FillRect(rect, gradient);
21122f86ba45SStephan Aßmus }
21132f86ba45SStephan Aßmus 
21142f86ba45SStephan Aßmus 
21152f86ba45SStephan Aßmus void
21162f86ba45SStephan Aßmus BControlLook::_MakeGradient(BGradientLinear& gradient, const BRect& rect,
21172f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float bottomTint,
21182f86ba45SStephan Aßmus 	enum orientation orientation) const
21192f86ba45SStephan Aßmus {
21202f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, topTint), 0);
21212f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, bottomTint), 255);
21222f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
21232f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
21242f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
21252f86ba45SStephan Aßmus 	else
21262f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
21272f86ba45SStephan Aßmus }
21282f86ba45SStephan Aßmus 
21292f86ba45SStephan Aßmus 
21302f86ba45SStephan Aßmus void
21312f86ba45SStephan Aßmus BControlLook::_MakeGlossyGradient(BGradientLinear& gradient, const BRect& rect,
21322f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float middle1Tint,
21332f86ba45SStephan Aßmus 	float middle2Tint, float bottomTint,
21342f86ba45SStephan Aßmus 	enum orientation orientation) const
21352f86ba45SStephan Aßmus {
21362f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, topTint), 0);
21372f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, middle1Tint), 132);
21382f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, middle2Tint), 136);
21392f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, bottomTint), 255);
21402f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
21412f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
21422f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
21432f86ba45SStephan Aßmus 	else
21442f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
21452f86ba45SStephan Aßmus }
21462f86ba45SStephan Aßmus 
21472f86ba45SStephan Aßmus 
21482f86ba45SStephan Aßmus bool
21492f86ba45SStephan Aßmus BControlLook::_RadioButtonAndCheckBoxMarkColor(const rgb_color& base,
21502f86ba45SStephan Aßmus 	rgb_color& color, uint32 flags) const
21512f86ba45SStephan Aßmus {
21522f86ba45SStephan Aßmus 	if ((flags & (B_ACTIVATED | B_CLICKED)) == 0) {
21532f86ba45SStephan Aßmus 		// no mark to be drawn at all
21542f86ba45SStephan Aßmus 		return false;
21552f86ba45SStephan Aßmus 	}
21562f86ba45SStephan Aßmus 
21572f86ba45SStephan Aßmus 	// TODO: Get from UI settings
21582f86ba45SStephan Aßmus 	color.red = 27;
21592f86ba45SStephan Aßmus 	color.green = 82;
21602f86ba45SStephan Aßmus 	color.blue = 140;
21612f86ba45SStephan Aßmus 
21622f86ba45SStephan Aßmus 	float mix = 1.0;
21632f86ba45SStephan Aßmus 
21642f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
21652f86ba45SStephan Aßmus 		// activated, but disabled
21662f86ba45SStephan Aßmus 		mix = 0.4;
21672f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
21682f86ba45SStephan Aßmus 		if (flags & B_ACTIVATED) {
21692f86ba45SStephan Aßmus 			// loosing activation
21702f86ba45SStephan Aßmus 			mix = 0.7;
21712f86ba45SStephan Aßmus 		} else {
21722f86ba45SStephan Aßmus 			// becoming activated
21732f86ba45SStephan Aßmus 			mix = 0.3;
21742f86ba45SStephan Aßmus 		}
21752f86ba45SStephan Aßmus 	} else {
21762f86ba45SStephan Aßmus 		// simply activated
21772f86ba45SStephan Aßmus 	}
21782f86ba45SStephan Aßmus 
21792f86ba45SStephan Aßmus 	color.red = uint8(color.red * mix + base.red * (1.0 - mix));
21802f86ba45SStephan Aßmus 	color.green = uint8(color.green * mix + base.green * (1.0 - mix));
21812f86ba45SStephan Aßmus 	color.blue = uint8(color.blue * mix + base.blue * (1.0 - mix));
21822f86ba45SStephan Aßmus 
21832f86ba45SStephan Aßmus 	return true;
21842f86ba45SStephan Aßmus }
21852f86ba45SStephan Aßmus 
21862f86ba45SStephan Aßmus 
21872f86ba45SStephan Aßmus void
21882f86ba45SStephan Aßmus BControlLook::_DrawRoundBarCorner(BView* view, BRect& rect,
21892f86ba45SStephan Aßmus 	const BRect& updateRect,
21902f86ba45SStephan Aßmus 	const rgb_color& edgeLightColor, const rgb_color& edgeShadowColor,
21912f86ba45SStephan Aßmus 	const rgb_color& frameLightColor, const rgb_color& frameShadowColor,
21922f86ba45SStephan Aßmus 	const rgb_color& fillLightColor, const rgb_color& fillShadowColor,
21932f86ba45SStephan Aßmus 	float leftInset, float topInset, float rightInset, float bottomInset,
21942f86ba45SStephan Aßmus 	enum orientation orientation)
21952f86ba45SStephan Aßmus {
21962f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
21972f86ba45SStephan Aßmus 		return;
21982f86ba45SStephan Aßmus 
21992f86ba45SStephan Aßmus 	BGradientLinear gradient;
22002f86ba45SStephan Aßmus 	gradient.AddColor(edgeShadowColor, 0);
22012f86ba45SStephan Aßmus 	gradient.AddColor(edgeLightColor, 255);
22022f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
22032f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
22042f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
22052f86ba45SStephan Aßmus 	else
22062f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
22072f86ba45SStephan Aßmus 
22082f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
22092f86ba45SStephan Aßmus 
22102f86ba45SStephan Aßmus 	rect.left += leftInset;
22112f86ba45SStephan Aßmus 	rect.top += topInset;
22122f86ba45SStephan Aßmus 	rect.right += rightInset;
22132f86ba45SStephan Aßmus 	rect.bottom += bottomInset;
22142f86ba45SStephan Aßmus 
22152f86ba45SStephan Aßmus 	gradient.MakeEmpty();
22162f86ba45SStephan Aßmus 	gradient.AddColor(frameShadowColor, 0);
22172f86ba45SStephan Aßmus 	gradient.AddColor(frameLightColor, 255);
22182f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
22192f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
22202f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
22212f86ba45SStephan Aßmus 	else
22222f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
22232f86ba45SStephan Aßmus 
22242f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
22252f86ba45SStephan Aßmus 
22262f86ba45SStephan Aßmus 	rect.left += leftInset;
22272f86ba45SStephan Aßmus 	rect.top += topInset;
22282f86ba45SStephan Aßmus 	rect.right += rightInset;
22292f86ba45SStephan Aßmus 	rect.bottom += bottomInset;
22302f86ba45SStephan Aßmus 
22312f86ba45SStephan Aßmus 	gradient.MakeEmpty();
22322f86ba45SStephan Aßmus 	gradient.AddColor(fillShadowColor, 0);
22332f86ba45SStephan Aßmus 	gradient.AddColor(fillLightColor, 255);
22342f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
22352f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
22362f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
22372f86ba45SStephan Aßmus 	else
22382f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
22392f86ba45SStephan Aßmus 
22402f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
22412f86ba45SStephan Aßmus }
22422f86ba45SStephan Aßmus 
22432f86ba45SStephan Aßmus 
22442f86ba45SStephan Aßmus void
22452f86ba45SStephan Aßmus BControlLook::_DrawRoundCornerLeftTop(BView* view, BRect& rect,
22462f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, const rgb_color& edgeColor,
22472f86ba45SStephan Aßmus 	const rgb_color& frameColor, const rgb_color& bevelColor,
22482f86ba45SStephan Aßmus 	const BGradientLinear& fillGradient)
22492f86ba45SStephan Aßmus {
22502f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
22512f86ba45SStephan Aßmus 		return;
22522f86ba45SStephan Aßmus 
22532f86ba45SStephan Aßmus 	BRegion clipping(rect);
22542f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&clipping);
22552f86ba45SStephan Aßmus 
22562f86ba45SStephan Aßmus 	// background
22572f86ba45SStephan Aßmus 	view->SetHighColor(base);
22582f86ba45SStephan Aßmus 	view->FillRect(rect);
22592f86ba45SStephan Aßmus 
22602f86ba45SStephan Aßmus 	// outer edge
22612f86ba45SStephan Aßmus 	BRect ellipseRect(rect);
22622f86ba45SStephan Aßmus 	ellipseRect.right = ellipseRect.left + ellipseRect.Width() * 2;
22632f86ba45SStephan Aßmus 	ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
22642f86ba45SStephan Aßmus 
22652f86ba45SStephan Aßmus 	view->SetHighColor(edgeColor);
22662f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect);
22672f86ba45SStephan Aßmus 
22682f86ba45SStephan Aßmus 	// frame
22692f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
22702f86ba45SStephan Aßmus 	view->SetHighColor(frameColor);
22712f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect);
22722f86ba45SStephan Aßmus 
22732f86ba45SStephan Aßmus 	// bevel
22742f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
22752f86ba45SStephan Aßmus 	view->SetHighColor(bevelColor);
22762f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect);
22772f86ba45SStephan Aßmus 
22782f86ba45SStephan Aßmus 	// fill
22792f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
22802f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, fillGradient);
22812f86ba45SStephan Aßmus 
22822f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
22832f86ba45SStephan Aßmus }
22842f86ba45SStephan Aßmus 
22852f86ba45SStephan Aßmus void
22862f86ba45SStephan Aßmus BControlLook::_DrawRoundCornerRightTop(BView* view, BRect& rect,
22872f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base,
22882f86ba45SStephan Aßmus 	const rgb_color& edgeTopColor, const rgb_color& edgeRightColor,
22892f86ba45SStephan Aßmus 	const rgb_color& frameTopColor, const rgb_color& frameRightColor,
22902f86ba45SStephan Aßmus 	const rgb_color& bevelTopColor, const rgb_color& bevelRightColor,
22912f86ba45SStephan Aßmus 	const BGradientLinear& fillGradient)
22922f86ba45SStephan Aßmus {
22932f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
22942f86ba45SStephan Aßmus 		return;
22952f86ba45SStephan Aßmus 
22962f86ba45SStephan Aßmus 	BRegion clipping(rect);
22972f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&clipping);
22982f86ba45SStephan Aßmus 
22992f86ba45SStephan Aßmus 	// background
23002f86ba45SStephan Aßmus 	view->SetHighColor(base);
23012f86ba45SStephan Aßmus 	view->FillRect(rect);
23022f86ba45SStephan Aßmus 
23032f86ba45SStephan Aßmus 	// outer edge
23042f86ba45SStephan Aßmus 	BRect ellipseRect(rect);
23052f86ba45SStephan Aßmus 	ellipseRect.left = ellipseRect.right - ellipseRect.Width() * 2;
23062f86ba45SStephan Aßmus 	ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
23072f86ba45SStephan Aßmus 
23082f86ba45SStephan Aßmus 	BGradientLinear gradient;
23092f86ba45SStephan Aßmus 	gradient.AddColor(edgeTopColor, 0);
23102f86ba45SStephan Aßmus 	gradient.AddColor(edgeRightColor, 255);
23112f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
23122f86ba45SStephan Aßmus 	gradient.SetEnd(rect.RightBottom());
23132f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, gradient);
23142f86ba45SStephan Aßmus 
23152f86ba45SStephan Aßmus 	// frame
23162f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
23172f86ba45SStephan Aßmus 	rect.right--;
23182f86ba45SStephan Aßmus 	rect.top++;
23192f86ba45SStephan Aßmus 	if (frameTopColor == frameRightColor) {
23202f86ba45SStephan Aßmus 		view->SetHighColor(frameTopColor);
23212f86ba45SStephan Aßmus 		view->FillEllipse(ellipseRect);
23222f86ba45SStephan Aßmus 	} else {
23232f86ba45SStephan Aßmus 		gradient.SetColor(0, frameTopColor);
23242f86ba45SStephan Aßmus 		gradient.SetColor(1, frameRightColor);
23252f86ba45SStephan Aßmus 		gradient.SetStart(rect.LeftTop());
23262f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightBottom());
23272f86ba45SStephan Aßmus 		view->FillEllipse(ellipseRect, gradient);
23282f86ba45SStephan Aßmus 	}
23292f86ba45SStephan Aßmus 
23302f86ba45SStephan Aßmus 	// bevel
23312f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
23322f86ba45SStephan Aßmus 	rect.right--;
23332f86ba45SStephan Aßmus 	rect.top++;
23342f86ba45SStephan Aßmus 	gradient.SetColor(0, bevelTopColor);
23352f86ba45SStephan Aßmus 	gradient.SetColor(1, bevelRightColor);
23362f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
23372f86ba45SStephan Aßmus 	gradient.SetEnd(rect.RightBottom());
23382f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, gradient);
23392f86ba45SStephan Aßmus 
23402f86ba45SStephan Aßmus 	// fill
23412f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
23422f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, fillGradient);
23432f86ba45SStephan Aßmus 
23442f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
23452f86ba45SStephan Aßmus }
23462f86ba45SStephan Aßmus 
23472f86ba45SStephan Aßmus 
23482f86ba45SStephan Aßmus // NOTE: May come from a add-on in the future. Initialized in
23492f86ba45SStephan Aßmus // InterfaceDefs.cpp
23502f86ba45SStephan Aßmus BControlLook* be_control_look = NULL;
23512f86ba45SStephan Aßmus 
23522f86ba45SStephan Aßmus } // namespace BPrivate
2353