xref: /haiku/src/kits/interface/ControlLook.cpp (revision 1a72cb4139bb0b6ae48a09c6dacf64018ceb694f)
12f86ba45SStephan Aßmus /*
22f86ba45SStephan Aßmus  * Copyright 2009, Stephan Aßmus <superstippi@gmx.de>
32f86ba45SStephan Aßmus  * Distributed under the terms of the MIT License.
42f86ba45SStephan Aßmus  */
52f86ba45SStephan Aßmus #include <ControlLook.h>
62f86ba45SStephan Aßmus 
72f86ba45SStephan Aßmus #include <stdio.h>
82f86ba45SStephan Aßmus 
92f86ba45SStephan Aßmus #include <Control.h>
102f86ba45SStephan Aßmus #include <GradientLinear.h>
112f86ba45SStephan Aßmus #include <Region.h>
122f86ba45SStephan Aßmus #include <Shape.h>
132f86ba45SStephan Aßmus #include <String.h>
142f86ba45SStephan Aßmus #include <View.h>
152f86ba45SStephan Aßmus 
162f86ba45SStephan Aßmus namespace BPrivate {
172f86ba45SStephan Aßmus 
182f86ba45SStephan Aßmus static const float kEdgeBevelLightTint = 0.59;
192f86ba45SStephan Aßmus static const float kEdgeBevelShadowTint = 1.0735;
202f86ba45SStephan Aßmus 
212f86ba45SStephan Aßmus 
222f86ba45SStephan Aßmus BControlLook::BControlLook()
232f86ba45SStephan Aßmus {
242f86ba45SStephan Aßmus }
252f86ba45SStephan Aßmus 
262f86ba45SStephan Aßmus 
272f86ba45SStephan Aßmus BControlLook::~BControlLook()
282f86ba45SStephan Aßmus {
292f86ba45SStephan Aßmus }
302f86ba45SStephan Aßmus 
312f86ba45SStephan Aßmus 
322f86ba45SStephan Aßmus BAlignment
332f86ba45SStephan Aßmus BControlLook::DefaultLabelAlignment() const
342f86ba45SStephan Aßmus {
352f86ba45SStephan Aßmus 	return BAlignment(B_ALIGN_LEFT, B_ALIGN_VERTICAL_CENTER);
362f86ba45SStephan Aßmus }
372f86ba45SStephan Aßmus 
382f86ba45SStephan Aßmus 
392f86ba45SStephan Aßmus float
402f86ba45SStephan Aßmus BControlLook::DefaultLabelSpacing() const
412f86ba45SStephan Aßmus {
422f86ba45SStephan Aßmus 	return 4.0;//ceilf(be_plain_font->Size() / 4.0);
432f86ba45SStephan Aßmus }
442f86ba45SStephan Aßmus 
452f86ba45SStephan Aßmus 
462f86ba45SStephan Aßmus uint32
472f86ba45SStephan Aßmus BControlLook::Flags(BControl* control) const
482f86ba45SStephan Aßmus {
492f86ba45SStephan Aßmus 	uint32 flags = 0;
502f86ba45SStephan Aßmus 
512f86ba45SStephan Aßmus 	if (!control->IsEnabled())
522f86ba45SStephan Aßmus 		flags |= B_DISABLED;
532f86ba45SStephan Aßmus 
542f86ba45SStephan Aßmus 	if (control->IsFocus())
552f86ba45SStephan Aßmus 		flags |= B_FOCUSED;
562f86ba45SStephan Aßmus 
572f86ba45SStephan Aßmus 	if (control->Value() == B_CONTROL_ON)
582f86ba45SStephan Aßmus 		flags |= B_ACTIVATED;
592f86ba45SStephan Aßmus 
602f86ba45SStephan Aßmus 	return flags;
612f86ba45SStephan Aßmus }
622f86ba45SStephan Aßmus 
632f86ba45SStephan Aßmus 
642f86ba45SStephan Aßmus // #pragma mark -
652f86ba45SStephan Aßmus 
662f86ba45SStephan Aßmus 
672f86ba45SStephan Aßmus void
682f86ba45SStephan Aßmus BControlLook::DrawButtonFrame(BView* view, BRect& rect, const BRect& updateRect,
692f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
702f86ba45SStephan Aßmus {
7113cd46dfSStephan Aßmus 	_DrawButtonFrame(view, rect, updateRect, base, 1.0, 1.0, flags, borders);
722f86ba45SStephan Aßmus }
732f86ba45SStephan Aßmus 
742f86ba45SStephan Aßmus 
752f86ba45SStephan Aßmus void
762f86ba45SStephan Aßmus BControlLook::DrawButtonBackground(BView* view, BRect& rect,
772f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
782f86ba45SStephan Aßmus 	uint32 borders, enum orientation orientation)
792f86ba45SStephan Aßmus {
802f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
812f86ba45SStephan Aßmus 		return;
822f86ba45SStephan Aßmus 
832f86ba45SStephan Aßmus 	// the surface edges
842f86ba45SStephan Aßmus 
852f86ba45SStephan Aßmus 	// colors
862f86ba45SStephan Aßmus 	rgb_color buttonBgColor = tint_color(base, B_LIGHTEN_1_TINT);
872f86ba45SStephan Aßmus 	rgb_color maxLightColor;
882f86ba45SStephan Aßmus 
892f86ba45SStephan Aßmus 	rgb_color bevelColor1;
902f86ba45SStephan Aßmus 	rgb_color bevelColor2;
912f86ba45SStephan Aßmus 
922f86ba45SStephan Aßmus 	if ((flags & B_DISABLED) == 0) {
932f86ba45SStephan Aßmus 		maxLightColor = tint_color(base, 0.2);
942f86ba45SStephan Aßmus 		bevelColor1 = tint_color(base, 1.08);
952f86ba45SStephan Aßmus 		bevelColor2 = base;
962f86ba45SStephan Aßmus 	} else {
972f86ba45SStephan Aßmus 		maxLightColor = tint_color(base, 0.7);
982f86ba45SStephan Aßmus 		bevelColor1 = base;
992f86ba45SStephan Aßmus 		bevelColor2 = buttonBgColor;
1002f86ba45SStephan Aßmus 		buttonBgColor = maxLightColor;
1012f86ba45SStephan Aßmus 	}
1022f86ba45SStephan Aßmus 
1032f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
1042f86ba45SStephan Aßmus 		view->BeginLineArray(4);
1052f86ba45SStephan Aßmus 
1062f86ba45SStephan Aßmus 		bevelColor1 = tint_color(bevelColor1, B_DARKEN_1_TINT);
1072f86ba45SStephan Aßmus 		bevelColor2 = tint_color(bevelColor2, B_DARKEN_1_TINT);
1082f86ba45SStephan Aßmus 
1092f86ba45SStephan Aßmus 		// shadow along left/top borders
1102f86ba45SStephan Aßmus 		if (borders & B_LEFT_BORDER) {
1112f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1122f86ba45SStephan Aßmus 				BPoint(rect.left, rect.bottom), bevelColor1);
1132f86ba45SStephan Aßmus 			rect.left++;
1142f86ba45SStephan Aßmus 		}
1152f86ba45SStephan Aßmus 		if (borders & B_TOP_BORDER) {
1162f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1172f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), bevelColor1);
1182f86ba45SStephan Aßmus 			rect.top++;
1192f86ba45SStephan Aßmus 		}
1202f86ba45SStephan Aßmus 
1212f86ba45SStephan Aßmus 		// softer shadow along left/top borders
1222f86ba45SStephan Aßmus 		if (borders & B_LEFT_BORDER) {
1232f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1242f86ba45SStephan Aßmus 				BPoint(rect.left, rect.bottom), bevelColor2);
1252f86ba45SStephan Aßmus 			rect.left++;
1262f86ba45SStephan Aßmus 		}
1272f86ba45SStephan Aßmus 		if (borders & B_TOP_BORDER) {
1282f86ba45SStephan Aßmus 			view->AddLine(BPoint(rect.left, rect.top),
1292f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), bevelColor2);
1302f86ba45SStephan Aßmus 			rect.top++;
1312f86ba45SStephan Aßmus 		}
1322f86ba45SStephan Aßmus 
1332f86ba45SStephan Aßmus 		view->EndLineArray();
1342f86ba45SStephan Aßmus 	} else {
1352f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
1362f86ba45SStephan Aßmus 			maxLightColor, maxLightColor,
1372f86ba45SStephan Aßmus 			bevelColor1, bevelColor1,
1382f86ba45SStephan Aßmus 			buttonBgColor, buttonBgColor, borders);
1392f86ba45SStephan Aßmus 	}
1402f86ba45SStephan Aßmus 
1412f86ba45SStephan Aßmus 	// the actual surface top
1422f86ba45SStephan Aßmus 
1432f86ba45SStephan Aßmus 	float topTint = 0.49;
1442f86ba45SStephan Aßmus 	float middleTint1 = 0.62;
1452f86ba45SStephan Aßmus 	float middleTint2 = 0.76;
1462f86ba45SStephan Aßmus 	float bottomTint = 0.90;
1472f86ba45SStephan Aßmus 
1482f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
1492f86ba45SStephan Aßmus 		topTint = 1.11;
1502f86ba45SStephan Aßmus 		bottomTint = 1.08;
1512f86ba45SStephan Aßmus 	}
1522f86ba45SStephan Aßmus 
1532f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
1542f86ba45SStephan Aßmus 		topTint = (topTint + B_NO_TINT) / 2;
1552f86ba45SStephan Aßmus 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
1562f86ba45SStephan Aßmus 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
1572f86ba45SStephan Aßmus 		bottomTint = (bottomTint + B_NO_TINT) / 2;
1582f86ba45SStephan Aßmus 	} else if (flags & B_HOVER) {
1592f86ba45SStephan Aßmus 		static const float kHoverTintFactor = 0.85;
1602f86ba45SStephan Aßmus 		topTint *= kHoverTintFactor;
1612f86ba45SStephan Aßmus 		middleTint1 *= kHoverTintFactor;
1622f86ba45SStephan Aßmus 		middleTint2 *= kHoverTintFactor;
1632f86ba45SStephan Aßmus 		bottomTint *= kHoverTintFactor;
1642f86ba45SStephan Aßmus 	}
1652f86ba45SStephan Aßmus 
1662f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
1672f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, topTint, bottomTint, orientation);
1682f86ba45SStephan Aßmus 	} else {
1692f86ba45SStephan Aßmus 		_FillGlossyGradient(view, rect, base, topTint, middleTint1,
1702f86ba45SStephan Aßmus 			middleTint2, bottomTint, orientation);
1712f86ba45SStephan Aßmus 	}
1722f86ba45SStephan Aßmus }
1732f86ba45SStephan Aßmus 
1742f86ba45SStephan Aßmus 
1752f86ba45SStephan Aßmus void
1762f86ba45SStephan Aßmus BControlLook::DrawMenuBarBackground(BView* view, BRect& rect,
177*1a72cb41SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
178*1a72cb41SStephan Aßmus 	uint32 borders)
1792f86ba45SStephan Aßmus {
1802f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
1812f86ba45SStephan Aßmus 		return;
1822f86ba45SStephan Aßmus 
1832f86ba45SStephan Aßmus 	// the surface edges
1842f86ba45SStephan Aßmus 
1852f86ba45SStephan Aßmus 	// colors
186*1a72cb41SStephan Aßmus 	float topTint;
187*1a72cb41SStephan Aßmus 	float bottomTint;
188*1a72cb41SStephan Aßmus 
189*1a72cb41SStephan Aßmus 	if (flags & B_ACTIVATED) {
190*1a72cb41SStephan Aßmus 		rgb_color bevelColor1 = tint_color(base, 1.40);
191*1a72cb41SStephan Aßmus 		rgb_color bevelColor2 = tint_color(base, 1.25);
192*1a72cb41SStephan Aßmus 
193*1a72cb41SStephan Aßmus 		topTint = 1.25;
194*1a72cb41SStephan Aßmus 		bottomTint = 1.20;
1952f86ba45SStephan Aßmus 
1962f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
197*1a72cb41SStephan Aßmus 			bevelColor1, bevelColor1,
198*1a72cb41SStephan Aßmus 			bevelColor2, bevelColor2,
199*1a72cb41SStephan Aßmus 			borders & B_TOP_BORDER);
200*1a72cb41SStephan Aßmus 	} else {
201*1a72cb41SStephan Aßmus 		rgb_color cornerColor = tint_color(base, 0.9);
202*1a72cb41SStephan Aßmus 		rgb_color bevelColorTop = tint_color(base, 0.5);
203*1a72cb41SStephan Aßmus 		rgb_color bevelColorLeft = tint_color(base, 0.7);
204*1a72cb41SStephan Aßmus 		rgb_color bevelColorRightBottom = tint_color(base, 1.08);
205*1a72cb41SStephan Aßmus 
206*1a72cb41SStephan Aßmus 		topTint = 0.69;
207*1a72cb41SStephan Aßmus 		bottomTint = 1.03;
208*1a72cb41SStephan Aßmus 
209*1a72cb41SStephan Aßmus 		_DrawFrame(view, rect,
210*1a72cb41SStephan Aßmus 			bevelColorLeft, bevelColorTop,
211*1a72cb41SStephan Aßmus 			bevelColorRightBottom, bevelColorRightBottom,
2122f86ba45SStephan Aßmus 			cornerColor, cornerColor,
2132f86ba45SStephan Aßmus 			borders);
214*1a72cb41SStephan Aßmus 	}
2152f86ba45SStephan Aßmus 
2162f86ba45SStephan Aßmus 	// the actual surface top
2172f86ba45SStephan Aßmus 
2182f86ba45SStephan Aßmus 	_FillGradient(view, rect, base, topTint, bottomTint);
2192f86ba45SStephan Aßmus }
2202f86ba45SStephan Aßmus 
2212f86ba45SStephan Aßmus 
2222f86ba45SStephan Aßmus void
22313cd46dfSStephan Aßmus BControlLook::DrawMenuFieldFrame(BView* view, BRect& rect, const BRect& updateRect,
22413cd46dfSStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
22513cd46dfSStephan Aßmus {
22613cd46dfSStephan Aßmus 	_DrawButtonFrame(view, rect, updateRect, base, 0.6, 1.0, flags, borders);
22713cd46dfSStephan Aßmus }
22813cd46dfSStephan Aßmus 
22913cd46dfSStephan Aßmus 
23013cd46dfSStephan Aßmus void
2312f86ba45SStephan Aßmus BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect,
2322f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, bool popupIndicator,
2332f86ba45SStephan Aßmus 	uint32 flags)
2342f86ba45SStephan Aßmus {
2352f86ba45SStephan Aßmus 	if (popupIndicator) {
2362f86ba45SStephan Aßmus 		BRect leftRect(rect);
2372f86ba45SStephan Aßmus 		leftRect.right -= 10;
2382f86ba45SStephan Aßmus 
2392f86ba45SStephan Aßmus 		BRect rightRect(rect);
2402f86ba45SStephan Aßmus 		rightRect.left = rightRect.right - 9;
2412f86ba45SStephan Aßmus 
2422f86ba45SStephan Aßmus 		DrawMenuFieldBackground(view, leftRect, updateRect, base, flags,
2432f86ba45SStephan Aßmus 			B_LEFT_BORDER | B_TOP_BORDER | B_BOTTOM_BORDER);
2442f86ba45SStephan Aßmus 
2452f86ba45SStephan Aßmus 		rgb_color indicatorBase;
2462f86ba45SStephan Aßmus 		rgb_color markColor;
2472f86ba45SStephan Aßmus 		if (flags & B_DISABLED) {
2482f86ba45SStephan Aßmus 			indicatorBase = tint_color(base, 1.05);
24913cd46dfSStephan Aßmus 			markColor = tint_color(base, 1.35);
2502f86ba45SStephan Aßmus 		} else {
25113cd46dfSStephan Aßmus 			indicatorBase = tint_color(base, 1.12);
25213cd46dfSStephan Aßmus 			markColor = tint_color(base, 1.65);
2532f86ba45SStephan Aßmus 		}
2542f86ba45SStephan Aßmus 
2552f86ba45SStephan Aßmus 		DrawMenuFieldBackground(view, rightRect, updateRect, indicatorBase,
2562f86ba45SStephan Aßmus 			flags, B_RIGHT_BORDER | B_TOP_BORDER | B_BOTTOM_BORDER);
2572f86ba45SStephan Aßmus 
2582f86ba45SStephan Aßmus 		// popup marker
2592f86ba45SStephan Aßmus 		BPoint center(roundf((rightRect.left + rightRect.right) / 2.0),
2602f86ba45SStephan Aßmus 					  roundf((rightRect.top + rightRect.bottom) / 2.0));
2612f86ba45SStephan Aßmus 		BPoint triangle[3];
2622f86ba45SStephan Aßmus 		triangle[0] = center + BPoint(-2.5, -0.5);
2632f86ba45SStephan Aßmus 		triangle[1] = center + BPoint(2.5, -0.5);
2642f86ba45SStephan Aßmus 		triangle[2] = center + BPoint(0.0, 2.0);
2652f86ba45SStephan Aßmus 
2662f86ba45SStephan Aßmus 		uint32 viewFlags = view->Flags();
2672f86ba45SStephan Aßmus 		view->SetFlags(viewFlags | B_SUBPIXEL_PRECISE);
2682f86ba45SStephan Aßmus 
2692f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
2702f86ba45SStephan Aßmus 		view->FillTriangle(triangle[0], triangle[1], triangle[2]);
2712f86ba45SStephan Aßmus 
2722f86ba45SStephan Aßmus 		view->SetFlags(viewFlags);
2732f86ba45SStephan Aßmus 
2742f86ba45SStephan Aßmus 		rect = leftRect;
2752f86ba45SStephan Aßmus 	} else {
2762f86ba45SStephan Aßmus 		DrawMenuFieldBackground(view, rect, updateRect, base, flags);
2772f86ba45SStephan Aßmus 	}
2782f86ba45SStephan Aßmus }
2792f86ba45SStephan Aßmus 
2802f86ba45SStephan Aßmus void
2812f86ba45SStephan Aßmus BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect,
2822f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
2832f86ba45SStephan Aßmus 	uint32 borders)
2842f86ba45SStephan Aßmus {
2852f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
2862f86ba45SStephan Aßmus 		return;
2872f86ba45SStephan Aßmus 
2882f86ba45SStephan Aßmus 	// the surface edges
2892f86ba45SStephan Aßmus 
2902f86ba45SStephan Aßmus 	// colors
2912f86ba45SStephan Aßmus 	rgb_color cornerColor = tint_color(base, 0.85);
2922f86ba45SStephan Aßmus 	rgb_color bevelColor1 = tint_color(base, 0.3);
2932f86ba45SStephan Aßmus 	rgb_color bevelColor2 = tint_color(base, 0.5);
2942f86ba45SStephan Aßmus 	rgb_color bevelColor3 = tint_color(base, 1.03);
2952f86ba45SStephan Aßmus 
2962f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
2972f86ba45SStephan Aßmus 		cornerColor = tint_color(base, 0.8);
2982f86ba45SStephan Aßmus 		bevelColor1 = tint_color(base, 0.7);
2992f86ba45SStephan Aßmus 		bevelColor2 = tint_color(base, 0.8);
3002f86ba45SStephan Aßmus 		bevelColor3 = tint_color(base, 1.01);
3012f86ba45SStephan Aßmus 	} else {
3022f86ba45SStephan Aßmus 		cornerColor = tint_color(base, 0.85);
3032f86ba45SStephan Aßmus 		bevelColor1 = tint_color(base, 0.3);
3042f86ba45SStephan Aßmus 		bevelColor2 = tint_color(base, 0.5);
3052f86ba45SStephan Aßmus 		bevelColor3 = tint_color(base, 1.03);
3062f86ba45SStephan Aßmus 	}
3072f86ba45SStephan Aßmus 
3082f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
3092f86ba45SStephan Aßmus 		bevelColor2, bevelColor1,
3102f86ba45SStephan Aßmus 		bevelColor3, bevelColor3,
3112f86ba45SStephan Aßmus 		cornerColor, cornerColor,
3122f86ba45SStephan Aßmus 		borders);
3132f86ba45SStephan Aßmus 
3142f86ba45SStephan Aßmus 	// the actual surface top
3152f86ba45SStephan Aßmus 
3162f86ba45SStephan Aßmus 	float topTint = 0.49;
3172f86ba45SStephan Aßmus 	float middleTint1 = 0.62;
3182f86ba45SStephan Aßmus 	float middleTint2 = 0.76;
3192f86ba45SStephan Aßmus 	float bottomTint = 0.90;
3202f86ba45SStephan Aßmus 
3212f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
3222f86ba45SStephan Aßmus 		topTint = (topTint + B_NO_TINT) / 2;
3232f86ba45SStephan Aßmus 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
3242f86ba45SStephan Aßmus 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
3252f86ba45SStephan Aßmus 		bottomTint = (bottomTint + B_NO_TINT) / 2;
3262f86ba45SStephan Aßmus 	} else if (flags & B_HOVER) {
3272f86ba45SStephan Aßmus 		static const float kHoverTintFactor = 0.85;
3282f86ba45SStephan Aßmus 		topTint *= kHoverTintFactor;
3292f86ba45SStephan Aßmus 		middleTint1 *= kHoverTintFactor;
3302f86ba45SStephan Aßmus 		middleTint2 *= kHoverTintFactor;
3312f86ba45SStephan Aßmus 		bottomTint *= kHoverTintFactor;
3322f86ba45SStephan Aßmus 	}
3332f86ba45SStephan Aßmus 
3342f86ba45SStephan Aßmus 	_FillGlossyGradient(view, rect, base, topTint, middleTint1,
3352f86ba45SStephan Aßmus 		middleTint2, bottomTint);
3362f86ba45SStephan Aßmus }
3372f86ba45SStephan Aßmus 
3382f86ba45SStephan Aßmus void
3392f86ba45SStephan Aßmus BControlLook::DrawMenuBackground(BView* view, BRect& rect,
3402f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
3412f86ba45SStephan Aßmus 	uint32 borders)
3422f86ba45SStephan Aßmus {
3432f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
3442f86ba45SStephan Aßmus 		return;
3452f86ba45SStephan Aßmus 
3462f86ba45SStephan Aßmus 	// the surface edges
3472f86ba45SStephan Aßmus 
3482f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
3492f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
3502f86ba45SStephan Aßmus 	rgb_color background = tint_color(base, 0.75);
3512f86ba45SStephan Aßmus 
3522f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
3532f86ba45SStephan Aßmus 		bevelLightColor = tint_color(background, 0.80);
3542f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(background, 1.07);
3552f86ba45SStephan Aßmus 	} else {
3562f86ba45SStephan Aßmus 		bevelLightColor = tint_color(background, 0.6);
3572f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(background, 1.12);
3582f86ba45SStephan Aßmus 	}
3592f86ba45SStephan Aßmus 
3602f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
3612f86ba45SStephan Aßmus 		bevelLightColor, bevelLightColor,
3622f86ba45SStephan Aßmus 		bevelShadowColor, bevelShadowColor,
3632f86ba45SStephan Aßmus 		borders);
3642f86ba45SStephan Aßmus 
3652f86ba45SStephan Aßmus 	// the actual surface top
3662f86ba45SStephan Aßmus 
3672f86ba45SStephan Aßmus 	view->SetHighColor(background);
3682f86ba45SStephan Aßmus 	view->FillRect(rect);
3692f86ba45SStephan Aßmus }
3702f86ba45SStephan Aßmus 
3712f86ba45SStephan Aßmus 
3722f86ba45SStephan Aßmus void
3732f86ba45SStephan Aßmus BControlLook::DrawMenuItemBackground(BView* view, BRect& rect,
3742f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
3752f86ba45SStephan Aßmus 	uint32 borders)
3762f86ba45SStephan Aßmus {
3772f86ba45SStephan Aßmus 	if (!rect.IsValid() || !updateRect.Intersects(rect))
3782f86ba45SStephan Aßmus 		return;
3792f86ba45SStephan Aßmus 
3802f86ba45SStephan Aßmus 	// the surface edges
3812f86ba45SStephan Aßmus 
3822f86ba45SStephan Aßmus 	float topTint;
3832f86ba45SStephan Aßmus 	float bottomTint;
3842f86ba45SStephan Aßmus 	rgb_color selectedColor = base;
3852f86ba45SStephan Aßmus 
3862f86ba45SStephan Aßmus 	if (flags & B_ACTIVATED) {
3872f86ba45SStephan Aßmus 		topTint = 0.9;
3882f86ba45SStephan Aßmus 		bottomTint = 1.05;
3892f86ba45SStephan Aßmus 		selectedColor = tint_color(base, 1.26);
3902f86ba45SStephan Aßmus 	} else if (flags & B_DISABLED) {
3912f86ba45SStephan Aßmus 		topTint = 0.80;
3922f86ba45SStephan Aßmus 		bottomTint = 1.07;
3932f86ba45SStephan Aßmus 	} else {
3942f86ba45SStephan Aßmus 		topTint = 0.6;
3952f86ba45SStephan Aßmus 		bottomTint = 1.12;
3962f86ba45SStephan Aßmus 	}
3972f86ba45SStephan Aßmus 
3982f86ba45SStephan Aßmus 	rgb_color bevelLightColor = tint_color(selectedColor, topTint);
3992f86ba45SStephan Aßmus 	rgb_color bevelShadowColor = tint_color(selectedColor, bottomTint);
4002f86ba45SStephan Aßmus 
4012f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
4022f86ba45SStephan Aßmus 		bevelLightColor, bevelLightColor,
4032f86ba45SStephan Aßmus 		bevelShadowColor, bevelShadowColor,
4042f86ba45SStephan Aßmus 		borders);
4052f86ba45SStephan Aßmus 
4062f86ba45SStephan Aßmus 	// the actual surface top
4072f86ba45SStephan Aßmus 
4082f86ba45SStephan Aßmus 	view->SetLowColor(selectedColor);
4092f86ba45SStephan Aßmus //	_FillGradient(view, rect, selectedColor, topTint, bottomTint);
4102f86ba45SStephan Aßmus 	_FillGradient(view, rect, selectedColor, bottomTint, topTint);
4112f86ba45SStephan Aßmus }
4122f86ba45SStephan Aßmus 
4132f86ba45SStephan Aßmus 
4142f86ba45SStephan Aßmus void
4152f86ba45SStephan Aßmus BControlLook::DrawStatusBar(BView* view, BRect& rect, const BRect& updateRect,
4162f86ba45SStephan Aßmus 	const rgb_color& base, const rgb_color& barColor, float progressPosition)
4172f86ba45SStephan Aßmus {
4182f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
4192f86ba45SStephan Aßmus 		return;
4202f86ba45SStephan Aßmus 
4212f86ba45SStephan Aßmus 	_DrawOuterResessedFrame(view, rect, base, 0.6);
4222f86ba45SStephan Aßmus 
4232f86ba45SStephan Aßmus 	// colors
4242f86ba45SStephan Aßmus 	rgb_color dark1BorderColor = tint_color(base, 1.3);
4252f86ba45SStephan Aßmus 	rgb_color dark2BorderColor = tint_color(base, 1.2);
4262f86ba45SStephan Aßmus 	rgb_color dark1FilledBorderColor = tint_color(barColor, 1.20);
4272f86ba45SStephan Aßmus 	rgb_color dark2FilledBorderColor = tint_color(barColor, 1.45);
4282f86ba45SStephan Aßmus 
4292f86ba45SStephan Aßmus 	BRect filledRect(rect);
4302f86ba45SStephan Aßmus 	filledRect.right = progressPosition - 1;
4312f86ba45SStephan Aßmus 
4322f86ba45SStephan Aßmus 	BRect nonfilledRect(rect);
4332f86ba45SStephan Aßmus 	nonfilledRect.left = progressPosition;
4342f86ba45SStephan Aßmus 
4352f86ba45SStephan Aßmus 	bool filledSurface = filledRect.Width() > 0;
4362f86ba45SStephan Aßmus 	bool nonfilledSurface = nonfilledRect.Width() > 0;
4372f86ba45SStephan Aßmus 
4382f86ba45SStephan Aßmus 	if (filledSurface) {
4392f86ba45SStephan Aßmus 		_DrawFrame(view, filledRect,
4402f86ba45SStephan Aßmus 			dark1FilledBorderColor, dark1FilledBorderColor,
4412f86ba45SStephan Aßmus 			dark2FilledBorderColor, dark2FilledBorderColor);
4422f86ba45SStephan Aßmus 
4432f86ba45SStephan Aßmus 		_FillGlossyGradient(view, filledRect, barColor, 0.55, 0.68, 0.76, 0.90);
4442f86ba45SStephan Aßmus 	}
4452f86ba45SStephan Aßmus 
4462f86ba45SStephan Aßmus 	if (nonfilledSurface) {
4472f86ba45SStephan Aßmus 		_DrawFrame(view, nonfilledRect, dark1BorderColor, dark1BorderColor,
4482f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor,
4492f86ba45SStephan Aßmus 			B_TOP_BORDER | B_BOTTOM_BORDER | B_RIGHT_BORDER);
4502f86ba45SStephan Aßmus 
4512f86ba45SStephan Aßmus 		if (nonfilledRect.left < nonfilledRect.right) {
4522f86ba45SStephan Aßmus 			// shadow from fill bar, or left border
4532f86ba45SStephan Aßmus 			rgb_color leftBorder = dark1BorderColor;
4542f86ba45SStephan Aßmus 			if (filledSurface)
4552f86ba45SStephan Aßmus 				leftBorder = tint_color(base, 0.50);
4562f86ba45SStephan Aßmus 			view->SetHighColor(leftBorder);
4572f86ba45SStephan Aßmus 			view->StrokeLine(nonfilledRect.LeftTop(),
4582f86ba45SStephan Aßmus 				nonfilledRect.LeftBottom());
4592f86ba45SStephan Aßmus 			nonfilledRect.left++;
4602f86ba45SStephan Aßmus 		}
4612f86ba45SStephan Aßmus 
4622f86ba45SStephan Aßmus 		_FillGradient(view, nonfilledRect, base, 0.25, 0.06);
4632f86ba45SStephan Aßmus 	}
4642f86ba45SStephan Aßmus }
4652f86ba45SStephan Aßmus 
4662f86ba45SStephan Aßmus 
4672f86ba45SStephan Aßmus void
4682f86ba45SStephan Aßmus BControlLook::DrawCheckBox(BView* view, BRect& rect, const BRect& updateRect,
4692f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags)
4702f86ba45SStephan Aßmus {
4712f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
4722f86ba45SStephan Aßmus 		return;
4732f86ba45SStephan Aßmus 
4742f86ba45SStephan Aßmus 	rgb_color dark1BorderColor;
4752f86ba45SStephan Aßmus 	rgb_color dark2BorderColor;
4762f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
4772f86ba45SStephan Aßmus 
4782f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
4792f86ba45SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.0);
4802f86ba45SStephan Aßmus 
4812f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.15);
4822f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.15);
4832f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
4842f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.50);
4852f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.48);
4862f86ba45SStephan Aßmus 
4872f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
4882f86ba45SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
4892f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor);
4902f86ba45SStephan Aßmus 
4912f86ba45SStephan Aßmus 		dark2BorderColor = dark1BorderColor;
4922f86ba45SStephan Aßmus 	} else {
4932f86ba45SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.6);
4942f86ba45SStephan Aßmus 
4952f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.40);
4962f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.38);
4972f86ba45SStephan Aßmus 	}
4982f86ba45SStephan Aßmus 
4992f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
5002f86ba45SStephan Aßmus 		dark1BorderColor = navigationColor;
5012f86ba45SStephan Aßmus 		dark2BorderColor = navigationColor;
5022f86ba45SStephan Aßmus 	}
5032f86ba45SStephan Aßmus 
5042f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
5052f86ba45SStephan Aßmus 		dark1BorderColor, dark1BorderColor,
5062f86ba45SStephan Aßmus 		dark2BorderColor, dark2BorderColor);
5072f86ba45SStephan Aßmus 
5082f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
5092f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, 0.4, 0.2);
5102f86ba45SStephan Aßmus 	} else {
5112f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, 0.15, 0.0);
5122f86ba45SStephan Aßmus 	}
5132f86ba45SStephan Aßmus 
5142f86ba45SStephan Aßmus 	rgb_color markColor;
5152f86ba45SStephan Aßmus 	if (_RadioButtonAndCheckBoxMarkColor(base, markColor, flags)) {
5162f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
5172f86ba45SStephan Aßmus 
5182f86ba45SStephan Aßmus 		rect.InsetBy(2, 2);
5192f86ba45SStephan Aßmus 		view->SetPenSize(max_c(1.0, ceilf(rect.Width() / 3.5)));
5202f86ba45SStephan Aßmus 		view->SetDrawingMode(B_OP_OVER);
5212f86ba45SStephan Aßmus 
5222f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.RightBottom());
5232f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftBottom(), rect.RightTop());
5242f86ba45SStephan Aßmus 	}
5252f86ba45SStephan Aßmus }
5262f86ba45SStephan Aßmus 
5272f86ba45SStephan Aßmus 
5282f86ba45SStephan Aßmus void
5292f86ba45SStephan Aßmus BControlLook::DrawRadioButton(BView* view, BRect& rect, const BRect& updateRect,
5302f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags)
5312f86ba45SStephan Aßmus {
5322f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
5332f86ba45SStephan Aßmus 		return;
5342f86ba45SStephan Aßmus 
5352f86ba45SStephan Aßmus 	rgb_color borderColor;
5362f86ba45SStephan Aßmus 	rgb_color bevelLight;
5372f86ba45SStephan Aßmus 	rgb_color bevelShadow;
5382f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
5392f86ba45SStephan Aßmus 
5402f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
5412f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.15);
5422f86ba45SStephan Aßmus 		bevelLight = base;
5432f86ba45SStephan Aßmus 		bevelShadow = base;
5442f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
5452f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.50);
5462f86ba45SStephan Aßmus 		bevelLight = borderColor;
5472f86ba45SStephan Aßmus 		bevelShadow = borderColor;
5482f86ba45SStephan Aßmus 	} else {
5492f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.45);
5502f86ba45SStephan Aßmus 		bevelLight = tint_color(base, 0.55);
5512f86ba45SStephan Aßmus 		bevelShadow = tint_color(base, 1.11);
5522f86ba45SStephan Aßmus 	}
5532f86ba45SStephan Aßmus 
5542f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
5552f86ba45SStephan Aßmus 		borderColor = navigationColor;
5562f86ba45SStephan Aßmus 	}
5572f86ba45SStephan Aßmus 
5582f86ba45SStephan Aßmus 	BGradientLinear bevelGradient;
5592f86ba45SStephan Aßmus 	bevelGradient.AddColor(bevelShadow, 0);
5602f86ba45SStephan Aßmus 	bevelGradient.AddColor(bevelLight, 255);
5612f86ba45SStephan Aßmus 	bevelGradient.SetStart(rect.LeftTop());
5622f86ba45SStephan Aßmus 	bevelGradient.SetEnd(rect.RightBottom());
5632f86ba45SStephan Aßmus 
5642f86ba45SStephan Aßmus 	view->FillEllipse(rect, bevelGradient);
5652f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
5662f86ba45SStephan Aßmus 
5672f86ba45SStephan Aßmus 	bevelGradient.MakeEmpty();
5682f86ba45SStephan Aßmus 	bevelGradient.AddColor(borderColor, 0);
5692f86ba45SStephan Aßmus 	bevelGradient.AddColor(tint_color(borderColor, 0.8), 255);
5702f86ba45SStephan Aßmus 	view->FillEllipse(rect, bevelGradient);
5712f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
5722f86ba45SStephan Aßmus 
5732f86ba45SStephan Aßmus 	float topTint;
5742f86ba45SStephan Aßmus 	float bottomTint;
5752f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
5762f86ba45SStephan Aßmus 		topTint = 0.4;
5772f86ba45SStephan Aßmus 		bottomTint = 0.2;
5782f86ba45SStephan Aßmus 	} else {
5792f86ba45SStephan Aßmus 		topTint = 0.15;
5802f86ba45SStephan Aßmus 		bottomTint = 0.0;
5812f86ba45SStephan Aßmus 	}
5822f86ba45SStephan Aßmus 
5832f86ba45SStephan Aßmus 	BGradientLinear gradient;
5842f86ba45SStephan Aßmus 	_MakeGradient(gradient, rect, base, topTint, bottomTint);
5852f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
5862f86ba45SStephan Aßmus 
5872f86ba45SStephan Aßmus 	rgb_color markColor;
5882f86ba45SStephan Aßmus 	if (_RadioButtonAndCheckBoxMarkColor(base, markColor, flags)) {
5892f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
5902f86ba45SStephan Aßmus 		rect.InsetBy(3, 3);
5912f86ba45SStephan Aßmus 		view->FillEllipse(rect);
5922f86ba45SStephan Aßmus 	}
5932f86ba45SStephan Aßmus }
5942f86ba45SStephan Aßmus 
5952f86ba45SStephan Aßmus 
5962f86ba45SStephan Aßmus void
5972f86ba45SStephan Aßmus BControlLook::DrawScrollBarBackground(BView* view, BRect& rect1, BRect& rect2,
5982f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
5992f86ba45SStephan Aßmus 	enum orientation orientation)
6002f86ba45SStephan Aßmus {
6012f86ba45SStephan Aßmus 	DrawScrollBarBackground(view, rect1, updateRect, base, flags, orientation);
6022f86ba45SStephan Aßmus 	DrawScrollBarBackground(view, rect2, updateRect, base, flags, orientation);
6032f86ba45SStephan Aßmus }
6042f86ba45SStephan Aßmus 
6052f86ba45SStephan Aßmus void
6062f86ba45SStephan Aßmus BControlLook::DrawScrollBarBackground(BView* view, BRect& rect,
6072f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
6082f86ba45SStephan Aßmus 	enum orientation orientation)
6092f86ba45SStephan Aßmus {
6102f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
6112f86ba45SStephan Aßmus 		return;
6122f86ba45SStephan Aßmus 
6132f86ba45SStephan Aßmus 	float gradient1Tint;
6142f86ba45SStephan Aßmus 	float gradient2Tint;
6152f86ba45SStephan Aßmus 	float darkEdge1Tint;
6162f86ba45SStephan Aßmus 	float darkEdge2Tint;
6172f86ba45SStephan Aßmus 	float shadowTint;
6182f86ba45SStephan Aßmus 
6192f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
6202f86ba45SStephan Aßmus 		gradient1Tint = 0.9;
6212f86ba45SStephan Aßmus 		gradient2Tint = 0.8;
6222f86ba45SStephan Aßmus 		darkEdge1Tint = B_DARKEN_2_TINT;
6232f86ba45SStephan Aßmus 		darkEdge2Tint = B_DARKEN_2_TINT;
6242f86ba45SStephan Aßmus 		shadowTint = gradient1Tint;
6252f86ba45SStephan Aßmus 	} else {
6262f86ba45SStephan Aßmus 		gradient1Tint = 1.10;
6272f86ba45SStephan Aßmus 		gradient2Tint = 1.05;
6282f86ba45SStephan Aßmus 		darkEdge1Tint = B_DARKEN_3_TINT;
6292f86ba45SStephan Aßmus 		darkEdge2Tint = B_DARKEN_2_TINT;
6302f86ba45SStephan Aßmus 		shadowTint = gradient1Tint;
6312f86ba45SStephan Aßmus 	}
6322f86ba45SStephan Aßmus 
6332f86ba45SStephan Aßmus 	rgb_color darkEdge1 = tint_color(base, darkEdge1Tint);
6342f86ba45SStephan Aßmus 	rgb_color darkEdge2 = tint_color(base, darkEdge2Tint);
6352f86ba45SStephan Aßmus 	rgb_color shadow = tint_color(base, shadowTint);
6362f86ba45SStephan Aßmus 
6372f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
6382f86ba45SStephan Aßmus 		// dark vertical line on left edge
6392f86ba45SStephan Aßmus 		if (rect.Width() > 0) {
6402f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge1);
6412f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
6422f86ba45SStephan Aßmus 			rect.left++;
6432f86ba45SStephan Aßmus 		}
6442f86ba45SStephan Aßmus 		// dark vertical line on right edge
6452f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6462f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge2);
6472f86ba45SStephan Aßmus 			view->StrokeLine(rect.RightTop(), rect.RightBottom());
6482f86ba45SStephan Aßmus 			rect.right--;
6492f86ba45SStephan Aßmus 		}
6502f86ba45SStephan Aßmus 		// vertical shadow line after left edge
6512f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6522f86ba45SStephan Aßmus 			view->SetHighColor(shadow);
6532f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
6542f86ba45SStephan Aßmus 			rect.left++;
6552f86ba45SStephan Aßmus 		}
6562f86ba45SStephan Aßmus 		// fill
6572f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6582f86ba45SStephan Aßmus 			_FillGradient(view, rect, base, gradient1Tint, gradient2Tint,
6592f86ba45SStephan Aßmus 				orientation);
6602f86ba45SStephan Aßmus 		}
6612f86ba45SStephan Aßmus 	} else {
6622f86ba45SStephan Aßmus 		// dark vertical line on top edge
6632f86ba45SStephan Aßmus 		if (rect.Height() > 0) {
6642f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge1);
6652f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.RightTop());
6662f86ba45SStephan Aßmus 			rect.top++;
6672f86ba45SStephan Aßmus 		}
6682f86ba45SStephan Aßmus 		// dark vertical line on bottom edge
6692f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6702f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge2);
6712f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftBottom(), rect.RightBottom());
6722f86ba45SStephan Aßmus 			rect.bottom--;
6732f86ba45SStephan Aßmus 		}
6742f86ba45SStephan Aßmus 		// horizontal shadow line after top edge
6752f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6762f86ba45SStephan Aßmus 			view->SetHighColor(shadow);
6772f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.RightTop());
6782f86ba45SStephan Aßmus 			rect.top++;
6792f86ba45SStephan Aßmus 		}
6802f86ba45SStephan Aßmus 		// fill
6812f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6822f86ba45SStephan Aßmus 			_FillGradient(view, rect, base, gradient1Tint, gradient2Tint,
6832f86ba45SStephan Aßmus 				orientation);
6842f86ba45SStephan Aßmus 		}
6852f86ba45SStephan Aßmus 	}
6862f86ba45SStephan Aßmus }
6872f86ba45SStephan Aßmus 
6882f86ba45SStephan Aßmus 
6892f86ba45SStephan Aßmus rgb_color
6902f86ba45SStephan Aßmus BControlLook::SliderBarColor(const rgb_color& base)
6912f86ba45SStephan Aßmus {
6922f86ba45SStephan Aßmus 	return tint_color(ui_color(B_PANEL_BACKGROUND_COLOR), B_DARKEN_1_TINT);
6932f86ba45SStephan Aßmus }
6942f86ba45SStephan Aßmus 
6952f86ba45SStephan Aßmus 
6962f86ba45SStephan Aßmus void
6972f86ba45SStephan Aßmus BControlLook::DrawSliderBar(BView* view, BRect rect, const BRect& updateRect,
6982f86ba45SStephan Aßmus 	const rgb_color& base, rgb_color leftFillColor, rgb_color rightFillColor,
6992f86ba45SStephan Aßmus 	float sliderScale, uint32 flags, enum orientation orientation)
7002f86ba45SStephan Aßmus {
7012f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
7022f86ba45SStephan Aßmus 		return;
7032f86ba45SStephan Aßmus 
7042f86ba45SStephan Aßmus 	// separate the bar in two sides
7052f86ba45SStephan Aßmus 	float sliderPosition;
7062f86ba45SStephan Aßmus 	BRect leftBarSide = rect;
7072f86ba45SStephan Aßmus 	BRect rightBarSide = rect;
7082f86ba45SStephan Aßmus 
7092f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
7102f86ba45SStephan Aßmus 		sliderPosition = floorf(rect.left + 2 + (rect.Width() - 2)
7112f86ba45SStephan Aßmus 			* sliderScale);
7122f86ba45SStephan Aßmus 		leftBarSide.right = sliderPosition - 1;
7132f86ba45SStephan Aßmus 		rightBarSide.left = sliderPosition;
7142f86ba45SStephan Aßmus 	} else {
7152f86ba45SStephan Aßmus 		sliderPosition = floorf(rect.top + 2 + (rect.Height() - 2)
7162f86ba45SStephan Aßmus 			* sliderScale);
7172f86ba45SStephan Aßmus 		leftBarSide.bottom = sliderPosition - 1;
7182f86ba45SStephan Aßmus 		rightBarSide.top = sliderPosition;
7192f86ba45SStephan Aßmus 	}
7202f86ba45SStephan Aßmus 
7212f86ba45SStephan Aßmus 	// fill the background for the corners, exclude the middle bar for now
7222f86ba45SStephan Aßmus 	BRegion region(rect);
7232f86ba45SStephan Aßmus 	region.Exclude(rightBarSide);
7242f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
7252f86ba45SStephan Aßmus 
7262f86ba45SStephan Aßmus 	view->PushState();
7272f86ba45SStephan Aßmus 
7282f86ba45SStephan Aßmus 	DrawSliderBar(view, rect, updateRect, base, leftFillColor, flags,
7292f86ba45SStephan Aßmus 		orientation);
7302f86ba45SStephan Aßmus 
7312f86ba45SStephan Aßmus 	view->PopState();
7322f86ba45SStephan Aßmus 
7332f86ba45SStephan Aßmus 	region.Set(rect);
7342f86ba45SStephan Aßmus 	region.Exclude(leftBarSide);
7352f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
7362f86ba45SStephan Aßmus 
7372f86ba45SStephan Aßmus 	view->PushState();
7382f86ba45SStephan Aßmus 
7392f86ba45SStephan Aßmus 	DrawSliderBar(view, rect, updateRect, base, rightFillColor, flags,
7402f86ba45SStephan Aßmus 		orientation);
7412f86ba45SStephan Aßmus 
7422f86ba45SStephan Aßmus 	view->PopState();
7432f86ba45SStephan Aßmus 
7442f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
7452f86ba45SStephan Aßmus }
7462f86ba45SStephan Aßmus 
7472f86ba45SStephan Aßmus 
7482f86ba45SStephan Aßmus void
7492f86ba45SStephan Aßmus BControlLook::DrawSliderBar(BView* view, BRect rect, const BRect& updateRect,
7502f86ba45SStephan Aßmus 	const rgb_color& base, rgb_color fillColor, uint32 flags,
7512f86ba45SStephan Aßmus 	enum orientation orientation)
7522f86ba45SStephan Aßmus {
7532f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
7542f86ba45SStephan Aßmus 		return;
7552f86ba45SStephan Aßmus 
7562f86ba45SStephan Aßmus 	// separate the rect into corners
7572f86ba45SStephan Aßmus 	BRect leftCorner(rect);
7582f86ba45SStephan Aßmus 	BRect rightCorner(rect);
7592f86ba45SStephan Aßmus 	BRect barRect(rect);
7602f86ba45SStephan Aßmus 
7612f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
7622f86ba45SStephan Aßmus 		leftCorner.right = leftCorner.left + leftCorner.Height();
7632f86ba45SStephan Aßmus 		rightCorner.left = rightCorner.right - rightCorner.Height();
7642f86ba45SStephan Aßmus 		barRect.left += ceilf(barRect.Height() / 2);
7652f86ba45SStephan Aßmus 		barRect.right -= ceilf(barRect.Height() / 2);
7662f86ba45SStephan Aßmus 	} else {
7672f86ba45SStephan Aßmus 		leftCorner.bottom = leftCorner.top + leftCorner.Width();
7682f86ba45SStephan Aßmus 		rightCorner.top = rightCorner.bottom - rightCorner.Width();
7692f86ba45SStephan Aßmus 		barRect.top += ceilf(barRect.Width() / 2);
7702f86ba45SStephan Aßmus 		barRect.bottom -= ceilf(barRect.Width() / 2);
7712f86ba45SStephan Aßmus 	}
7722f86ba45SStephan Aßmus 
7732f86ba45SStephan Aßmus 	// fill the background for the corners, exclude the middle bar for now
7742f86ba45SStephan Aßmus 	BRegion region(rect);
7752f86ba45SStephan Aßmus 	region.Exclude(barRect);
7762f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
7772f86ba45SStephan Aßmus 
7782f86ba45SStephan Aßmus 	view->SetHighColor(base);
7792f86ba45SStephan Aßmus 	view->FillRect(rect);
7802f86ba45SStephan Aßmus 
7812f86ba45SStephan Aßmus 	// figure out the tints to be used
7822f86ba45SStephan Aßmus 	float edgeLightTint;
7832f86ba45SStephan Aßmus 	float edgeShadowTint;
7842f86ba45SStephan Aßmus 	float frameLightTint;
7852f86ba45SStephan Aßmus 	float frameShadowTint;
7862f86ba45SStephan Aßmus 	float fillLightTint;
7872f86ba45SStephan Aßmus 	float fillShadowTint;
7882f86ba45SStephan Aßmus 
7892f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
7902f86ba45SStephan Aßmus 		edgeLightTint = 1.0;
7912f86ba45SStephan Aßmus 		edgeShadowTint = 1.0;
7922f86ba45SStephan Aßmus 		frameLightTint = 1.20;
7932f86ba45SStephan Aßmus 		frameShadowTint = 1.25;
7942f86ba45SStephan Aßmus 		fillLightTint = 0.9;
7952f86ba45SStephan Aßmus 		fillShadowTint = 1.05;
7962f86ba45SStephan Aßmus 
7972f86ba45SStephan Aßmus 		fillColor.red = uint8(fillColor.red * 0.4 + base.red * 0.6);
7982f86ba45SStephan Aßmus 		fillColor.green = uint8(fillColor.green * 0.4 + base.green * 0.6);
7992f86ba45SStephan Aßmus 		fillColor.blue = uint8(fillColor.blue * 0.4 + base.blue * 0.6);
8002f86ba45SStephan Aßmus 	} else {
8012f86ba45SStephan Aßmus 		edgeLightTint = 0.65;
8022f86ba45SStephan Aßmus 		edgeShadowTint = 1.07;
8032f86ba45SStephan Aßmus 		frameLightTint = 1.40;
8042f86ba45SStephan Aßmus 		frameShadowTint = 1.50;
8052f86ba45SStephan Aßmus 		fillLightTint = 0.8;
8062f86ba45SStephan Aßmus 		fillShadowTint = 1.1;
8072f86ba45SStephan Aßmus 	}
8082f86ba45SStephan Aßmus 
8092f86ba45SStephan Aßmus 	rgb_color edgeLightColor = tint_color(base, edgeLightTint);
8102f86ba45SStephan Aßmus 	rgb_color edgeShadowColor = tint_color(base, edgeShadowTint);
8112f86ba45SStephan Aßmus 	rgb_color frameLightColor = tint_color(fillColor, frameLightTint);
8122f86ba45SStephan Aßmus 	rgb_color frameShadowColor = tint_color(fillColor, frameShadowTint);
8132f86ba45SStephan Aßmus 	rgb_color fillLightColor = tint_color(fillColor, fillLightTint);
8142f86ba45SStephan Aßmus 	rgb_color fillShadowColor = tint_color(fillColor, fillShadowTint);
8152f86ba45SStephan Aßmus 
8162f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
8172f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, leftCorner, updateRect, edgeLightColor,
8182f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
8192f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 1.0, 0.0, -1.0, orientation);
8202f86ba45SStephan Aßmus 
8212f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, rightCorner, updateRect, edgeLightColor,
8222f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
8232f86ba45SStephan Aßmus 			fillShadowColor, 0.0, 1.0, -1.0, -1.0, orientation);
8242f86ba45SStephan Aßmus 	} else {
8252f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, leftCorner, updateRect, edgeLightColor,
8262f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
8272f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 1.0, -1.0, 0.0, orientation);
8282f86ba45SStephan Aßmus 
8292f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, rightCorner, updateRect, edgeLightColor,
8302f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
8312f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 0.0, -1.0, -1.0, orientation);
8322f86ba45SStephan Aßmus 	}
8332f86ba45SStephan Aßmus 
8342f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
8352f86ba45SStephan Aßmus 
8362f86ba45SStephan Aßmus 	view->BeginLineArray(4);
8372f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
8382f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.RightTop(), edgeShadowColor);
8392f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftBottom(), barRect.RightBottom(),
8402f86ba45SStephan Aßmus 			edgeLightColor);
8412f86ba45SStephan Aßmus 		barRect.InsetBy(0, 1);
8422f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.RightTop(), frameShadowColor);
8432f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftBottom(), barRect.RightBottom(),
8442f86ba45SStephan Aßmus 			frameLightColor);
8452f86ba45SStephan Aßmus 		barRect.InsetBy(0, 1);
8462f86ba45SStephan Aßmus 	} else {
8472f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.LeftBottom(), edgeShadowColor);
8482f86ba45SStephan Aßmus 		view->AddLine(barRect.RightTop(), barRect.RightBottom(),
8492f86ba45SStephan Aßmus 			edgeLightColor);
8502f86ba45SStephan Aßmus 		barRect.InsetBy(1, 0);
8512f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.LeftBottom(), frameShadowColor);
8522f86ba45SStephan Aßmus 		view->AddLine(barRect.RightTop(), barRect.RightBottom(),
8532f86ba45SStephan Aßmus 			frameLightColor);
8542f86ba45SStephan Aßmus 		barRect.InsetBy(1, 0);
8552f86ba45SStephan Aßmus 	}
8562f86ba45SStephan Aßmus 	view->EndLineArray();
8572f86ba45SStephan Aßmus 
8582f86ba45SStephan Aßmus 	_FillGradient(view, barRect, fillColor, fillShadowTint, fillLightTint,
8592f86ba45SStephan Aßmus 		orientation);
8602f86ba45SStephan Aßmus }
8612f86ba45SStephan Aßmus 
8622f86ba45SStephan Aßmus 
8632f86ba45SStephan Aßmus void
8642f86ba45SStephan Aßmus BControlLook::DrawSliderThumb(BView* view, BRect& rect, const BRect& updateRect,
8652f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, enum orientation orientation)
8662f86ba45SStephan Aßmus {
8672f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
8682f86ba45SStephan Aßmus 		return;
8692f86ba45SStephan Aßmus 
8702f86ba45SStephan Aßmus 	// figure out frame color
8712f86ba45SStephan Aßmus 	rgb_color frameLightColor;
8722f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
8732f86ba45SStephan Aßmus 	rgb_color shadowColor = (rgb_color){ 0, 0, 0, 60 };
8742f86ba45SStephan Aßmus 
8752f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
8762f86ba45SStephan Aßmus 		// focused
8772f86ba45SStephan Aßmus 		frameLightColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
8782f86ba45SStephan Aßmus 		frameShadowColor = frameLightColor;
8792f86ba45SStephan Aßmus 	} else {
8802f86ba45SStephan Aßmus 		// figure out the tints to be used
8812f86ba45SStephan Aßmus 		float frameLightTint;
8822f86ba45SStephan Aßmus 		float frameShadowTint;
8832f86ba45SStephan Aßmus 
8842f86ba45SStephan Aßmus 		if (flags & B_DISABLED) {
8852f86ba45SStephan Aßmus 			frameLightTint = 1.30;
8862f86ba45SStephan Aßmus 			frameShadowTint = 1.35;
8872f86ba45SStephan Aßmus 			shadowColor.alpha = 30;
8882f86ba45SStephan Aßmus 		} else {
8892f86ba45SStephan Aßmus 			frameLightTint = 1.6;
8902f86ba45SStephan Aßmus 			frameShadowTint = 1.65;
8912f86ba45SStephan Aßmus 		}
8922f86ba45SStephan Aßmus 
8932f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, frameLightTint);
8942f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, frameShadowTint);
8952f86ba45SStephan Aßmus 	}
8962f86ba45SStephan Aßmus 
8972f86ba45SStephan Aßmus 	BRect originalRect(rect);
8982f86ba45SStephan Aßmus 	rect.right--;
8992f86ba45SStephan Aßmus 	rect.bottom--;
9002f86ba45SStephan Aßmus 
9012f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor,
9022f86ba45SStephan Aßmus 		frameShadowColor, frameShadowColor);
9032f86ba45SStephan Aßmus 
9042f86ba45SStephan Aßmus 	flags &= ~B_ACTIVATED;
9052f86ba45SStephan Aßmus 	DrawButtonBackground(view, rect, updateRect, base, flags);
9062f86ba45SStephan Aßmus 
9072f86ba45SStephan Aßmus 	// thumb shadow
9082f86ba45SStephan Aßmus 	view->SetDrawingMode(B_OP_ALPHA);
9092f86ba45SStephan Aßmus 	view->SetHighColor(shadowColor);
9102f86ba45SStephan Aßmus 	originalRect.left++;
9112f86ba45SStephan Aßmus 	originalRect.top++;
9122f86ba45SStephan Aßmus 	view->StrokeLine(originalRect.LeftBottom(), originalRect.RightBottom());
9132f86ba45SStephan Aßmus 	originalRect.bottom--;
9142f86ba45SStephan Aßmus 	view->StrokeLine(originalRect.RightTop(), originalRect.RightBottom());
9152f86ba45SStephan Aßmus 
9162f86ba45SStephan Aßmus 	// thumb edge
9172f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
9182f86ba45SStephan Aßmus 		rect.InsetBy(0, floorf(rect.Height() / 4));
9192f86ba45SStephan Aßmus 		rect.left = floorf((rect.left + rect.right) / 2);
9202f86ba45SStephan Aßmus 		rect.right = rect.left + 1;
9212f86ba45SStephan Aßmus 		shadowColor = tint_color(base, B_DARKEN_2_TINT);
9222f86ba45SStephan Aßmus 		shadowColor.alpha = 128;
9232f86ba45SStephan Aßmus 		view->SetHighColor(shadowColor);
9242f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
9252f86ba45SStephan Aßmus 		rgb_color lightColor = tint_color(base, B_LIGHTEN_2_TINT);
9262f86ba45SStephan Aßmus 		lightColor.alpha = 128;
9272f86ba45SStephan Aßmus 		view->SetHighColor(lightColor);
9282f86ba45SStephan Aßmus 		view->StrokeLine(rect.RightTop(), rect.RightBottom());
9292f86ba45SStephan Aßmus 	} else {
9302f86ba45SStephan Aßmus 		rect.InsetBy(floorf(rect.Width() / 4), 0);
9312f86ba45SStephan Aßmus 		rect.top = floorf((rect.top + rect.bottom) / 2);
9322f86ba45SStephan Aßmus 		rect.bottom = rect.top + 1;
9332f86ba45SStephan Aßmus 		shadowColor = tint_color(base, B_DARKEN_2_TINT);
9342f86ba45SStephan Aßmus 		shadowColor.alpha = 128;
9352f86ba45SStephan Aßmus 		view->SetHighColor(shadowColor);
9362f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.RightTop());
9372f86ba45SStephan Aßmus 		rgb_color lightColor = tint_color(base, B_LIGHTEN_2_TINT);
9382f86ba45SStephan Aßmus 		lightColor.alpha = 128;
9392f86ba45SStephan Aßmus 		view->SetHighColor(lightColor);
9402f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftBottom(), rect.RightBottom());
9412f86ba45SStephan Aßmus 	}
9422f86ba45SStephan Aßmus 
9432f86ba45SStephan Aßmus 	view->SetDrawingMode(B_OP_COPY);
9442f86ba45SStephan Aßmus }
9452f86ba45SStephan Aßmus 
9462f86ba45SStephan Aßmus 
9472f86ba45SStephan Aßmus void
9482f86ba45SStephan Aßmus BControlLook::DrawSliderTriangle(BView* view, BRect& rect,
9492f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
9502f86ba45SStephan Aßmus 	enum orientation orientation)
9512f86ba45SStephan Aßmus {
9528ee9217eSStephan Aßmus 	DrawSliderTriangle(view, rect, updateRect, base, base, flags, orientation);
9538ee9217eSStephan Aßmus }
9548ee9217eSStephan Aßmus 
9558ee9217eSStephan Aßmus 
9568ee9217eSStephan Aßmus void
9578ee9217eSStephan Aßmus BControlLook::DrawSliderTriangle(BView* view, BRect& rect,
9588ee9217eSStephan Aßmus 	const BRect& updateRect, const rgb_color& base, const rgb_color& fill,
9598ee9217eSStephan Aßmus 	uint32 flags, enum orientation orientation)
9608ee9217eSStephan Aßmus {
9612f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
9622f86ba45SStephan Aßmus 		return;
9632f86ba45SStephan Aßmus 
9642f86ba45SStephan Aßmus 	// figure out frame color
9652f86ba45SStephan Aßmus 	rgb_color frameLightColor;
9662f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
9672f86ba45SStephan Aßmus 	rgb_color shadowColor = (rgb_color){ 0, 0, 0, 60 };
9682f86ba45SStephan Aßmus 
9692f86ba45SStephan Aßmus 	float topTint = 0.49;
9702f86ba45SStephan Aßmus 	float middleTint1 = 0.62;
9712f86ba45SStephan Aßmus 	float middleTint2 = 0.76;
9722f86ba45SStephan Aßmus 	float bottomTint = 0.90;
9732f86ba45SStephan Aßmus 
9742f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
9752f86ba45SStephan Aßmus 		topTint = (topTint + B_NO_TINT) / 2;
9762f86ba45SStephan Aßmus 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
9772f86ba45SStephan Aßmus 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
9782f86ba45SStephan Aßmus 		bottomTint = (bottomTint + B_NO_TINT) / 2;
9792f86ba45SStephan Aßmus 	} else if (flags & B_HOVER) {
9802f86ba45SStephan Aßmus 		static const float kHoverTintFactor = 0.85;
9812f86ba45SStephan Aßmus 		topTint *= kHoverTintFactor;
9822f86ba45SStephan Aßmus 		middleTint1 *= kHoverTintFactor;
9832f86ba45SStephan Aßmus 		middleTint2 *= kHoverTintFactor;
9842f86ba45SStephan Aßmus 		bottomTint *= kHoverTintFactor;
9852f86ba45SStephan Aßmus 	}
9862f86ba45SStephan Aßmus 
9872f86ba45SStephan Aßmus 	if (flags & B_FOCUSED) {
9882f86ba45SStephan Aßmus 		// focused
9892f86ba45SStephan Aßmus 		frameLightColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
9902f86ba45SStephan Aßmus 		frameShadowColor = frameLightColor;
9912f86ba45SStephan Aßmus 	} else {
9922f86ba45SStephan Aßmus 		// figure out the tints to be used
9932f86ba45SStephan Aßmus 		float frameLightTint;
9942f86ba45SStephan Aßmus 		float frameShadowTint;
9952f86ba45SStephan Aßmus 
9962f86ba45SStephan Aßmus 		if (flags & B_DISABLED) {
9972f86ba45SStephan Aßmus 			frameLightTint = 1.30;
9982f86ba45SStephan Aßmus 			frameShadowTint = 1.35;
9992f86ba45SStephan Aßmus 			shadowColor.alpha = 30;
10002f86ba45SStephan Aßmus 		} else {
10012f86ba45SStephan Aßmus 			frameLightTint = 1.6;
10022f86ba45SStephan Aßmus 			frameShadowTint = 1.65;
10032f86ba45SStephan Aßmus 		}
10042f86ba45SStephan Aßmus 
10052f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, frameLightTint);
10062f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, frameShadowTint);
10072f86ba45SStephan Aßmus 	}
10082f86ba45SStephan Aßmus 
10098ee9217eSStephan Aßmus 	// make room for the shadow
10108ee9217eSStephan Aßmus 	rect.right--;
10118ee9217eSStephan Aßmus 	rect.bottom--;
10122f86ba45SStephan Aßmus 
10132f86ba45SStephan Aßmus 	uint32 viewFlags = view->Flags();
10142f86ba45SStephan Aßmus 	view->SetFlags(viewFlags | B_SUBPIXEL_PRECISE);
10152f86ba45SStephan Aßmus 	view->SetLineMode(B_ROUND_CAP, B_ROUND_JOIN);
10162f86ba45SStephan Aßmus 
10178ee9217eSStephan Aßmus 	float center = (rect.left + rect.right) / 2;
10182f86ba45SStephan Aßmus 
10198ee9217eSStephan Aßmus 	BShape shape;
10208ee9217eSStephan Aßmus 	shape.MoveTo(BPoint(rect.left + 0.5, rect.bottom + 0.5));
10218ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.right + 0.5, rect.bottom + 0.5));
10228ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.right + 0.5, rect.bottom - 1 + 0.5));
10238ee9217eSStephan Aßmus 	shape.LineTo(BPoint(center + 0.5, rect.top + 0.5));
10248ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.left + 0.5, rect.bottom - 1 + 0.5));
10258ee9217eSStephan Aßmus 	shape.Close();
10268ee9217eSStephan Aßmus 
10278ee9217eSStephan Aßmus 	view->MovePenTo(BPoint(1, 1));
10288ee9217eSStephan Aßmus 
10298ee9217eSStephan Aßmus 	view->SetDrawingMode(B_OP_ALPHA);
10308ee9217eSStephan Aßmus 	view->SetHighColor(shadowColor);
10318ee9217eSStephan Aßmus 	view->StrokeShape(&shape);
10328ee9217eSStephan Aßmus 
10338ee9217eSStephan Aßmus 	view->MovePenTo(B_ORIGIN);
10348ee9217eSStephan Aßmus 
10358ee9217eSStephan Aßmus 	view->SetDrawingMode(B_OP_COPY);
10362f86ba45SStephan Aßmus 	view->SetHighColor(frameLightColor);
10378ee9217eSStephan Aßmus 	view->StrokeShape(&shape);
10382f86ba45SStephan Aßmus 
10392f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
10408ee9217eSStephan Aßmus 	shape.Clear();
10418ee9217eSStephan Aßmus 	shape.MoveTo(BPoint(rect.left, rect.bottom + 1));
10428ee9217eSStephan Aßmus 	shape.LineTo(BPoint(rect.right + 1, rect.bottom + 1));
10438ee9217eSStephan Aßmus 	shape.LineTo(BPoint(center + 0.5, rect.top));
10448ee9217eSStephan Aßmus 	shape.Close();
10452f86ba45SStephan Aßmus 
10462f86ba45SStephan Aßmus 	BGradientLinear gradient;
10472f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
10488ee9217eSStephan Aßmus 		_MakeGradient(gradient, rect, fill, topTint, bottomTint);
10492f86ba45SStephan Aßmus 	} else {
10508ee9217eSStephan Aßmus 		_MakeGlossyGradient(gradient, rect, fill, topTint, middleTint1,
10512f86ba45SStephan Aßmus 			middleTint2, bottomTint);
10522f86ba45SStephan Aßmus 	}
10532f86ba45SStephan Aßmus 
10548ee9217eSStephan Aßmus 	view->FillShape(&shape, gradient);
10552f86ba45SStephan Aßmus 
10562f86ba45SStephan Aßmus 	view->SetFlags(viewFlags);
10572f86ba45SStephan Aßmus }
10582f86ba45SStephan Aßmus 
10592f86ba45SStephan Aßmus 
10602f86ba45SStephan Aßmus void
10612f86ba45SStephan Aßmus BControlLook::DrawSliderHashMarks(BView* view, BRect& rect,
10622f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, int32 count,
10632f86ba45SStephan Aßmus 	hash_mark_location location, uint32 flags, enum orientation orientation)
10642f86ba45SStephan Aßmus {
10652f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
10662f86ba45SStephan Aßmus 		return;
10672f86ba45SStephan Aßmus 
10682f86ba45SStephan Aßmus 	rgb_color lightColor;
10692f86ba45SStephan Aßmus 	rgb_color darkColor;
10702f86ba45SStephan Aßmus 
10712f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
10722f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.9);
10732f86ba45SStephan Aßmus 		darkColor = tint_color(base, 1.07);
10742f86ba45SStephan Aßmus 	} else {
10752f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.8);
10762f86ba45SStephan Aßmus 		darkColor = tint_color(base, 1.14);
10772f86ba45SStephan Aßmus 	}
10782f86ba45SStephan Aßmus 
10792f86ba45SStephan Aßmus 	int32 hashMarkCount = max_c(count, 2);
10802f86ba45SStephan Aßmus 		// draw at least two hashmarks at min/max if
10812f86ba45SStephan Aßmus 		// fHashMarks != B_HASH_MARKS_NONE
10822f86ba45SStephan Aßmus 	float factor;
10832f86ba45SStephan Aßmus 	float startPos;
10842f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
10852f86ba45SStephan Aßmus 		factor = (rect.Width() - 2) / (hashMarkCount - 1);
10862f86ba45SStephan Aßmus 		startPos = rect.left + 1;
10872f86ba45SStephan Aßmus 	} else {
10882f86ba45SStephan Aßmus 		factor = (rect.Height() - 2) / (hashMarkCount - 1);
10892f86ba45SStephan Aßmus 		startPos = rect.top + 1;
10902f86ba45SStephan Aßmus 	}
10912f86ba45SStephan Aßmus 
10922f86ba45SStephan Aßmus 	if (location & B_HASH_MARKS_TOP) {
10932f86ba45SStephan Aßmus 		view->BeginLineArray(hashMarkCount * 2);
10942f86ba45SStephan Aßmus 
10952f86ba45SStephan Aßmus 		if (orientation == B_HORIZONTAL) {
10962f86ba45SStephan Aßmus 			float pos = startPos;
10972f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
10982f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos, rect.top),
10992f86ba45SStephan Aßmus 							  BPoint(pos, rect.top + 4), darkColor);
11002f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos + 1, rect.top),
11012f86ba45SStephan Aßmus 							  BPoint(pos + 1, rect.top + 4), lightColor);
11022f86ba45SStephan Aßmus 
11032f86ba45SStephan Aßmus 				pos += factor;
11042f86ba45SStephan Aßmus 			}
11052f86ba45SStephan Aßmus 		} else {
11062f86ba45SStephan Aßmus 			float pos = startPos;
11072f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
11082f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.left, pos),
11092f86ba45SStephan Aßmus 							  BPoint(rect.left + 4, pos), darkColor);
11102f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.left, pos + 1),
11112f86ba45SStephan Aßmus 							  BPoint(rect.left + 4, pos + 1), lightColor);
11122f86ba45SStephan Aßmus 
11132f86ba45SStephan Aßmus 				pos += factor;
11142f86ba45SStephan Aßmus 			}
11152f86ba45SStephan Aßmus 		}
11162f86ba45SStephan Aßmus 
11172f86ba45SStephan Aßmus 		view->EndLineArray();
11182f86ba45SStephan Aßmus 	}
11192f86ba45SStephan Aßmus 
11202f86ba45SStephan Aßmus 	if (location & B_HASH_MARKS_BOTTOM) {
11212f86ba45SStephan Aßmus 
11222f86ba45SStephan Aßmus 		view->BeginLineArray(hashMarkCount * 2);
11232f86ba45SStephan Aßmus 
11242f86ba45SStephan Aßmus 		if (orientation == B_HORIZONTAL) {
11252f86ba45SStephan Aßmus 			float pos = startPos;
11262f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
11272f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos, rect.bottom - 4),
11282f86ba45SStephan Aßmus 							  BPoint(pos, rect.bottom), darkColor);
11292f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos + 1, rect.bottom - 4),
11302f86ba45SStephan Aßmus 							  BPoint(pos + 1, rect.bottom), lightColor);
11312f86ba45SStephan Aßmus 
11322f86ba45SStephan Aßmus 				pos += factor;
11332f86ba45SStephan Aßmus 			}
11342f86ba45SStephan Aßmus 		} else {
11352f86ba45SStephan Aßmus 			float pos = startPos;
11362f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
11372f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.right - 4, pos),
11382f86ba45SStephan Aßmus 							  BPoint(rect.right, pos), darkColor);
11392f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.right - 4, pos + 1),
11402f86ba45SStephan Aßmus 							  BPoint(rect.right, pos + 1), lightColor);
11412f86ba45SStephan Aßmus 
11422f86ba45SStephan Aßmus 				pos += factor;
11432f86ba45SStephan Aßmus 			}
11442f86ba45SStephan Aßmus 		}
11452f86ba45SStephan Aßmus 
11462f86ba45SStephan Aßmus 		view->EndLineArray();
11472f86ba45SStephan Aßmus 	}
11482f86ba45SStephan Aßmus }
11492f86ba45SStephan Aßmus 
11502f86ba45SStephan Aßmus 
11512f86ba45SStephan Aßmus void
11522f86ba45SStephan Aßmus BControlLook::DrawActiveTab(BView* view, BRect& rect, const BRect& updateRect,
11532f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
11542f86ba45SStephan Aßmus {
11552f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
11562f86ba45SStephan Aßmus 		return;
11572f86ba45SStephan Aßmus 
11582f86ba45SStephan Aßmus 	rgb_color edgeShadowColor;
11592f86ba45SStephan Aßmus 	rgb_color edgeLightColor;
11602f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
11612f86ba45SStephan Aßmus 	rgb_color frameLightColor;
11622f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
11632f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
11642f86ba45SStephan Aßmus 	BGradientLinear fillGradient;
11652f86ba45SStephan Aßmus 	fillGradient.SetStart(rect.LeftTop() + BPoint(3, 3));
11662f86ba45SStephan Aßmus 	fillGradient.SetEnd(rect.LeftBottom() + BPoint(3, -3));
11672f86ba45SStephan Aßmus 
11682f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
11692f86ba45SStephan Aßmus 		edgeShadowColor = base;
11702f86ba45SStephan Aßmus 		edgeLightColor = base;
11712f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
11722f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.25);
11732f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(base, 1.07);
11742f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.8);
11752f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.85), 0);
11762f86ba45SStephan Aßmus 		fillGradient.AddColor(base, 255);
11772f86ba45SStephan Aßmus 	} else {
11782f86ba45SStephan Aßmus 		edgeShadowColor = tint_color(base, 1.03);
11792f86ba45SStephan Aßmus 		edgeLightColor = tint_color(base, 0.80);
11802f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
11812f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.30);
11822f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(base, 1.07);
11832f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.6);
11842f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.75), 0);
11852f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.03), 255);
11862f86ba45SStephan Aßmus 	}
118712ea5a2cSStephan Aßmus 
11882f86ba45SStephan Aßmus 	static const float kRoundCornerRadius = 4;
11892f86ba45SStephan Aßmus 
11902f86ba45SStephan Aßmus 	// left/top corner
11912f86ba45SStephan Aßmus 	BRect cornerRect(rect);
11922f86ba45SStephan Aßmus 	cornerRect.right = cornerRect.left + kRoundCornerRadius;
11932f86ba45SStephan Aßmus 	cornerRect.bottom = cornerRect.top + kRoundCornerRadius;
11942f86ba45SStephan Aßmus 
11952f86ba45SStephan Aßmus 	BRegion clipping(rect);
11962f86ba45SStephan Aßmus 	clipping.Exclude(cornerRect);
11972f86ba45SStephan Aßmus 
11982f86ba45SStephan Aßmus 	_DrawRoundCornerLeftTop(view, cornerRect, updateRect, base, edgeShadowColor,
11992f86ba45SStephan Aßmus 		frameLightColor, bevelLightColor, fillGradient);
12002f86ba45SStephan Aßmus 
12012f86ba45SStephan Aßmus 	// left/top corner
12022f86ba45SStephan Aßmus 	cornerRect.right = rect.right;
12032f86ba45SStephan Aßmus 	cornerRect.left = cornerRect.right - kRoundCornerRadius;
12042f86ba45SStephan Aßmus 
12052f86ba45SStephan Aßmus 	clipping.Exclude(cornerRect);
12062f86ba45SStephan Aßmus 
12072f86ba45SStephan Aßmus 	_DrawRoundCornerRightTop(view, cornerRect, updateRect, base, edgeShadowColor,
12082f86ba45SStephan Aßmus 		edgeLightColor, frameLightColor, frameShadowColor, bevelLightColor,
12092f86ba45SStephan Aßmus 		bevelShadowColor, fillGradient);
12102f86ba45SStephan Aßmus 
12112f86ba45SStephan Aßmus 	// rest of frame and fill
12122f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&clipping);
12132f86ba45SStephan Aßmus 
12142f86ba45SStephan Aßmus 	_DrawFrame(view, rect, edgeShadowColor, edgeShadowColor, edgeLightColor,
12152f86ba45SStephan Aßmus 		edgeLightColor,
12162f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
12172f86ba45SStephan Aßmus 	if ((borders & B_LEFT_BORDER) == 0)
12182f86ba45SStephan Aßmus 		rect.left++;
12192f86ba45SStephan Aßmus 	if ((borders & B_RIGHT_BORDER) == 0)
12202f86ba45SStephan Aßmus 		rect.right--;
12212f86ba45SStephan Aßmus 
12222f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor, frameShadowColor,
12232f86ba45SStephan Aßmus 		frameShadowColor, B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER);
12242f86ba45SStephan Aßmus 
12252f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelLightColor, bevelLightColor, bevelShadowColor,
12262f86ba45SStephan Aßmus 		bevelShadowColor);
12272f86ba45SStephan Aßmus 
12282f86ba45SStephan Aßmus 	view->FillRect(rect, fillGradient);
12292f86ba45SStephan Aßmus 
12302f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
12312f86ba45SStephan Aßmus }
12322f86ba45SStephan Aßmus 
12332f86ba45SStephan Aßmus 
12342f86ba45SStephan Aßmus void
123583aff015SPhilippe Houdoin BControlLook::DrawInactiveTab(BView* view, BRect& rect, const BRect& updateRect,
12362f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
12372f86ba45SStephan Aßmus {
12382f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
12392f86ba45SStephan Aßmus 		return;
12402f86ba45SStephan Aßmus 
12412f86ba45SStephan Aßmus 	rgb_color edgeShadowColor;
12422f86ba45SStephan Aßmus 	rgb_color edgeLightColor;
12432f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
12442f86ba45SStephan Aßmus 	rgb_color frameLightColor;
12452f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
12462f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
12472f86ba45SStephan Aßmus 	BGradientLinear fillGradient;
12482f86ba45SStephan Aßmus 	fillGradient.SetStart(rect.LeftTop() + BPoint(3, 3));
12492f86ba45SStephan Aßmus 	fillGradient.SetEnd(rect.LeftBottom() + BPoint(3, -3));
12502f86ba45SStephan Aßmus 
12512f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
12522f86ba45SStephan Aßmus 		edgeShadowColor = base;
12532f86ba45SStephan Aßmus 		edgeLightColor = base;
12542f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
12552f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.25);
12562f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(base, 1.07);
12572f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.8);
12582f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.85), 0);
12592f86ba45SStephan Aßmus 		fillGradient.AddColor(base, 255);
12602f86ba45SStephan Aßmus 	} else {
12612f86ba45SStephan Aßmus 		edgeShadowColor = tint_color(base, 1.03);
12622f86ba45SStephan Aßmus 		edgeLightColor = tint_color(base, 0.80);
12632f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, 1.30);
12642f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.30);
126512ea5a2cSStephan Aßmus 		bevelShadowColor = tint_color(base, 1.17);
12662f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 1.10);
12672f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.12), 0);
12682f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.08), 255);
12692f86ba45SStephan Aßmus 	}
12702f86ba45SStephan Aßmus 
12712f86ba45SStephan Aßmus 	// active tabs stand out at the top, but this is an inactive tab
12722f86ba45SStephan Aßmus 	view->SetHighColor(base);
12732f86ba45SStephan Aßmus 	view->FillRect(BRect(rect.left, rect.top, rect.right, rect.top + 4));
12742f86ba45SStephan Aßmus 	rect.top += 4;
12752f86ba45SStephan Aßmus 
12762f86ba45SStephan Aßmus 	// frame and fill
12772f86ba45SStephan Aßmus 	_DrawFrame(view, rect, edgeShadowColor, edgeShadowColor, edgeLightColor,
12782f86ba45SStephan Aßmus 		edgeLightColor,
12792f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
12802f86ba45SStephan Aßmus 
12812f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor, frameShadowColor,
12822f86ba45SStephan Aßmus 		frameShadowColor,
12832f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
12842f86ba45SStephan Aßmus 
128512ea5a2cSStephan Aßmus 	_DrawFrame(view, rect, bevelShadowColor, bevelShadowColor, bevelLightColor,
128612ea5a2cSStephan Aßmus 		bevelLightColor, B_LEFT_BORDER & ~borders);
12872f86ba45SStephan Aßmus 
12882f86ba45SStephan Aßmus 	view->FillRect(rect, fillGradient);
12892f86ba45SStephan Aßmus }
12902f86ba45SStephan Aßmus 
12912f86ba45SStephan Aßmus 
12922f86ba45SStephan Aßmus // #pragma mark -
12932f86ba45SStephan Aßmus 
12942f86ba45SStephan Aßmus 
12952f86ba45SStephan Aßmus void
12962f86ba45SStephan Aßmus BControlLook::DrawBorder(BView* view, BRect& rect, const BRect& updateRect,
12972f86ba45SStephan Aßmus 	const rgb_color& base, border_style border, uint32 flags, uint32 borders)
12982f86ba45SStephan Aßmus {
12992f86ba45SStephan Aßmus 	if (border == B_NO_BORDER)
13002f86ba45SStephan Aßmus 		return;
13012f86ba45SStephan Aßmus 
13022f86ba45SStephan Aßmus 	rgb_color scrollbarFrameColor = tint_color(base, B_DARKEN_2_TINT);
13032f86ba45SStephan Aßmus 	if (flags & B_FOCUSED)
13042f86ba45SStephan Aßmus 		scrollbarFrameColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
13052f86ba45SStephan Aßmus 
13062f86ba45SStephan Aßmus 	if (border == B_FANCY_BORDER)
13072f86ba45SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 1.0, 1.0, borders);
13082f86ba45SStephan Aßmus 
13092f86ba45SStephan Aßmus 	_DrawFrame(view, rect, scrollbarFrameColor, scrollbarFrameColor,
13102f86ba45SStephan Aßmus 		scrollbarFrameColor, scrollbarFrameColor, borders);
13112f86ba45SStephan Aßmus }
13122f86ba45SStephan Aßmus 
13132f86ba45SStephan Aßmus 
13142f86ba45SStephan Aßmus void
13152f86ba45SStephan Aßmus BControlLook::DrawRaisedBorder(BView* view, BRect& rect,
13162f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
13172f86ba45SStephan Aßmus 	uint32 borders)
13182f86ba45SStephan Aßmus {
13192f86ba45SStephan Aßmus 	rgb_color lightColor;
13202f86ba45SStephan Aßmus 	rgb_color shadowColor;
13212f86ba45SStephan Aßmus 
13222f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
13232f86ba45SStephan Aßmus 		lightColor = base;
13242f86ba45SStephan Aßmus 		shadowColor = base;
13252f86ba45SStephan Aßmus 	} else {
13262f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.85);
13272f86ba45SStephan Aßmus 		shadowColor = tint_color(base, 1.07);
13282f86ba45SStephan Aßmus 	}
13292f86ba45SStephan Aßmus 
13302f86ba45SStephan Aßmus 	_DrawFrame(view, rect, lightColor, lightColor, shadowColor, shadowColor,
13312f86ba45SStephan Aßmus 		borders);
13322f86ba45SStephan Aßmus }
13332f86ba45SStephan Aßmus 
13342f86ba45SStephan Aßmus 
13352f86ba45SStephan Aßmus void
13362f86ba45SStephan Aßmus BControlLook::DrawTextControlBorder(BView* view, BRect& rect,
13372f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
13382f86ba45SStephan Aßmus 	uint32 borders)
13392f86ba45SStephan Aßmus {
13402f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
13412f86ba45SStephan Aßmus 		return;
13422f86ba45SStephan Aßmus 
13432f86ba45SStephan Aßmus 	rgb_color dark1BorderColor;
13442f86ba45SStephan Aßmus 	rgb_color dark2BorderColor;
13452f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
13462f86ba45SStephan Aßmus 
13472f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
13482f86ba45SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.0, 1.0, borders);
13492f86ba45SStephan Aßmus 
13502f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.15);
13512f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.15);
13522f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
13532f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.50);
13542f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.49);
13552f86ba45SStephan Aßmus 
13562f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
13572f86ba45SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
13582f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor);
13592f86ba45SStephan Aßmus 
13602f86ba45SStephan Aßmus 		dark2BorderColor = dark1BorderColor;
13612f86ba45SStephan Aßmus 	} else {
13622f86ba45SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.6, 1.0, borders);
13632f86ba45SStephan Aßmus 
13642f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.40);
13652f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.38);
13662f86ba45SStephan Aßmus 	}
13672f86ba45SStephan Aßmus 
13682f86ba45SStephan Aßmus 	if ((flags & B_DISABLED) == 0 && (flags & B_FOCUSED)) {
13692f86ba45SStephan Aßmus 		dark1BorderColor = navigationColor;
13702f86ba45SStephan Aßmus 		dark2BorderColor = navigationColor;
13712f86ba45SStephan Aßmus 	}
13722f86ba45SStephan Aßmus 
13732f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
13742f86ba45SStephan Aßmus 		dark1BorderColor, dark1BorderColor,
13752f86ba45SStephan Aßmus 		dark2BorderColor, dark2BorderColor, borders);
13762f86ba45SStephan Aßmus }
13772f86ba45SStephan Aßmus 
13782f86ba45SStephan Aßmus 
13792f86ba45SStephan Aßmus void
13802f86ba45SStephan Aßmus BControlLook::DrawGroupFrame(BView* view, BRect& rect, const BRect& updateRect,
13812f86ba45SStephan Aßmus 	const rgb_color& base, uint32 borders)
13822f86ba45SStephan Aßmus {
13832f86ba45SStephan Aßmus 	rgb_color frameColor = tint_color(base, 1.30);
13842f86ba45SStephan Aßmus 	rgb_color bevelLight = tint_color(base, 0.8);
13852f86ba45SStephan Aßmus 	rgb_color bevelShadow = tint_color(base, 1.03);
13862f86ba45SStephan Aßmus 
13872f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelShadow, bevelShadow, bevelLight, bevelLight,
13882f86ba45SStephan Aßmus 		borders);
13892f86ba45SStephan Aßmus 
13902f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameColor, frameColor, frameColor, frameColor,
13912f86ba45SStephan Aßmus 		borders);
13922f86ba45SStephan Aßmus 
13932f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelLight, bevelLight, bevelShadow, bevelShadow,
13942f86ba45SStephan Aßmus 		borders);
13952f86ba45SStephan Aßmus }
13962f86ba45SStephan Aßmus 
13972f86ba45SStephan Aßmus 
13982f86ba45SStephan Aßmus void
13992f86ba45SStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, BRect rect,
14002f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags)
14012f86ba45SStephan Aßmus {
14022f86ba45SStephan Aßmus 	DrawLabel(view, label, rect, updateRect, base, flags,
14032f86ba45SStephan Aßmus 		DefaultLabelAlignment());
14042f86ba45SStephan Aßmus }
14052f86ba45SStephan Aßmus 
14062f86ba45SStephan Aßmus 
14072f86ba45SStephan Aßmus void
14082f86ba45SStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, BRect rect,
14092f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
14102f86ba45SStephan Aßmus 	const BAlignment& alignment)
14112f86ba45SStephan Aßmus {
14122f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
14132f86ba45SStephan Aßmus 		return;
14142f86ba45SStephan Aßmus 
14152f86ba45SStephan Aßmus 	// setup the text color
14162f86ba45SStephan Aßmus 	rgb_color color;
14172f86ba45SStephan Aßmus 	if (base.red + base.green + base.blue > 128 * 3)
14182f86ba45SStephan Aßmus 		color = tint_color(base, B_DARKEN_MAX_TINT);
14192f86ba45SStephan Aßmus 	else
14202f86ba45SStephan Aßmus 		color = tint_color(base, B_LIGHTEN_MAX_TINT);
14212f86ba45SStephan Aßmus 
14222f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
14232f86ba45SStephan Aßmus 		color.red = (uint8)(((int32)base.red + color.red + 1) / 2);
14242f86ba45SStephan Aßmus 		color.green = (uint8)(((int32)base.green + color.green + 1) / 2);
14252f86ba45SStephan Aßmus 		color.blue = (uint8)(((int32)base.blue + color.blue + 1) / 2);
14262f86ba45SStephan Aßmus 	}
14272f86ba45SStephan Aßmus 
14282f86ba45SStephan Aßmus 	view->SetHighColor(color);
14292f86ba45SStephan Aßmus 	view->SetDrawingMode(B_OP_OVER);
14302f86ba45SStephan Aßmus 
14312f86ba45SStephan Aßmus 	// truncate the label if necessary and get the width and height
14322f86ba45SStephan Aßmus 	BString truncatedLabel(label);
14332f86ba45SStephan Aßmus 
14342f86ba45SStephan Aßmus 	BFont font;
14352f86ba45SStephan Aßmus 	view->GetFont(&font);
14362f86ba45SStephan Aßmus 
14372f86ba45SStephan Aßmus 	float width = rect.Width();
14382f86ba45SStephan Aßmus 	font.TruncateString(&truncatedLabel, B_TRUNCATE_END, width);
14392f86ba45SStephan Aßmus 	width = font.StringWidth(truncatedLabel.String());
14402f86ba45SStephan Aßmus 
14412f86ba45SStephan Aßmus 	font_height fontHeight;
14422f86ba45SStephan Aßmus 	font.GetHeight(&fontHeight);
14432f86ba45SStephan Aßmus 	float height = ceilf(fontHeight.ascent) + ceilf(fontHeight.descent);
14442f86ba45SStephan Aßmus 
14452f86ba45SStephan Aßmus 	// handle alignment
14462f86ba45SStephan Aßmus 	BPoint location;
14472f86ba45SStephan Aßmus 
14482f86ba45SStephan Aßmus 	switch (alignment.horizontal) {
14492f86ba45SStephan Aßmus 	default:
14502f86ba45SStephan Aßmus 	case B_ALIGN_LEFT:
14512f86ba45SStephan Aßmus 		location.x = rect.left;
14522f86ba45SStephan Aßmus 		break;
14532f86ba45SStephan Aßmus 	case B_ALIGN_RIGHT:
14542f86ba45SStephan Aßmus 		location.x = rect.right - width;
14552f86ba45SStephan Aßmus 		break;
14562f86ba45SStephan Aßmus 	case B_ALIGN_CENTER:
14572f86ba45SStephan Aßmus 		location.x = (rect.left + rect.right - width) / 2.0f;
14582f86ba45SStephan Aßmus 		break;
14592f86ba45SStephan Aßmus 	}
14602f86ba45SStephan Aßmus 
14612f86ba45SStephan Aßmus 	switch (alignment.vertical) {
14622f86ba45SStephan Aßmus 	case B_ALIGN_TOP:
14632f86ba45SStephan Aßmus 		location.y = rect.top + ceilf(fontHeight.ascent);
14642f86ba45SStephan Aßmus 		break;
14652f86ba45SStephan Aßmus 	default:
14662f86ba45SStephan Aßmus 	case B_ALIGN_MIDDLE:
14672f86ba45SStephan Aßmus 		location.y = floorf((rect.top + rect.bottom - height) / 2.0f + 0.5f)
14682f86ba45SStephan Aßmus 			+ ceilf(fontHeight.ascent);
14692f86ba45SStephan Aßmus 		break;
14702f86ba45SStephan Aßmus 	case B_ALIGN_BOTTOM:
14712f86ba45SStephan Aßmus 		location.y = rect.bottom - ceilf(fontHeight.descent);
14722f86ba45SStephan Aßmus 		break;
14732f86ba45SStephan Aßmus 	}
14742f86ba45SStephan Aßmus 
14752f86ba45SStephan Aßmus 	view->DrawString(truncatedLabel.String(), location);
14762f86ba45SStephan Aßmus }
14772f86ba45SStephan Aßmus 
14782f86ba45SStephan Aßmus 
14792f86ba45SStephan Aßmus // #pragma mark -
14802f86ba45SStephan Aßmus 
14812f86ba45SStephan Aßmus 
14822f86ba45SStephan Aßmus void
148313cd46dfSStephan Aßmus BControlLook::_DrawButtonFrame(BView* view, BRect& rect,
148413cd46dfSStephan Aßmus 	const BRect& updateRect, const rgb_color& base,
148513cd46dfSStephan Aßmus 	float contrast, float brightness, uint32 flags, uint32 borders)
148613cd46dfSStephan Aßmus {
148713cd46dfSStephan Aßmus 	// colors
148813cd46dfSStephan Aßmus 	rgb_color dark1BorderColor;
148913cd46dfSStephan Aßmus 	rgb_color dark2BorderColor;
149013cd46dfSStephan Aßmus 
149113cd46dfSStephan Aßmus 	if ((flags & B_DISABLED) == 0) {
149213cd46dfSStephan Aßmus 		dark1BorderColor = tint_color(base, 1.33);
149313cd46dfSStephan Aßmus 		dark2BorderColor = tint_color(base, 1.45);
149413cd46dfSStephan Aßmus 
149513cd46dfSStephan Aßmus 		if (flags & B_DEFAULT_BUTTON) {
149613cd46dfSStephan Aßmus 			dark2BorderColor = tint_color(dark1BorderColor, 1.5);
149713cd46dfSStephan Aßmus 			dark1BorderColor = tint_color(dark1BorderColor, 1.35);
149813cd46dfSStephan Aßmus 		}
149913cd46dfSStephan Aßmus 	} else {
150013cd46dfSStephan Aßmus 		dark1BorderColor = tint_color(base, 1.147);
150113cd46dfSStephan Aßmus 		dark2BorderColor = tint_color(base, 1.24);
150213cd46dfSStephan Aßmus 
150313cd46dfSStephan Aßmus 		if (flags & B_DEFAULT_BUTTON) {
150413cd46dfSStephan Aßmus 			dark1BorderColor = tint_color(dark1BorderColor, 1.12);
150513cd46dfSStephan Aßmus 			dark2BorderColor = tint_color(dark1BorderColor, 1.16);
150613cd46dfSStephan Aßmus 		}
150713cd46dfSStephan Aßmus 	}
150813cd46dfSStephan Aßmus 
150913cd46dfSStephan Aßmus 	if (flags & B_ACTIVATED) {
151013cd46dfSStephan Aßmus 		rgb_color temp = dark2BorderColor;
151113cd46dfSStephan Aßmus 		dark2BorderColor = dark1BorderColor;
151213cd46dfSStephan Aßmus 		dark1BorderColor = temp;
151313cd46dfSStephan Aßmus 	}
151413cd46dfSStephan Aßmus 
151513cd46dfSStephan Aßmus 	// indicate focus by changing main button border
151613cd46dfSStephan Aßmus 	if (flags & B_FOCUSED) {
151713cd46dfSStephan Aßmus 		dark1BorderColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
151813cd46dfSStephan Aßmus 		dark2BorderColor = dark1BorderColor;
151913cd46dfSStephan Aßmus 	}
152013cd46dfSStephan Aßmus 
152113cd46dfSStephan Aßmus 	if (flags & B_DEFAULT_BUTTON) {
152213cd46dfSStephan Aßmus 		float focusTint = 1.2;
152313cd46dfSStephan Aßmus 		if (flags & B_DISABLED)
152413cd46dfSStephan Aßmus 			focusTint = (B_NO_TINT + focusTint) / 2;
152513cd46dfSStephan Aßmus 
152613cd46dfSStephan Aßmus 		rgb_color focusColor = tint_color(base, focusTint);
152713cd46dfSStephan Aßmus 		view->SetHighColor(base);
152813cd46dfSStephan Aßmus 
152913cd46dfSStephan Aßmus 		view->StrokeRect(rect);
153013cd46dfSStephan Aßmus 		rect.InsetBy(1.0, 1.0);
153113cd46dfSStephan Aßmus 
153213cd46dfSStephan Aßmus 		view->SetHighColor(focusColor);
153313cd46dfSStephan Aßmus 		view->StrokeRect(rect);
153413cd46dfSStephan Aßmus 		rect.InsetBy(1.0, 1.0);
153513cd46dfSStephan Aßmus 		view->StrokeRect(rect);
153613cd46dfSStephan Aßmus 		rect.InsetBy(1.0, 1.0);
153713cd46dfSStephan Aßmus 
153813cd46dfSStephan Aßmus 		// bevel around external border
153913cd46dfSStephan Aßmus 		_DrawOuterResessedFrame(view, rect, focusColor,
154013cd46dfSStephan Aßmus 			contrast * (((flags & B_DISABLED) ? 0.5 : 0.8)), brightness * 0.9,
154113cd46dfSStephan Aßmus 			borders);
154213cd46dfSStephan Aßmus 	} else {
154313cd46dfSStephan Aßmus 		// bevel around external border
154413cd46dfSStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base,
154513cd46dfSStephan Aßmus 			contrast * ((flags & B_DISABLED) ? 0.0 : 1.0), brightness * 1.0,
154613cd46dfSStephan Aßmus 			borders);
154713cd46dfSStephan Aßmus 	}
154813cd46dfSStephan Aßmus 
154913cd46dfSStephan Aßmus 	_DrawFrame(view, rect, dark1BorderColor, dark1BorderColor,
155013cd46dfSStephan Aßmus 		dark2BorderColor, dark2BorderColor, borders);
155113cd46dfSStephan Aßmus }
155213cd46dfSStephan Aßmus 
155313cd46dfSStephan Aßmus 
155413cd46dfSStephan Aßmus void
15552f86ba45SStephan Aßmus BControlLook::_DrawOuterResessedFrame(BView* view, BRect& rect,
15562f86ba45SStephan Aßmus 	const rgb_color& base, float contrast, float brightness, uint32 borders)
15572f86ba45SStephan Aßmus {
15582f86ba45SStephan Aßmus 	// colors
15592f86ba45SStephan Aßmus 	float tintLight = kEdgeBevelLightTint;
15602f86ba45SStephan Aßmus 	float tintShadow = kEdgeBevelShadowTint;
15612f86ba45SStephan Aßmus 
15622f86ba45SStephan Aßmus 	if (contrast == 0.0) {
15632f86ba45SStephan Aßmus 		tintLight = B_NO_TINT;
15642f86ba45SStephan Aßmus 		tintShadow = B_NO_TINT;
15652f86ba45SStephan Aßmus 	} else if (contrast != 1.0) {
15662f86ba45SStephan Aßmus 		tintLight = B_NO_TINT + (tintLight - B_NO_TINT) * contrast;
15672f86ba45SStephan Aßmus 		tintShadow = B_NO_TINT + (tintShadow - B_NO_TINT) * contrast;
15682f86ba45SStephan Aßmus 	}
15692f86ba45SStephan Aßmus 
15702f86ba45SStephan Aßmus 	rgb_color borderBevelShadow = tint_color(base, tintShadow);
15712f86ba45SStephan Aßmus 	rgb_color borderBevelLight = tint_color(base, tintLight);
15722f86ba45SStephan Aßmus 
15732f86ba45SStephan Aßmus 	if (brightness < 1.0) {
15742f86ba45SStephan Aßmus 		borderBevelShadow.red = uint8(borderBevelShadow.red * brightness);
15752f86ba45SStephan Aßmus 		borderBevelShadow.green = uint8(borderBevelShadow.green * brightness);
15762f86ba45SStephan Aßmus 		borderBevelShadow.blue = uint8(borderBevelShadow.blue * brightness);
15772f86ba45SStephan Aßmus 		borderBevelLight.red = uint8(borderBevelLight.red * brightness);
15782f86ba45SStephan Aßmus 		borderBevelLight.green = uint8(borderBevelLight.green * brightness);
15792f86ba45SStephan Aßmus 		borderBevelLight.blue = uint8(borderBevelLight.blue * brightness);
15802f86ba45SStephan Aßmus 	}
15812f86ba45SStephan Aßmus 
15822f86ba45SStephan Aßmus 	_DrawFrame(view, rect, borderBevelShadow, borderBevelShadow,
15832f86ba45SStephan Aßmus 		borderBevelLight, borderBevelLight, borders);
15842f86ba45SStephan Aßmus }
15852f86ba45SStephan Aßmus 
15862f86ba45SStephan Aßmus 
15872f86ba45SStephan Aßmus void
15882f86ba45SStephan Aßmus BControlLook::_DrawFrame(BView* view, BRect& rect, const rgb_color& left,
15892f86ba45SStephan Aßmus 	const rgb_color& top, const rgb_color& right, const rgb_color& bottom,
15902f86ba45SStephan Aßmus 	uint32 borders)
15912f86ba45SStephan Aßmus {
15922f86ba45SStephan Aßmus 	view->BeginLineArray(4);
15932f86ba45SStephan Aßmus 
15942f86ba45SStephan Aßmus 	if (borders & B_LEFT_BORDER) {
15952f86ba45SStephan Aßmus 		view->AddLine(
15962f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
15972f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top), left);
15982f86ba45SStephan Aßmus 		rect.left++;
15992f86ba45SStephan Aßmus 	}
16002f86ba45SStephan Aßmus 	if (borders & B_TOP_BORDER) {
16012f86ba45SStephan Aßmus 		view->AddLine(
16022f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top),
16032f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top), top);
16042f86ba45SStephan Aßmus 		rect.top++;
16052f86ba45SStephan Aßmus 	}
16062f86ba45SStephan Aßmus 	if (borders & B_RIGHT_BORDER) {
16072f86ba45SStephan Aßmus 		view->AddLine(
16082f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top),
16092f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), right);
16102f86ba45SStephan Aßmus 		rect.right--;
16112f86ba45SStephan Aßmus 	}
16122f86ba45SStephan Aßmus 	if (borders & B_BOTTOM_BORDER) {
16132f86ba45SStephan Aßmus 		view->AddLine(
16142f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
16152f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), bottom);
16162f86ba45SStephan Aßmus 		rect.bottom--;
16172f86ba45SStephan Aßmus 	}
16182f86ba45SStephan Aßmus 
16192f86ba45SStephan Aßmus 	view->EndLineArray();
16202f86ba45SStephan Aßmus }
16212f86ba45SStephan Aßmus 
16222f86ba45SStephan Aßmus 
16232f86ba45SStephan Aßmus void
16242f86ba45SStephan Aßmus BControlLook::_DrawFrame(BView* view, BRect& rect, const rgb_color& left,
16252f86ba45SStephan Aßmus 	const rgb_color& top, const rgb_color& right, const rgb_color& bottom,
16262f86ba45SStephan Aßmus 	const rgb_color& rightTop, const rgb_color& leftBottom, uint32 borders)
16272f86ba45SStephan Aßmus {
16282f86ba45SStephan Aßmus 	view->BeginLineArray(6);
16292f86ba45SStephan Aßmus 
16302f86ba45SStephan Aßmus 	if (borders & B_TOP_BORDER) {
16312f86ba45SStephan Aßmus 		if (borders & B_RIGHT_BORDER) {
16322f86ba45SStephan Aßmus 			view->AddLine(
16332f86ba45SStephan Aßmus 				BPoint(rect.left, rect.top),
16342f86ba45SStephan Aßmus 				BPoint(rect.right - 1, rect.top), top);
16352f86ba45SStephan Aßmus 			view->AddLine(
16362f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top),
16372f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), rightTop);
16382f86ba45SStephan Aßmus 		} else {
16392f86ba45SStephan Aßmus 			view->AddLine(
16402f86ba45SStephan Aßmus 				BPoint(rect.left, rect.top),
16412f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), top);
16422f86ba45SStephan Aßmus 		}
16432f86ba45SStephan Aßmus 		rect.top++;
16442f86ba45SStephan Aßmus 	}
16452f86ba45SStephan Aßmus 
16462f86ba45SStephan Aßmus 	if (borders & B_LEFT_BORDER) {
16472f86ba45SStephan Aßmus 		view->AddLine(
16482f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top),
16492f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom - 1), left);
16502f86ba45SStephan Aßmus 		view->AddLine(
16512f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
16522f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom), leftBottom);
16532f86ba45SStephan Aßmus 		rect.left++;
16542f86ba45SStephan Aßmus 	}
16552f86ba45SStephan Aßmus 
16562f86ba45SStephan Aßmus 	if (borders & B_BOTTOM_BORDER) {
16572f86ba45SStephan Aßmus 		view->AddLine(
16582f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
16592f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), bottom);
16602f86ba45SStephan Aßmus 		rect.bottom--;
16612f86ba45SStephan Aßmus 	}
16622f86ba45SStephan Aßmus 
16632f86ba45SStephan Aßmus 	if (borders & B_RIGHT_BORDER) {
16642f86ba45SStephan Aßmus 		view->AddLine(
16652f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom),
16662f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top), right);
16672f86ba45SStephan Aßmus 		rect.right--;
16682f86ba45SStephan Aßmus 	}
16692f86ba45SStephan Aßmus 
16702f86ba45SStephan Aßmus 	view->EndLineArray();
16712f86ba45SStephan Aßmus }
16722f86ba45SStephan Aßmus 
16732f86ba45SStephan Aßmus 
16742f86ba45SStephan Aßmus //void
16752f86ba45SStephan Aßmus //BControlLook::_DrawShadowFrame(BView* view, BRect& rect, const rgb_color& base,
16762f86ba45SStephan Aßmus //	uint32 borders)
16772f86ba45SStephan Aßmus //{
16782f86ba45SStephan Aßmus //	view->BeginLineArray(4);
16792f86ba45SStephan Aßmus //
16802f86ba45SStephan Aßmus //	bevelColor1 = tint_color(base, 1.2);
16812f86ba45SStephan Aßmus //	bevelColor2 = tint_color(base, 1.1);
16822f86ba45SStephan Aßmus //
16832f86ba45SStephan Aßmus //	// shadow along left/top borders
16842f86ba45SStephan Aßmus //	if (rect.Height() > 0 && borders & B_LEFT_BORDER) {
16852f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
16862f86ba45SStephan Aßmus //			BPoint(rect.left, rect.bottom), bevelColor1);
16872f86ba45SStephan Aßmus //		rect.left++;
16882f86ba45SStephan Aßmus //	}
16892f86ba45SStephan Aßmus //	if (rect.Width() > 0 && borders & B_TOP_BORDER) {
16902f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
16912f86ba45SStephan Aßmus //			BPoint(rect.right, rect.top), bevelColor1);
16922f86ba45SStephan Aßmus //		rect.top++;
16932f86ba45SStephan Aßmus //	}
16942f86ba45SStephan Aßmus //
16952f86ba45SStephan Aßmus //	// softer shadow along left/top borders
16962f86ba45SStephan Aßmus //	if (rect.Height() > 0 && borders & B_LEFT_BORDER) {
16972f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
16982f86ba45SStephan Aßmus //			BPoint(rect.left, rect.bottom), bevelColor2);
16992f86ba45SStephan Aßmus //		rect.left++;
17002f86ba45SStephan Aßmus //	}
17012f86ba45SStephan Aßmus //	if (rect.Width() > 0 && borders & B_TOP_BORDER) {
17022f86ba45SStephan Aßmus //		view->AddLine(BPoint(rect.left, rect.top),
17032f86ba45SStephan Aßmus //			BPoint(rect.right, rect.top), bevelColor2);
17042f86ba45SStephan Aßmus //		rect.top++;
17052f86ba45SStephan Aßmus //	}
17062f86ba45SStephan Aßmus //
17072f86ba45SStephan Aßmus //	view->EndLineArray();
17082f86ba45SStephan Aßmus //}
17092f86ba45SStephan Aßmus 
17102f86ba45SStephan Aßmus 
17112f86ba45SStephan Aßmus void
17122f86ba45SStephan Aßmus BControlLook::_FillGradient(BView* view, const BRect& rect,
17132f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float bottomTint,
17142f86ba45SStephan Aßmus 	enum orientation orientation)
17152f86ba45SStephan Aßmus {
17162f86ba45SStephan Aßmus 	BGradientLinear gradient;
17172f86ba45SStephan Aßmus 	_MakeGradient(gradient, rect, base, topTint, bottomTint, orientation);
17182f86ba45SStephan Aßmus 	view->FillRect(rect, gradient);
17192f86ba45SStephan Aßmus }
17202f86ba45SStephan Aßmus 
17212f86ba45SStephan Aßmus 
17222f86ba45SStephan Aßmus void
17232f86ba45SStephan Aßmus BControlLook::_FillGlossyGradient(BView* view, const BRect& rect,
17242f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float middle1Tint,
17252f86ba45SStephan Aßmus 	float middle2Tint, float bottomTint, enum orientation orientation)
17262f86ba45SStephan Aßmus {
17272f86ba45SStephan Aßmus 	BGradientLinear gradient;
17282f86ba45SStephan Aßmus 	_MakeGlossyGradient(gradient, rect, base, topTint, middle1Tint,
17292f86ba45SStephan Aßmus 		middle2Tint, bottomTint, orientation);
17302f86ba45SStephan Aßmus 	view->FillRect(rect, gradient);
17312f86ba45SStephan Aßmus }
17322f86ba45SStephan Aßmus 
17332f86ba45SStephan Aßmus 
17342f86ba45SStephan Aßmus void
17352f86ba45SStephan Aßmus BControlLook::_MakeGradient(BGradientLinear& gradient, const BRect& rect,
17362f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float bottomTint,
17372f86ba45SStephan Aßmus 	enum orientation orientation) const
17382f86ba45SStephan Aßmus {
17392f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, topTint), 0);
17402f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, bottomTint), 255);
17412f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
17422f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
17432f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
17442f86ba45SStephan Aßmus 	else
17452f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
17462f86ba45SStephan Aßmus }
17472f86ba45SStephan Aßmus 
17482f86ba45SStephan Aßmus 
17492f86ba45SStephan Aßmus void
17502f86ba45SStephan Aßmus BControlLook::_MakeGlossyGradient(BGradientLinear& gradient, const BRect& rect,
17512f86ba45SStephan Aßmus 	const rgb_color& base, float topTint, float middle1Tint,
17522f86ba45SStephan Aßmus 	float middle2Tint, float bottomTint,
17532f86ba45SStephan Aßmus 	enum orientation orientation) const
17542f86ba45SStephan Aßmus {
17552f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, topTint), 0);
17562f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, middle1Tint), 132);
17572f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, middle2Tint), 136);
17582f86ba45SStephan Aßmus 	gradient.AddColor(tint_color(base, bottomTint), 255);
17592f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
17602f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
17612f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
17622f86ba45SStephan Aßmus 	else
17632f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
17642f86ba45SStephan Aßmus }
17652f86ba45SStephan Aßmus 
17662f86ba45SStephan Aßmus 
17672f86ba45SStephan Aßmus bool
17682f86ba45SStephan Aßmus BControlLook::_RadioButtonAndCheckBoxMarkColor(const rgb_color& base,
17692f86ba45SStephan Aßmus 	rgb_color& color, uint32 flags) const
17702f86ba45SStephan Aßmus {
17712f86ba45SStephan Aßmus 	if ((flags & (B_ACTIVATED | B_CLICKED)) == 0) {
17722f86ba45SStephan Aßmus 		// no mark to be drawn at all
17732f86ba45SStephan Aßmus 		return false;
17742f86ba45SStephan Aßmus 	}
17752f86ba45SStephan Aßmus 
17762f86ba45SStephan Aßmus 	// TODO: Get from UI settings
17772f86ba45SStephan Aßmus 	color.red = 27;
17782f86ba45SStephan Aßmus 	color.green = 82;
17792f86ba45SStephan Aßmus 	color.blue = 140;
17802f86ba45SStephan Aßmus 
17812f86ba45SStephan Aßmus 	float mix = 1.0;
17822f86ba45SStephan Aßmus 
17832f86ba45SStephan Aßmus 	if (flags & B_DISABLED) {
17842f86ba45SStephan Aßmus 		// activated, but disabled
17852f86ba45SStephan Aßmus 		mix = 0.4;
17862f86ba45SStephan Aßmus 	} else if (flags & B_CLICKED) {
17872f86ba45SStephan Aßmus 		if (flags & B_ACTIVATED) {
17882f86ba45SStephan Aßmus 			// loosing activation
17892f86ba45SStephan Aßmus 			mix = 0.7;
17902f86ba45SStephan Aßmus 		} else {
17912f86ba45SStephan Aßmus 			// becoming activated
17922f86ba45SStephan Aßmus 			mix = 0.3;
17932f86ba45SStephan Aßmus 		}
17942f86ba45SStephan Aßmus 	} else {
17952f86ba45SStephan Aßmus 		// simply activated
17962f86ba45SStephan Aßmus 	}
17972f86ba45SStephan Aßmus 
17982f86ba45SStephan Aßmus 	color.red = uint8(color.red * mix + base.red * (1.0 - mix));
17992f86ba45SStephan Aßmus 	color.green = uint8(color.green * mix + base.green * (1.0 - mix));
18002f86ba45SStephan Aßmus 	color.blue = uint8(color.blue * mix + base.blue * (1.0 - mix));
18012f86ba45SStephan Aßmus 
18022f86ba45SStephan Aßmus 	return true;
18032f86ba45SStephan Aßmus }
18042f86ba45SStephan Aßmus 
18052f86ba45SStephan Aßmus 
18062f86ba45SStephan Aßmus void
18072f86ba45SStephan Aßmus BControlLook::_DrawRoundBarCorner(BView* view, BRect& rect,
18082f86ba45SStephan Aßmus 	const BRect& updateRect,
18092f86ba45SStephan Aßmus 	const rgb_color& edgeLightColor, const rgb_color& edgeShadowColor,
18102f86ba45SStephan Aßmus 	const rgb_color& frameLightColor, const rgb_color& frameShadowColor,
18112f86ba45SStephan Aßmus 	const rgb_color& fillLightColor, const rgb_color& fillShadowColor,
18122f86ba45SStephan Aßmus 	float leftInset, float topInset, float rightInset, float bottomInset,
18132f86ba45SStephan Aßmus 	enum orientation orientation)
18142f86ba45SStephan Aßmus {
18152f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
18162f86ba45SStephan Aßmus 		return;
18172f86ba45SStephan Aßmus 
18182f86ba45SStephan Aßmus 	BGradientLinear gradient;
18192f86ba45SStephan Aßmus 	gradient.AddColor(edgeShadowColor, 0);
18202f86ba45SStephan Aßmus 	gradient.AddColor(edgeLightColor, 255);
18212f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
18222f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
18232f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
18242f86ba45SStephan Aßmus 	else
18252f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
18262f86ba45SStephan Aßmus 
18272f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
18282f86ba45SStephan Aßmus 
18292f86ba45SStephan Aßmus 	rect.left += leftInset;
18302f86ba45SStephan Aßmus 	rect.top += topInset;
18312f86ba45SStephan Aßmus 	rect.right += rightInset;
18322f86ba45SStephan Aßmus 	rect.bottom += bottomInset;
18332f86ba45SStephan Aßmus 
18342f86ba45SStephan Aßmus 	gradient.MakeEmpty();
18352f86ba45SStephan Aßmus 	gradient.AddColor(frameShadowColor, 0);
18362f86ba45SStephan Aßmus 	gradient.AddColor(frameLightColor, 255);
18372f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
18382f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
18392f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
18402f86ba45SStephan Aßmus 	else
18412f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
18422f86ba45SStephan Aßmus 
18432f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
18442f86ba45SStephan Aßmus 
18452f86ba45SStephan Aßmus 	rect.left += leftInset;
18462f86ba45SStephan Aßmus 	rect.top += topInset;
18472f86ba45SStephan Aßmus 	rect.right += rightInset;
18482f86ba45SStephan Aßmus 	rect.bottom += bottomInset;
18492f86ba45SStephan Aßmus 
18502f86ba45SStephan Aßmus 	gradient.MakeEmpty();
18512f86ba45SStephan Aßmus 	gradient.AddColor(fillShadowColor, 0);
18522f86ba45SStephan Aßmus 	gradient.AddColor(fillLightColor, 255);
18532f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
18542f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
18552f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
18562f86ba45SStephan Aßmus 	else
18572f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
18582f86ba45SStephan Aßmus 
18592f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
18602f86ba45SStephan Aßmus }
18612f86ba45SStephan Aßmus 
18622f86ba45SStephan Aßmus 
18632f86ba45SStephan Aßmus void
18642f86ba45SStephan Aßmus BControlLook::_DrawRoundCornerLeftTop(BView* view, BRect& rect,
18652f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, const rgb_color& edgeColor,
18662f86ba45SStephan Aßmus 	const rgb_color& frameColor, const rgb_color& bevelColor,
18672f86ba45SStephan Aßmus 	const BGradientLinear& fillGradient)
18682f86ba45SStephan Aßmus {
18692f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
18702f86ba45SStephan Aßmus 		return;
18712f86ba45SStephan Aßmus 
18722f86ba45SStephan Aßmus 	BRegion clipping(rect);
18732f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&clipping);
18742f86ba45SStephan Aßmus 
18752f86ba45SStephan Aßmus 	// background
18762f86ba45SStephan Aßmus 	view->SetHighColor(base);
18772f86ba45SStephan Aßmus 	view->FillRect(rect);
18782f86ba45SStephan Aßmus 
18792f86ba45SStephan Aßmus 	// outer edge
18802f86ba45SStephan Aßmus 	BRect ellipseRect(rect);
18812f86ba45SStephan Aßmus 	ellipseRect.right = ellipseRect.left + ellipseRect.Width() * 2;
18822f86ba45SStephan Aßmus 	ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
18832f86ba45SStephan Aßmus 
18842f86ba45SStephan Aßmus 	view->SetHighColor(edgeColor);
18852f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect);
18862f86ba45SStephan Aßmus 
18872f86ba45SStephan Aßmus 	// frame
18882f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
18892f86ba45SStephan Aßmus 	view->SetHighColor(frameColor);
18902f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect);
18912f86ba45SStephan Aßmus 
18922f86ba45SStephan Aßmus 	// bevel
18932f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
18942f86ba45SStephan Aßmus 	view->SetHighColor(bevelColor);
18952f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect);
18962f86ba45SStephan Aßmus 
18972f86ba45SStephan Aßmus 	// fill
18982f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
18992f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, fillGradient);
19002f86ba45SStephan Aßmus 
19012f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
19022f86ba45SStephan Aßmus }
19032f86ba45SStephan Aßmus 
19042f86ba45SStephan Aßmus void
19052f86ba45SStephan Aßmus BControlLook::_DrawRoundCornerRightTop(BView* view, BRect& rect,
19062f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base,
19072f86ba45SStephan Aßmus 	const rgb_color& edgeTopColor, const rgb_color& edgeRightColor,
19082f86ba45SStephan Aßmus 	const rgb_color& frameTopColor, const rgb_color& frameRightColor,
19092f86ba45SStephan Aßmus 	const rgb_color& bevelTopColor, const rgb_color& bevelRightColor,
19102f86ba45SStephan Aßmus 	const BGradientLinear& fillGradient)
19112f86ba45SStephan Aßmus {
19122f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
19132f86ba45SStephan Aßmus 		return;
19142f86ba45SStephan Aßmus 
19152f86ba45SStephan Aßmus 	BRegion clipping(rect);
19162f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&clipping);
19172f86ba45SStephan Aßmus 
19182f86ba45SStephan Aßmus 	// background
19192f86ba45SStephan Aßmus 	view->SetHighColor(base);
19202f86ba45SStephan Aßmus 	view->FillRect(rect);
19212f86ba45SStephan Aßmus 
19222f86ba45SStephan Aßmus 	// outer edge
19232f86ba45SStephan Aßmus 	BRect ellipseRect(rect);
19242f86ba45SStephan Aßmus 	ellipseRect.left = ellipseRect.right - ellipseRect.Width() * 2;
19252f86ba45SStephan Aßmus 	ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
19262f86ba45SStephan Aßmus 
19272f86ba45SStephan Aßmus 	BGradientLinear gradient;
19282f86ba45SStephan Aßmus 	gradient.AddColor(edgeTopColor, 0);
19292f86ba45SStephan Aßmus 	gradient.AddColor(edgeRightColor, 255);
19302f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
19312f86ba45SStephan Aßmus 	gradient.SetEnd(rect.RightBottom());
19322f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, gradient);
19332f86ba45SStephan Aßmus 
19342f86ba45SStephan Aßmus 	// frame
19352f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
19362f86ba45SStephan Aßmus 	rect.right--;
19372f86ba45SStephan Aßmus 	rect.top++;
19382f86ba45SStephan Aßmus 	if (frameTopColor == frameRightColor) {
19392f86ba45SStephan Aßmus 		view->SetHighColor(frameTopColor);
19402f86ba45SStephan Aßmus 		view->FillEllipse(ellipseRect);
19412f86ba45SStephan Aßmus 	} else {
19422f86ba45SStephan Aßmus 		gradient.SetColor(0, frameTopColor);
19432f86ba45SStephan Aßmus 		gradient.SetColor(1, frameRightColor);
19442f86ba45SStephan Aßmus 		gradient.SetStart(rect.LeftTop());
19452f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightBottom());
19462f86ba45SStephan Aßmus 		view->FillEllipse(ellipseRect, gradient);
19472f86ba45SStephan Aßmus 	}
19482f86ba45SStephan Aßmus 
19492f86ba45SStephan Aßmus 	// bevel
19502f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
19512f86ba45SStephan Aßmus 	rect.right--;
19522f86ba45SStephan Aßmus 	rect.top++;
19532f86ba45SStephan Aßmus 	gradient.SetColor(0, bevelTopColor);
19542f86ba45SStephan Aßmus 	gradient.SetColor(1, bevelRightColor);
19552f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
19562f86ba45SStephan Aßmus 	gradient.SetEnd(rect.RightBottom());
19572f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, gradient);
19582f86ba45SStephan Aßmus 
19592f86ba45SStephan Aßmus 	// fill
19602f86ba45SStephan Aßmus 	ellipseRect.InsetBy(1, 1);
19612f86ba45SStephan Aßmus 	view->FillEllipse(ellipseRect, fillGradient);
19622f86ba45SStephan Aßmus 
19632f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
19642f86ba45SStephan Aßmus }
19652f86ba45SStephan Aßmus 
19662f86ba45SStephan Aßmus 
19672f86ba45SStephan Aßmus // NOTE: May come from a add-on in the future. Initialized in
19682f86ba45SStephan Aßmus // InterfaceDefs.cpp
19692f86ba45SStephan Aßmus BControlLook* be_control_look = NULL;
19702f86ba45SStephan Aßmus 
19712f86ba45SStephan Aßmus } // namespace BPrivate
1972