xref: /haiku/src/kits/interface/ControlLook.cpp (revision 1c69e1c306186ef5f58e377835ed00a51ffcc955)
12f86ba45SStephan Aßmus /*
22f86ba45SStephan Aßmus  * Copyright 2009, Stephan Aßmus <superstippi@gmx.de>
3a0848a19SIngo Weinhold  * Copyright 2012-2013, Haiku Inc. All rights reserved.
42f86ba45SStephan Aßmus  * Distributed under the terms of the MIT License.
5a884b43bSJohn Scipione  *
6a884b43bSJohn Scipione  * Authors:
7a884b43bSJohn Scipione  *		John Scipione <jscipione@gmail.com>
82f86ba45SStephan Aßmus  */
9d452ff66SAxel Dörfler 
10d452ff66SAxel Dörfler 
112f86ba45SStephan Aßmus #include <ControlLook.h>
122f86ba45SStephan Aßmus 
131b848ee7SIngo Weinhold #include <algorithm>
141b848ee7SIngo Weinhold 
152f86ba45SStephan Aßmus #include <Control.h>
162f86ba45SStephan Aßmus #include <GradientLinear.h>
171b848ee7SIngo Weinhold #include <LayoutUtils.h>
182f86ba45SStephan Aßmus #include <Region.h>
192f86ba45SStephan Aßmus #include <Shape.h>
202f86ba45SStephan Aßmus #include <String.h>
212f86ba45SStephan Aßmus #include <View.h>
22d63b75faSPhilippe Saint-Pierre #include <Window.h>
232f86ba45SStephan Aßmus 
24a884b43bSJohn Scipione #include "ContainerWindow.h"
25a884b43bSJohn Scipione 
26a884b43bSJohn Scipione 
272f86ba45SStephan Aßmus namespace BPrivate {
282f86ba45SStephan Aßmus 
29a884b43bSJohn Scipione 
302f86ba45SStephan Aßmus static const float kEdgeBevelLightTint = 0.59;
312f86ba45SStephan Aßmus static const float kEdgeBevelShadowTint = 1.0735;
32a0848a19SIngo Weinhold static const float kHoverTintFactor = 0.85;
33a0848a19SIngo Weinhold 
34a0848a19SIngo Weinhold static const float kButtonPopUpIndicatorWidth = 11;
352f86ba45SStephan Aßmus 
362f86ba45SStephan Aßmus 
37d63b75faSPhilippe Saint-Pierre BControlLook::BControlLook():
38d63b75faSPhilippe Saint-Pierre 	fCachedOutline(false),
39d63b75faSPhilippe Saint-Pierre 	fCachedWorkspace(-1)
402f86ba45SStephan Aßmus {
412f86ba45SStephan Aßmus }
422f86ba45SStephan Aßmus 
432f86ba45SStephan Aßmus 
442f86ba45SStephan Aßmus BControlLook::~BControlLook()
452f86ba45SStephan Aßmus {
462f86ba45SStephan Aßmus }
472f86ba45SStephan Aßmus 
482f86ba45SStephan Aßmus 
492f86ba45SStephan Aßmus BAlignment
502f86ba45SStephan Aßmus BControlLook::DefaultLabelAlignment() const
512f86ba45SStephan Aßmus {
522f86ba45SStephan Aßmus 	return BAlignment(B_ALIGN_LEFT, B_ALIGN_VERTICAL_CENTER);
532f86ba45SStephan Aßmus }
542f86ba45SStephan Aßmus 
552f86ba45SStephan Aßmus 
562f86ba45SStephan Aßmus float
572f86ba45SStephan Aßmus BControlLook::DefaultLabelSpacing() const
582f86ba45SStephan Aßmus {
5920a11271SAxel Dörfler 	return ceilf(be_plain_font->Size() / 2.0);
6020a11271SAxel Dörfler }
6120a11271SAxel Dörfler 
6220a11271SAxel Dörfler 
6320a11271SAxel Dörfler float
6420a11271SAxel Dörfler BControlLook::DefaultItemSpacing() const
6520a11271SAxel Dörfler {
6620a11271SAxel Dörfler 	return ceilf(be_plain_font->Size() * 0.85);
672f86ba45SStephan Aßmus }
682f86ba45SStephan Aßmus 
692f86ba45SStephan Aßmus 
7082ab3167SAlex Wilson float
716648dd3cSAlex Wilson BControlLook::ComposeSpacing(float spacing)
7282ab3167SAlex Wilson {
73d90a465eSAlex Wilson 	if (spacing == B_USE_DEFAULT_SPACING || spacing == B_USE_ITEM_SPACING) {
7482ab3167SAlex Wilson 		return be_control_look->DefaultItemSpacing();
756648dd3cSAlex Wilson 	} else if (spacing == B_USE_HALF_ITEM_SPACING) {
76a8b89c6bSStephan Aßmus 		return ceilf(be_control_look->DefaultItemSpacing() * 0.5f);
776648dd3cSAlex Wilson 	} else if (spacing == B_USE_WINDOW_INSETS) {
786648dd3cSAlex Wilson 		return be_control_look->DefaultItemSpacing();
796648dd3cSAlex Wilson 	} else if (spacing == B_USE_SMALL_SPACING) {
80a8b89c6bSStephan Aßmus 		return ceilf(be_control_look->DefaultItemSpacing() * 0.7f);
816648dd3cSAlex Wilson 	} else if (spacing == B_USE_BIG_SPACING) {
82a8b89c6bSStephan Aßmus 		return ceilf(be_control_look->DefaultItemSpacing() * 1.3f);
836648dd3cSAlex Wilson 	}
846648dd3cSAlex Wilson 	return spacing;
8582ab3167SAlex Wilson }
8682ab3167SAlex Wilson 
8782ab3167SAlex Wilson 
882f86ba45SStephan Aßmus uint32
892f86ba45SStephan Aßmus BControlLook::Flags(BControl* control) const
902f86ba45SStephan Aßmus {
912f86ba45SStephan Aßmus 	uint32 flags = 0;
922f86ba45SStephan Aßmus 
932f86ba45SStephan Aßmus 	if (!control->IsEnabled())
942f86ba45SStephan Aßmus 		flags |= B_DISABLED;
952f86ba45SStephan Aßmus 
96d38ba8f7SJohn Scipione 	if (control->IsFocus() && control->Window() != NULL
97d38ba8f7SJohn Scipione 		&& control->Window()->IsActive()) {
982f86ba45SStephan Aßmus 		flags |= B_FOCUSED;
9959655dcbSJohn Scipione 	}
1002f86ba45SStephan Aßmus 
101df37cd4eSIngo Weinhold 	switch (control->Value()) {
102df37cd4eSIngo Weinhold 		case B_CONTROL_ON:
1032f86ba45SStephan Aßmus 			flags |= B_ACTIVATED;
104df37cd4eSIngo Weinhold 			break;
105df37cd4eSIngo Weinhold 		case B_CONTROL_PARTIALLY_ON:
106df37cd4eSIngo Weinhold 			flags |= B_PARTIALLY_ACTIVATED;
107df37cd4eSIngo Weinhold 			break;
108df37cd4eSIngo Weinhold 	}
1092f86ba45SStephan Aßmus 
11061ac1a85SStephan Aßmus 	if (control->Parent() != NULL
11161ac1a85SStephan Aßmus 		&& (control->Parent()->Flags() & B_DRAW_ON_CHILDREN) != 0) {
11261ac1a85SStephan Aßmus 		// In this constellation, assume we want to render the control
11361ac1a85SStephan Aßmus 		// against the already existing view contents of the parent view.
11461ac1a85SStephan Aßmus 		flags |= B_BLEND_FRAME;
11561ac1a85SStephan Aßmus 	}
11661ac1a85SStephan Aßmus 
1172f86ba45SStephan Aßmus 	return flags;
1182f86ba45SStephan Aßmus }
1192f86ba45SStephan Aßmus 
1202f86ba45SStephan Aßmus 
1212f86ba45SStephan Aßmus // #pragma mark -
1222f86ba45SStephan Aßmus 
1232f86ba45SStephan Aßmus 
1242f86ba45SStephan Aßmus void
1252f86ba45SStephan Aßmus BControlLook::DrawButtonFrame(BView* view, BRect& rect, const BRect& updateRect,
126681c2e44SStephan Aßmus 	const rgb_color& base, const rgb_color& background, uint32 flags,
127681c2e44SStephan Aßmus 	uint32 borders)
1282f86ba45SStephan Aßmus {
129a884b43bSJohn Scipione 	_DrawButtonFrame(view, rect, updateRect, 0.0f, 0.0f, 0.0f, 0.0f, base,
130a884b43bSJohn Scipione 		background, 1.0, 1.0, flags, borders);
131a884b43bSJohn Scipione }
132a884b43bSJohn Scipione 
133a884b43bSJohn Scipione 
134a884b43bSJohn Scipione void
135a884b43bSJohn Scipione BControlLook::DrawButtonFrame(BView* view, BRect& rect, const BRect& updateRect,
136a884b43bSJohn Scipione 	float radius, const rgb_color& base, const rgb_color& background, uint32 flags,
137a884b43bSJohn Scipione 	uint32 borders)
138a884b43bSJohn Scipione {
139a884b43bSJohn Scipione 	_DrawButtonFrame(view, rect, updateRect, radius, radius, radius, radius,
140a884b43bSJohn Scipione 		base, background, 1.0, 1.0, flags, borders);
141a884b43bSJohn Scipione }
142a884b43bSJohn Scipione 
143a884b43bSJohn Scipione 
144a884b43bSJohn Scipione void
145a884b43bSJohn Scipione BControlLook::DrawButtonFrame(BView* view, BRect& rect,
146a884b43bSJohn Scipione 	const BRect& updateRect, float leftTopRadius, float rightTopRadius,
147a884b43bSJohn Scipione 	float leftBottomRadius, float rightBottomRadius, const rgb_color& base,
148a884b43bSJohn Scipione 	const rgb_color& background, uint32 flags,
149a884b43bSJohn Scipione 	uint32 borders)
150a884b43bSJohn Scipione {
151a884b43bSJohn Scipione 	_DrawButtonFrame(view, rect, updateRect, leftTopRadius, rightTopRadius,
152a884b43bSJohn Scipione 		leftBottomRadius, rightBottomRadius, base, background,
153a884b43bSJohn Scipione 		1.0, 1.0, flags, borders);
1542f86ba45SStephan Aßmus }
1552f86ba45SStephan Aßmus 
1562f86ba45SStephan Aßmus 
1572f86ba45SStephan Aßmus void
1582f86ba45SStephan Aßmus BControlLook::DrawButtonBackground(BView* view, BRect& rect,
1592f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
160e724b26fSJohn Scipione 	uint32 borders, orientation orientation)
1612f86ba45SStephan Aßmus {
162a884b43bSJohn Scipione 	_DrawButtonBackground(view, rect, updateRect, 0.0f, 0.0f, 0.0f, 0.0f,
163a0848a19SIngo Weinhold 		base, false, flags, borders, orientation);
1642f86ba45SStephan Aßmus }
1652f86ba45SStephan Aßmus 
1662f86ba45SStephan Aßmus 
167a884b43bSJohn Scipione void
168a884b43bSJohn Scipione BControlLook::DrawButtonBackground(BView* view, BRect& rect,
169a884b43bSJohn Scipione 	const BRect& updateRect, float radius, const rgb_color& base, uint32 flags,
170e724b26fSJohn Scipione 	uint32 borders, orientation orientation)
171a884b43bSJohn Scipione {
172a884b43bSJohn Scipione 	_DrawButtonBackground(view, rect, updateRect, radius, radius, radius,
173a0848a19SIngo Weinhold 		radius, base, false, flags, borders, orientation);
1742f86ba45SStephan Aßmus }
1752f86ba45SStephan Aßmus 
1762f86ba45SStephan Aßmus 
177a884b43bSJohn Scipione void
178a884b43bSJohn Scipione BControlLook::DrawButtonBackground(BView* view, BRect& rect,
179a884b43bSJohn Scipione 	const BRect& updateRect, float leftTopRadius, float rightTopRadius,
180a884b43bSJohn Scipione 	float leftBottomRadius, float rightBottomRadius, const rgb_color& base,
181e724b26fSJohn Scipione 	uint32 flags, uint32 borders, orientation orientation)
182a884b43bSJohn Scipione {
183a884b43bSJohn Scipione 	_DrawButtonBackground(view, rect, updateRect, leftTopRadius,
184a0848a19SIngo Weinhold 		rightTopRadius, leftBottomRadius, rightBottomRadius, base, false, flags,
185a884b43bSJohn Scipione 		borders, orientation);
1862f86ba45SStephan Aßmus }
1872f86ba45SStephan Aßmus 
1882f86ba45SStephan Aßmus 
1892f86ba45SStephan Aßmus void
1902f86ba45SStephan Aßmus BControlLook::DrawMenuBarBackground(BView* view, BRect& rect,
1911a72cb41SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
1921a72cb41SStephan Aßmus 	uint32 borders)
1932f86ba45SStephan Aßmus {
194a884b43bSJohn Scipione 	if (!rect.IsValid() || !rect.Intersects(updateRect))
1952f86ba45SStephan Aßmus 		return;
1962f86ba45SStephan Aßmus 
1972f86ba45SStephan Aßmus 	// the surface edges
1982f86ba45SStephan Aßmus 
1992f86ba45SStephan Aßmus 	// colors
2001a72cb41SStephan Aßmus 	float topTint;
2011a72cb41SStephan Aßmus 	float bottomTint;
2021a72cb41SStephan Aßmus 
203a884b43bSJohn Scipione 	if ((flags & B_ACTIVATED) != 0) {
2041a72cb41SStephan Aßmus 		rgb_color bevelColor1 = tint_color(base, 1.40);
2051a72cb41SStephan Aßmus 		rgb_color bevelColor2 = tint_color(base, 1.25);
2061a72cb41SStephan Aßmus 
2071a72cb41SStephan Aßmus 		topTint = 1.25;
2081a72cb41SStephan Aßmus 		bottomTint = 1.20;
2092f86ba45SStephan Aßmus 
2102f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
2111a72cb41SStephan Aßmus 			bevelColor1, bevelColor1,
2121a72cb41SStephan Aßmus 			bevelColor2, bevelColor2,
2131a72cb41SStephan Aßmus 			borders & B_TOP_BORDER);
2141a72cb41SStephan Aßmus 	} else {
2151a72cb41SStephan Aßmus 		rgb_color cornerColor = tint_color(base, 0.9);
2161a72cb41SStephan Aßmus 		rgb_color bevelColorTop = tint_color(base, 0.5);
2171a72cb41SStephan Aßmus 		rgb_color bevelColorLeft = tint_color(base, 0.7);
2181a72cb41SStephan Aßmus 		rgb_color bevelColorRightBottom = tint_color(base, 1.08);
2191a72cb41SStephan Aßmus 
2201a72cb41SStephan Aßmus 		topTint = 0.69;
2211a72cb41SStephan Aßmus 		bottomTint = 1.03;
2221a72cb41SStephan Aßmus 
2231a72cb41SStephan Aßmus 		_DrawFrame(view, rect,
2241a72cb41SStephan Aßmus 			bevelColorLeft, bevelColorTop,
2251a72cb41SStephan Aßmus 			bevelColorRightBottom, bevelColorRightBottom,
2262f86ba45SStephan Aßmus 			cornerColor, cornerColor,
2272f86ba45SStephan Aßmus 			borders);
2281a72cb41SStephan Aßmus 	}
2292f86ba45SStephan Aßmus 
230a884b43bSJohn Scipione 	// draw surface top
2312f86ba45SStephan Aßmus 	_FillGradient(view, rect, base, topTint, bottomTint);
2322f86ba45SStephan Aßmus }
2332f86ba45SStephan Aßmus 
2342f86ba45SStephan Aßmus 
2352f86ba45SStephan Aßmus void
236681c2e44SStephan Aßmus BControlLook::DrawMenuFieldFrame(BView* view, BRect& rect,
237681c2e44SStephan Aßmus 	const BRect& updateRect, const rgb_color& base,
238681c2e44SStephan Aßmus 	const rgb_color& background, uint32 flags, uint32 borders)
23913cd46dfSStephan Aßmus {
240a884b43bSJohn Scipione 	_DrawButtonFrame(view, rect, updateRect, 0.0f, 0.0f, 0.0f, 0.0f, base,
241a884b43bSJohn Scipione 		background, 0.6, 1.0, flags, borders);
242a884b43bSJohn Scipione }
243a884b43bSJohn Scipione 
244a884b43bSJohn Scipione 
245a884b43bSJohn Scipione void
246a884b43bSJohn Scipione BControlLook::DrawMenuFieldFrame(BView* view, BRect& rect,
247a884b43bSJohn Scipione 	const BRect& updateRect, float radius, const rgb_color& base,
248a884b43bSJohn Scipione 	const rgb_color& background, uint32 flags, uint32 borders)
249a884b43bSJohn Scipione {
250a884b43bSJohn Scipione 	_DrawButtonFrame(view, rect, updateRect, radius, radius, radius, radius,
251a884b43bSJohn Scipione 		base, background, 0.6, 1.0, flags, borders);
252a884b43bSJohn Scipione }
253a884b43bSJohn Scipione 
254a884b43bSJohn Scipione 
255a884b43bSJohn Scipione void
256a884b43bSJohn Scipione BControlLook::DrawMenuFieldFrame(BView* view, BRect& rect,
257a884b43bSJohn Scipione 	const BRect& updateRect, float leftTopRadius,
258a884b43bSJohn Scipione 	float rightTopRadius, float leftBottomRadius,
259a884b43bSJohn Scipione 	float rightBottomRadius, const rgb_color& base,
260a884b43bSJohn Scipione 	const rgb_color& background, uint32 flags, uint32 borders)
261a884b43bSJohn Scipione {
262a884b43bSJohn Scipione 	_DrawButtonFrame(view, rect, updateRect, leftTopRadius, rightTopRadius,
263a884b43bSJohn Scipione 		leftBottomRadius, rightBottomRadius, base, background, 0.6, 1.0,
264a884b43bSJohn Scipione 		flags, borders);
26513cd46dfSStephan Aßmus }
26613cd46dfSStephan Aßmus 
26713cd46dfSStephan Aßmus 
26813cd46dfSStephan Aßmus void
2692f86ba45SStephan Aßmus BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect,
2702f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, bool popupIndicator,
2712f86ba45SStephan Aßmus 	uint32 flags)
2722f86ba45SStephan Aßmus {
273a884b43bSJohn Scipione 	_DrawMenuFieldBackgroundOutside(view, rect, updateRect,
274a884b43bSJohn Scipione 		0.0f, 0.0f, 0.0f, 0.0f, base, popupIndicator, flags);
2752f86ba45SStephan Aßmus }
2762f86ba45SStephan Aßmus 
2772f86ba45SStephan Aßmus 
2782f86ba45SStephan Aßmus void
2792f86ba45SStephan Aßmus BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect,
2802f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
2812f86ba45SStephan Aßmus 	uint32 borders)
2822f86ba45SStephan Aßmus {
283a884b43bSJohn Scipione 	_DrawMenuFieldBackgroundInside(view, rect, updateRect,
284a884b43bSJohn Scipione 		0.0f, 0.0f, 0.0f, 0.0f, base, flags, borders);
2852f86ba45SStephan Aßmus }
2862f86ba45SStephan Aßmus 
2872f86ba45SStephan Aßmus 
288a884b43bSJohn Scipione void
289a884b43bSJohn Scipione BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect,
290a884b43bSJohn Scipione 	const BRect& updateRect, float radius, const rgb_color& base,
291a884b43bSJohn Scipione 	bool popupIndicator, uint32 flags)
292a884b43bSJohn Scipione {
293a884b43bSJohn Scipione 	_DrawMenuFieldBackgroundOutside(view, rect, updateRect, radius, radius,
294a884b43bSJohn Scipione 		radius, radius, base, popupIndicator, flags);
2952f86ba45SStephan Aßmus }
2962f86ba45SStephan Aßmus 
297a884b43bSJohn Scipione 
298a884b43bSJohn Scipione void
299a884b43bSJohn Scipione BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect,
300a884b43bSJohn Scipione 	const BRect& updateRect, float leftTopRadius, float rightTopRadius,
301a884b43bSJohn Scipione 	float leftBottomRadius, float rightBottomRadius, const rgb_color& base,
302a884b43bSJohn Scipione 	bool popupIndicator, uint32 flags)
303a884b43bSJohn Scipione {
304a884b43bSJohn Scipione 	_DrawMenuFieldBackgroundOutside(view, rect, updateRect, leftTopRadius,
305a884b43bSJohn Scipione 		rightTopRadius, leftBottomRadius, rightBottomRadius, base,
306a884b43bSJohn Scipione 		popupIndicator, flags);
3072f86ba45SStephan Aßmus }
3082f86ba45SStephan Aßmus 
309a884b43bSJohn Scipione 
3102f86ba45SStephan Aßmus void
3112f86ba45SStephan Aßmus BControlLook::DrawMenuBackground(BView* view, BRect& rect,
3122f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
3132f86ba45SStephan Aßmus 	uint32 borders)
3142f86ba45SStephan Aßmus {
315a884b43bSJohn Scipione 	if (!rect.IsValid() || !rect.Intersects(updateRect))
3162f86ba45SStephan Aßmus 		return;
3172f86ba45SStephan Aßmus 
318a884b43bSJohn Scipione 	// surface top color
3192f86ba45SStephan Aßmus 	rgb_color background = tint_color(base, 0.75);
3202f86ba45SStephan Aßmus 
321a884b43bSJohn Scipione 	// inner bevel colors
322a884b43bSJohn Scipione 	rgb_color bevelLightColor;
323a884b43bSJohn Scipione 	rgb_color bevelShadowColor;
324a884b43bSJohn Scipione 
325a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
3262f86ba45SStephan Aßmus 		bevelLightColor = tint_color(background, 0.80);
3272f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(background, 1.07);
3282f86ba45SStephan Aßmus 	} else {
3292f86ba45SStephan Aßmus 		bevelLightColor = tint_color(background, 0.6);
3302f86ba45SStephan Aßmus 		bevelShadowColor = tint_color(background, 1.12);
3312f86ba45SStephan Aßmus 	}
3322f86ba45SStephan Aßmus 
333a884b43bSJohn Scipione 	// draw inner bevel
3342f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
3352f86ba45SStephan Aßmus 		bevelLightColor, bevelLightColor,
3362f86ba45SStephan Aßmus 		bevelShadowColor, bevelShadowColor,
3372f86ba45SStephan Aßmus 		borders);
3382f86ba45SStephan Aßmus 
339a884b43bSJohn Scipione 	// draw surface top
3402f86ba45SStephan Aßmus 	view->SetHighColor(background);
3412f86ba45SStephan Aßmus 	view->FillRect(rect);
3422f86ba45SStephan Aßmus }
3432f86ba45SStephan Aßmus 
3442f86ba45SStephan Aßmus 
3452f86ba45SStephan Aßmus void
3462f86ba45SStephan Aßmus BControlLook::DrawMenuItemBackground(BView* view, BRect& rect,
3472f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
3482f86ba45SStephan Aßmus 	uint32 borders)
3492f86ba45SStephan Aßmus {
350a884b43bSJohn Scipione 	if (!rect.IsValid() || !rect.Intersects(updateRect))
3512f86ba45SStephan Aßmus 		return;
3522f86ba45SStephan Aßmus 
353a884b43bSJohn Scipione 	// surface edges
3542f86ba45SStephan Aßmus 	float topTint;
3552f86ba45SStephan Aßmus 	float bottomTint;
3562f86ba45SStephan Aßmus 	rgb_color selectedColor = base;
3572f86ba45SStephan Aßmus 
358a884b43bSJohn Scipione 	if ((flags & B_ACTIVATED) != 0) {
3592f86ba45SStephan Aßmus 		topTint = 0.9;
3602f86ba45SStephan Aßmus 		bottomTint = 1.05;
361a884b43bSJohn Scipione 	} else if ((flags & B_DISABLED) != 0) {
3622f86ba45SStephan Aßmus 		topTint = 0.80;
3632f86ba45SStephan Aßmus 		bottomTint = 1.07;
3642f86ba45SStephan Aßmus 	} else {
3652f86ba45SStephan Aßmus 		topTint = 0.6;
3662f86ba45SStephan Aßmus 		bottomTint = 1.12;
3672f86ba45SStephan Aßmus 	}
3682f86ba45SStephan Aßmus 
3692f86ba45SStephan Aßmus 	rgb_color bevelLightColor = tint_color(selectedColor, topTint);
3702f86ba45SStephan Aßmus 	rgb_color bevelShadowColor = tint_color(selectedColor, bottomTint);
3712f86ba45SStephan Aßmus 
372a884b43bSJohn Scipione 	// draw surface edges
3732f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
3742f86ba45SStephan Aßmus 		bevelLightColor, bevelLightColor,
3752f86ba45SStephan Aßmus 		bevelShadowColor, bevelShadowColor,
3762f86ba45SStephan Aßmus 		borders);
3772f86ba45SStephan Aßmus 
378a884b43bSJohn Scipione 	// draw surface top
3792f86ba45SStephan Aßmus 	view->SetLowColor(selectedColor);
3802f86ba45SStephan Aßmus //	_FillGradient(view, rect, selectedColor, topTint, bottomTint);
3812f86ba45SStephan Aßmus 	_FillGradient(view, rect, selectedColor, bottomTint, topTint);
3822f86ba45SStephan Aßmus }
3832f86ba45SStephan Aßmus 
3842f86ba45SStephan Aßmus 
3852f86ba45SStephan Aßmus void
3862f86ba45SStephan Aßmus BControlLook::DrawStatusBar(BView* view, BRect& rect, const BRect& updateRect,
3872f86ba45SStephan Aßmus 	const rgb_color& base, const rgb_color& barColor, float progressPosition)
3882f86ba45SStephan Aßmus {
3892f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
3902f86ba45SStephan Aßmus 		return;
3912f86ba45SStephan Aßmus 
3922f86ba45SStephan Aßmus 	_DrawOuterResessedFrame(view, rect, base, 0.6);
3932f86ba45SStephan Aßmus 
3942f86ba45SStephan Aßmus 	// colors
3952f86ba45SStephan Aßmus 	rgb_color dark1BorderColor = tint_color(base, 1.3);
3962f86ba45SStephan Aßmus 	rgb_color dark2BorderColor = tint_color(base, 1.2);
3972f86ba45SStephan Aßmus 	rgb_color dark1FilledBorderColor = tint_color(barColor, 1.20);
3982f86ba45SStephan Aßmus 	rgb_color dark2FilledBorderColor = tint_color(barColor, 1.45);
3992f86ba45SStephan Aßmus 
4002f86ba45SStephan Aßmus 	BRect filledRect(rect);
4012f86ba45SStephan Aßmus 	filledRect.right = progressPosition - 1;
4022f86ba45SStephan Aßmus 
4032f86ba45SStephan Aßmus 	BRect nonfilledRect(rect);
4042f86ba45SStephan Aßmus 	nonfilledRect.left = progressPosition;
4052f86ba45SStephan Aßmus 
4062f86ba45SStephan Aßmus 	bool filledSurface = filledRect.Width() > 0;
4072f86ba45SStephan Aßmus 	bool nonfilledSurface = nonfilledRect.Width() > 0;
4082f86ba45SStephan Aßmus 
4092f86ba45SStephan Aßmus 	if (filledSurface) {
4102f86ba45SStephan Aßmus 		_DrawFrame(view, filledRect,
4112f86ba45SStephan Aßmus 			dark1FilledBorderColor, dark1FilledBorderColor,
4122f86ba45SStephan Aßmus 			dark2FilledBorderColor, dark2FilledBorderColor);
4132f86ba45SStephan Aßmus 
4142f86ba45SStephan Aßmus 		_FillGlossyGradient(view, filledRect, barColor, 0.55, 0.68, 0.76, 0.90);
4152f86ba45SStephan Aßmus 	}
4162f86ba45SStephan Aßmus 
4172f86ba45SStephan Aßmus 	if (nonfilledSurface) {
4182f86ba45SStephan Aßmus 		_DrawFrame(view, nonfilledRect, dark1BorderColor, dark1BorderColor,
4192f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor,
4202f86ba45SStephan Aßmus 			B_TOP_BORDER | B_BOTTOM_BORDER | B_RIGHT_BORDER);
4212f86ba45SStephan Aßmus 
4222f86ba45SStephan Aßmus 		if (nonfilledRect.left < nonfilledRect.right) {
4232f86ba45SStephan Aßmus 			// shadow from fill bar, or left border
4242f86ba45SStephan Aßmus 			rgb_color leftBorder = dark1BorderColor;
4252f86ba45SStephan Aßmus 			if (filledSurface)
4262f86ba45SStephan Aßmus 				leftBorder = tint_color(base, 0.50);
4272f86ba45SStephan Aßmus 			view->SetHighColor(leftBorder);
4282f86ba45SStephan Aßmus 			view->StrokeLine(nonfilledRect.LeftTop(),
4292f86ba45SStephan Aßmus 				nonfilledRect.LeftBottom());
4302f86ba45SStephan Aßmus 			nonfilledRect.left++;
4312f86ba45SStephan Aßmus 		}
4322f86ba45SStephan Aßmus 
4332f86ba45SStephan Aßmus 		_FillGradient(view, nonfilledRect, base, 0.25, 0.06);
4342f86ba45SStephan Aßmus 	}
4352f86ba45SStephan Aßmus }
4362f86ba45SStephan Aßmus 
4372f86ba45SStephan Aßmus 
4382f86ba45SStephan Aßmus void
4392f86ba45SStephan Aßmus BControlLook::DrawCheckBox(BView* view, BRect& rect, const BRect& updateRect,
4402f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags)
4412f86ba45SStephan Aßmus {
4422f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
4432f86ba45SStephan Aßmus 		return;
4442f86ba45SStephan Aßmus 
4452f86ba45SStephan Aßmus 	rgb_color dark1BorderColor;
4462f86ba45SStephan Aßmus 	rgb_color dark2BorderColor;
4472f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
4482f86ba45SStephan Aßmus 
449a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
4504f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.0, 1.0, flags);
4512f86ba45SStephan Aßmus 
4522f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.15);
4532f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.15);
454a884b43bSJohn Scipione 	} else if ((flags & B_CLICKED) != 0) {
4552f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.50);
4562f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.48);
4572f86ba45SStephan Aßmus 
4582f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
4592f86ba45SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
4602f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor);
4612f86ba45SStephan Aßmus 
4622f86ba45SStephan Aßmus 		dark2BorderColor = dark1BorderColor;
4632f86ba45SStephan Aßmus 	} else {
4644f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.6, 1.0, flags);
4652f86ba45SStephan Aßmus 
4662f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.40);
4672f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.38);
4682f86ba45SStephan Aßmus 	}
4692f86ba45SStephan Aßmus 
470a884b43bSJohn Scipione 	if ((flags & B_FOCUSED) != 0) {
4712f86ba45SStephan Aßmus 		dark1BorderColor = navigationColor;
4722f86ba45SStephan Aßmus 		dark2BorderColor = navigationColor;
4732f86ba45SStephan Aßmus 	}
4742f86ba45SStephan Aßmus 
4752f86ba45SStephan Aßmus 	_DrawFrame(view, rect,
4762f86ba45SStephan Aßmus 		dark1BorderColor, dark1BorderColor,
4772f86ba45SStephan Aßmus 		dark2BorderColor, dark2BorderColor);
4782f86ba45SStephan Aßmus 
479a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
4802f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, 0.4, 0.2);
4812f86ba45SStephan Aßmus 	} else {
4822f86ba45SStephan Aßmus 		_FillGradient(view, rect, base, 0.15, 0.0);
4832f86ba45SStephan Aßmus 	}
4842f86ba45SStephan Aßmus 
4852f86ba45SStephan Aßmus 	rgb_color markColor;
4862f86ba45SStephan Aßmus 	if (_RadioButtonAndCheckBoxMarkColor(base, markColor, flags)) {
4872f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
4882f86ba45SStephan Aßmus 
4892f86ba45SStephan Aßmus 		rect.InsetBy(2, 2);
4902f86ba45SStephan Aßmus 		view->SetPenSize(max_c(1.0, ceilf(rect.Width() / 3.5)));
4912f86ba45SStephan Aßmus 		view->SetDrawingMode(B_OP_OVER);
4922f86ba45SStephan Aßmus 
4932f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.RightBottom());
4942f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftBottom(), rect.RightTop());
4952f86ba45SStephan Aßmus 	}
4962f86ba45SStephan Aßmus }
4972f86ba45SStephan Aßmus 
4982f86ba45SStephan Aßmus 
4992f86ba45SStephan Aßmus void
5002f86ba45SStephan Aßmus BControlLook::DrawRadioButton(BView* view, BRect& rect, const BRect& updateRect,
5012f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags)
5022f86ba45SStephan Aßmus {
5032f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
5042f86ba45SStephan Aßmus 		return;
5052f86ba45SStephan Aßmus 
5062f86ba45SStephan Aßmus 	rgb_color borderColor;
5072f86ba45SStephan Aßmus 	rgb_color bevelLight;
5082f86ba45SStephan Aßmus 	rgb_color bevelShadow;
5092f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
5102f86ba45SStephan Aßmus 
511a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
5122f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.15);
5132f86ba45SStephan Aßmus 		bevelLight = base;
5142f86ba45SStephan Aßmus 		bevelShadow = base;
515a884b43bSJohn Scipione 	} else if ((flags & B_CLICKED) != 0) {
5162f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.50);
5172f86ba45SStephan Aßmus 		bevelLight = borderColor;
5182f86ba45SStephan Aßmus 		bevelShadow = borderColor;
5192f86ba45SStephan Aßmus 	} else {
5202f86ba45SStephan Aßmus 		borderColor = tint_color(base, 1.45);
5212f86ba45SStephan Aßmus 		bevelLight = tint_color(base, 0.55);
5222f86ba45SStephan Aßmus 		bevelShadow = tint_color(base, 1.11);
5232f86ba45SStephan Aßmus 	}
5242f86ba45SStephan Aßmus 
525a884b43bSJohn Scipione 	if ((flags & B_FOCUSED) != 0) {
5262f86ba45SStephan Aßmus 		borderColor = navigationColor;
5272f86ba45SStephan Aßmus 	}
5282f86ba45SStephan Aßmus 
5292f86ba45SStephan Aßmus 	BGradientLinear bevelGradient;
5302f86ba45SStephan Aßmus 	bevelGradient.AddColor(bevelShadow, 0);
5312f86ba45SStephan Aßmus 	bevelGradient.AddColor(bevelLight, 255);
5322f86ba45SStephan Aßmus 	bevelGradient.SetStart(rect.LeftTop());
5332f86ba45SStephan Aßmus 	bevelGradient.SetEnd(rect.RightBottom());
5342f86ba45SStephan Aßmus 
5352f86ba45SStephan Aßmus 	view->FillEllipse(rect, bevelGradient);
5362f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
5372f86ba45SStephan Aßmus 
5382f86ba45SStephan Aßmus 	bevelGradient.MakeEmpty();
5392f86ba45SStephan Aßmus 	bevelGradient.AddColor(borderColor, 0);
5402f86ba45SStephan Aßmus 	bevelGradient.AddColor(tint_color(borderColor, 0.8), 255);
5412f86ba45SStephan Aßmus 	view->FillEllipse(rect, bevelGradient);
5422f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
5432f86ba45SStephan Aßmus 
5442f86ba45SStephan Aßmus 	float topTint;
5452f86ba45SStephan Aßmus 	float bottomTint;
546a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
5472f86ba45SStephan Aßmus 		topTint = 0.4;
5482f86ba45SStephan Aßmus 		bottomTint = 0.2;
5492f86ba45SStephan Aßmus 	} else {
5502f86ba45SStephan Aßmus 		topTint = 0.15;
5512f86ba45SStephan Aßmus 		bottomTint = 0.0;
5522f86ba45SStephan Aßmus 	}
5532f86ba45SStephan Aßmus 
5542f86ba45SStephan Aßmus 	BGradientLinear gradient;
5552f86ba45SStephan Aßmus 	_MakeGradient(gradient, rect, base, topTint, bottomTint);
5562f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
5572f86ba45SStephan Aßmus 
5582f86ba45SStephan Aßmus 	rgb_color markColor;
5592f86ba45SStephan Aßmus 	if (_RadioButtonAndCheckBoxMarkColor(base, markColor, flags)) {
5602f86ba45SStephan Aßmus 		view->SetHighColor(markColor);
5612f86ba45SStephan Aßmus 		rect.InsetBy(3, 3);
5622f86ba45SStephan Aßmus 		view->FillEllipse(rect);
5632f86ba45SStephan Aßmus 	}
5642f86ba45SStephan Aßmus }
5652f86ba45SStephan Aßmus 
5662f86ba45SStephan Aßmus 
5672f86ba45SStephan Aßmus void
5682f86ba45SStephan Aßmus BControlLook::DrawScrollBarBackground(BView* view, BRect& rect1, BRect& rect2,
5692f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
570e724b26fSJohn Scipione 	orientation orientation)
5712f86ba45SStephan Aßmus {
5722f86ba45SStephan Aßmus 	DrawScrollBarBackground(view, rect1, updateRect, base, flags, orientation);
5732f86ba45SStephan Aßmus 	DrawScrollBarBackground(view, rect2, updateRect, base, flags, orientation);
5742f86ba45SStephan Aßmus }
5752f86ba45SStephan Aßmus 
57688969219SJohn Scipione 
5772f86ba45SStephan Aßmus void
5782f86ba45SStephan Aßmus BControlLook::DrawScrollBarBackground(BView* view, BRect& rect,
5792f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
580e724b26fSJohn Scipione 	orientation orientation)
5812f86ba45SStephan Aßmus {
5822f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
5832f86ba45SStephan Aßmus 		return;
5842f86ba45SStephan Aßmus 
5852f86ba45SStephan Aßmus 	float gradient1Tint;
5862f86ba45SStephan Aßmus 	float gradient2Tint;
5872f86ba45SStephan Aßmus 	float darkEdge1Tint;
5882f86ba45SStephan Aßmus 	float darkEdge2Tint;
5892f86ba45SStephan Aßmus 	float shadowTint;
5902f86ba45SStephan Aßmus 
591a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
5922f86ba45SStephan Aßmus 		gradient1Tint = 0.9;
5932f86ba45SStephan Aßmus 		gradient2Tint = 0.8;
5942f86ba45SStephan Aßmus 		darkEdge1Tint = B_DARKEN_2_TINT;
5952f86ba45SStephan Aßmus 		darkEdge2Tint = B_DARKEN_2_TINT;
5962f86ba45SStephan Aßmus 		shadowTint = gradient1Tint;
5972f86ba45SStephan Aßmus 	} else {
5982f86ba45SStephan Aßmus 		gradient1Tint = 1.10;
5992f86ba45SStephan Aßmus 		gradient2Tint = 1.05;
6002f86ba45SStephan Aßmus 		darkEdge1Tint = B_DARKEN_3_TINT;
6012f86ba45SStephan Aßmus 		darkEdge2Tint = B_DARKEN_2_TINT;
6022f86ba45SStephan Aßmus 		shadowTint = gradient1Tint;
6032f86ba45SStephan Aßmus 	}
6042f86ba45SStephan Aßmus 
6052f86ba45SStephan Aßmus 	rgb_color darkEdge1 = tint_color(base, darkEdge1Tint);
6062f86ba45SStephan Aßmus 	rgb_color darkEdge2 = tint_color(base, darkEdge2Tint);
6072f86ba45SStephan Aßmus 	rgb_color shadow = tint_color(base, shadowTint);
6082f86ba45SStephan Aßmus 
6092f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
6102f86ba45SStephan Aßmus 		// dark vertical line on left edge
6112f86ba45SStephan Aßmus 		if (rect.Width() > 0) {
6122f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge1);
6132f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
6142f86ba45SStephan Aßmus 			rect.left++;
6152f86ba45SStephan Aßmus 		}
6162f86ba45SStephan Aßmus 		// dark vertical line on right edge
6172f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6182f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge2);
6192f86ba45SStephan Aßmus 			view->StrokeLine(rect.RightTop(), rect.RightBottom());
6202f86ba45SStephan Aßmus 			rect.right--;
6212f86ba45SStephan Aßmus 		}
6222f86ba45SStephan Aßmus 		// vertical shadow line after left edge
6232f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6242f86ba45SStephan Aßmus 			view->SetHighColor(shadow);
6252f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
6262f86ba45SStephan Aßmus 			rect.left++;
6272f86ba45SStephan Aßmus 		}
6282f86ba45SStephan Aßmus 		// fill
6292f86ba45SStephan Aßmus 		if (rect.Width() >= 0) {
6302f86ba45SStephan Aßmus 			_FillGradient(view, rect, base, gradient1Tint, gradient2Tint,
6312f86ba45SStephan Aßmus 				orientation);
6322f86ba45SStephan Aßmus 		}
6332f86ba45SStephan Aßmus 	} else {
6342f86ba45SStephan Aßmus 		// dark vertical line on top edge
6352f86ba45SStephan Aßmus 		if (rect.Height() > 0) {
6362f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge1);
6372f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.RightTop());
6382f86ba45SStephan Aßmus 			rect.top++;
6392f86ba45SStephan Aßmus 		}
6402f86ba45SStephan Aßmus 		// dark vertical line on bottom edge
6412f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6422f86ba45SStephan Aßmus 			view->SetHighColor(darkEdge2);
6432f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftBottom(), rect.RightBottom());
6442f86ba45SStephan Aßmus 			rect.bottom--;
6452f86ba45SStephan Aßmus 		}
6462f86ba45SStephan Aßmus 		// horizontal shadow line after top edge
6472f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6482f86ba45SStephan Aßmus 			view->SetHighColor(shadow);
6492f86ba45SStephan Aßmus 			view->StrokeLine(rect.LeftTop(), rect.RightTop());
6502f86ba45SStephan Aßmus 			rect.top++;
6512f86ba45SStephan Aßmus 		}
6522f86ba45SStephan Aßmus 		// fill
6532f86ba45SStephan Aßmus 		if (rect.Height() >= 0) {
6542f86ba45SStephan Aßmus 			_FillGradient(view, rect, base, gradient1Tint, gradient2Tint,
6552f86ba45SStephan Aßmus 				orientation);
6562f86ba45SStephan Aßmus 		}
6572f86ba45SStephan Aßmus 	}
6582f86ba45SStephan Aßmus }
6592f86ba45SStephan Aßmus 
6602f86ba45SStephan Aßmus 
66140a10e1cSStephan Aßmus void
66274bb70aeSStephan Aßmus BControlLook::DrawScrollViewFrame(BView* view, BRect& rect,
66374bb70aeSStephan Aßmus 	const BRect& updateRect, BRect verticalScrollBarFrame,
66474bb70aeSStephan Aßmus 	BRect horizontalScrollBarFrame, const rgb_color& base,
66574bb70aeSStephan Aßmus 	border_style border, uint32 flags, uint32 _borders)
66674bb70aeSStephan Aßmus {
667ce955579SStephan Aßmus 	// calculate scroll corner rect before messing with the "rect"
668ce955579SStephan Aßmus 	BRect scrollCornerFillRect(rect.right, rect.bottom,
669ce955579SStephan Aßmus 		rect.right, rect.bottom);
670ce955579SStephan Aßmus 	if (horizontalScrollBarFrame.IsValid())
671ce955579SStephan Aßmus 		scrollCornerFillRect.left = horizontalScrollBarFrame.right + 1;
672ce955579SStephan Aßmus 	if (verticalScrollBarFrame.IsValid())
673ce955579SStephan Aßmus 		scrollCornerFillRect.top = verticalScrollBarFrame.bottom + 1;
674ce955579SStephan Aßmus 
675c44aa833SStephan Aßmus 	if (border == B_NO_BORDER) {
676c44aa833SStephan Aßmus 		if (scrollCornerFillRect.IsValid()) {
677c44aa833SStephan Aßmus 			view->SetHighColor(base);
678c44aa833SStephan Aßmus 			view->FillRect(scrollCornerFillRect);
679c44aa833SStephan Aßmus 		}
680c44aa833SStephan Aßmus 		return;
681c44aa833SStephan Aßmus 	}
682c44aa833SStephan Aßmus 
683c44aa833SStephan Aßmus 	bool excludeScrollCorner = border == B_FANCY_BORDER
684c44aa833SStephan Aßmus 		&& horizontalScrollBarFrame.IsValid()
685c44aa833SStephan Aßmus 		&& verticalScrollBarFrame.IsValid();
686c44aa833SStephan Aßmus 
68774bb70aeSStephan Aßmus 	uint32 borders = _borders;
68874bb70aeSStephan Aßmus 	if (excludeScrollCorner) {
68974bb70aeSStephan Aßmus 		rect.bottom = horizontalScrollBarFrame.top;
69074bb70aeSStephan Aßmus 		rect.right = verticalScrollBarFrame.left;
69174bb70aeSStephan Aßmus 		borders &= ~(B_RIGHT_BORDER | B_BOTTOM_BORDER);
69274bb70aeSStephan Aßmus 	}
69374bb70aeSStephan Aßmus 
69474bb70aeSStephan Aßmus 	rgb_color scrollbarFrameColor = tint_color(base, B_DARKEN_2_TINT);
69574bb70aeSStephan Aßmus 
69674bb70aeSStephan Aßmus 	if (border == B_FANCY_BORDER)
6974f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 1.0, 1.0, flags, borders);
69874bb70aeSStephan Aßmus 
699a884b43bSJohn Scipione 	if ((flags & B_FOCUSED) != 0) {
70074bb70aeSStephan Aßmus 		rgb_color focusColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
70174bb70aeSStephan Aßmus 		_DrawFrame(view, rect, focusColor, focusColor, focusColor, focusColor,
70274bb70aeSStephan Aßmus 			borders);
70374bb70aeSStephan Aßmus 	} else {
70474bb70aeSStephan Aßmus 		_DrawFrame(view, rect, scrollbarFrameColor, scrollbarFrameColor,
70574bb70aeSStephan Aßmus 			scrollbarFrameColor, scrollbarFrameColor, borders);
70674bb70aeSStephan Aßmus 	}
70774bb70aeSStephan Aßmus 
70874bb70aeSStephan Aßmus 	if (excludeScrollCorner) {
70974bb70aeSStephan Aßmus 		horizontalScrollBarFrame.InsetBy(-1, -1);
71074bb70aeSStephan Aßmus 		// do not overdraw the top edge
71174bb70aeSStephan Aßmus 		horizontalScrollBarFrame.top += 2;
71274bb70aeSStephan Aßmus 		borders = _borders;
71374bb70aeSStephan Aßmus 		borders &= ~B_TOP_BORDER;
71474bb70aeSStephan Aßmus 		_DrawOuterResessedFrame(view, horizontalScrollBarFrame, base,
7154f579098SStephan Aßmus 			1.0, 1.0, flags, borders);
71674bb70aeSStephan Aßmus 		_DrawFrame(view, horizontalScrollBarFrame, scrollbarFrameColor,
71774bb70aeSStephan Aßmus 			scrollbarFrameColor, scrollbarFrameColor, scrollbarFrameColor,
71874bb70aeSStephan Aßmus 			borders);
71974bb70aeSStephan Aßmus 
72074bb70aeSStephan Aßmus 
72174bb70aeSStephan Aßmus 		verticalScrollBarFrame.InsetBy(-1, -1);
72274bb70aeSStephan Aßmus 		// do not overdraw the left edge
72374bb70aeSStephan Aßmus 		verticalScrollBarFrame.left += 2;
72474bb70aeSStephan Aßmus 		borders = _borders;
72574bb70aeSStephan Aßmus 		borders &= ~B_LEFT_BORDER;
72674bb70aeSStephan Aßmus 		_DrawOuterResessedFrame(view, verticalScrollBarFrame, base,
7274f579098SStephan Aßmus 			1.0, 1.0, flags, borders);
72874bb70aeSStephan Aßmus 		_DrawFrame(view, verticalScrollBarFrame, scrollbarFrameColor,
72974bb70aeSStephan Aßmus 			scrollbarFrameColor, scrollbarFrameColor, scrollbarFrameColor,
73074bb70aeSStephan Aßmus 			borders);
731ce955579SStephan Aßmus 
732ce955579SStephan Aßmus 		// exclude recessed frame
733ce955579SStephan Aßmus 		scrollCornerFillRect.top++;
734ce955579SStephan Aßmus 		scrollCornerFillRect.left++;
735ce955579SStephan Aßmus 	}
736ce955579SStephan Aßmus 
737ce955579SStephan Aßmus 	if (scrollCornerFillRect.IsValid()) {
738ce955579SStephan Aßmus 		view->SetHighColor(base);
739ce955579SStephan Aßmus 		view->FillRect(scrollCornerFillRect);
74074bb70aeSStephan Aßmus 	}
74174bb70aeSStephan Aßmus }
74274bb70aeSStephan Aßmus 
74374bb70aeSStephan Aßmus 
74474bb70aeSStephan Aßmus void
74540a10e1cSStephan Aßmus BControlLook::DrawArrowShape(BView* view, BRect& rect, const BRect& updateRect,
74640a10e1cSStephan Aßmus 	const rgb_color& base, uint32 direction, uint32 flags, float tint)
74740a10e1cSStephan Aßmus {
74840a10e1cSStephan Aßmus 	BPoint tri1, tri2, tri3;
74940a10e1cSStephan Aßmus 	float hInset = rect.Width() / 3;
75040a10e1cSStephan Aßmus 	float vInset = rect.Height() / 3;
75140a10e1cSStephan Aßmus 	rect.InsetBy(hInset, vInset);
75240a10e1cSStephan Aßmus 
75340a10e1cSStephan Aßmus 	switch (direction) {
75440a10e1cSStephan Aßmus 		case B_LEFT_ARROW:
75540a10e1cSStephan Aßmus 			tri1.Set(rect.right, rect.top);
75640a10e1cSStephan Aßmus 			tri2.Set(rect.right - rect.Width() / 1.33,
75740a10e1cSStephan Aßmus 				(rect.top + rect.bottom + 1) / 2);
75840a10e1cSStephan Aßmus 			tri3.Set(rect.right, rect.bottom + 1);
75940a10e1cSStephan Aßmus 			break;
76040a10e1cSStephan Aßmus 		case B_RIGHT_ARROW:
761f9b1a47fSRyan Leavengood 			tri1.Set(rect.left + 1, rect.bottom + 1);
762f9b1a47fSRyan Leavengood 			tri2.Set(rect.left + 1 + rect.Width() / 1.33,
76340a10e1cSStephan Aßmus 				(rect.top + rect.bottom + 1) / 2);
764f9b1a47fSRyan Leavengood 			tri3.Set(rect.left + 1, rect.top);
76540a10e1cSStephan Aßmus 			break;
76640a10e1cSStephan Aßmus 		case B_UP_ARROW:
76740a10e1cSStephan Aßmus 			tri1.Set(rect.left, rect.bottom);
76840a10e1cSStephan Aßmus 			tri2.Set((rect.left + rect.right + 1) / 2,
76940a10e1cSStephan Aßmus 				rect.bottom - rect.Height() / 1.33);
77040a10e1cSStephan Aßmus 			tri3.Set(rect.right + 1, rect.bottom);
77140a10e1cSStephan Aßmus 			break;
77240a10e1cSStephan Aßmus 		case B_DOWN_ARROW:
77340a10e1cSStephan Aßmus 		default:
774f9b1a47fSRyan Leavengood 			tri1.Set(rect.left, rect.top + 1);
77540a10e1cSStephan Aßmus 			tri2.Set((rect.left + rect.right + 1) / 2,
776f9b1a47fSRyan Leavengood 				rect.top + 1 + rect.Height() / 1.33);
777f9b1a47fSRyan Leavengood 			tri3.Set(rect.right + 1, rect.top + 1);
77840a10e1cSStephan Aßmus 			break;
7791b41173cSJohn Scipione 		case B_LEFT_UP_ARROW:
78017c9912bSJohn Scipione 			tri1.Set(rect.left, rect.bottom);
78117c9912bSJohn Scipione 			tri2.Set(rect.left, rect.top);
78217c9912bSJohn Scipione 			tri3.Set(rect.right - 1, rect.top);
7831b41173cSJohn Scipione 			break;
7841b41173cSJohn Scipione 		case B_RIGHT_UP_ARROW:
785348cd0c5SJohn Scipione 			tri1.Set(rect.left + 1, rect.top);
7861b41173cSJohn Scipione 			tri2.Set(rect.right, rect.top);
7871b41173cSJohn Scipione 			tri3.Set(rect.right, rect.bottom);
7881b41173cSJohn Scipione 			break;
7891b41173cSJohn Scipione 		case B_RIGHT_DOWN_ARROW:
7901b41173cSJohn Scipione 			tri1.Set(rect.right, rect.top);
7911b41173cSJohn Scipione 			tri2.Set(rect.right, rect.bottom);
792348cd0c5SJohn Scipione 			tri3.Set(rect.left + 1, rect.bottom);
7931b41173cSJohn Scipione 			break;
7941b41173cSJohn Scipione 		case B_LEFT_DOWN_ARROW:
79517c9912bSJohn Scipione 			tri1.Set(rect.right - 1, rect.bottom);
79617c9912bSJohn Scipione 			tri2.Set(rect.left, rect.bottom);
79717c9912bSJohn Scipione 			tri3.Set(rect.left, rect.top);
7981b41173cSJohn Scipione 			break;
79940a10e1cSStephan Aßmus 	}
80040a10e1cSStephan Aßmus 
80140a10e1cSStephan Aßmus 	BShape arrowShape;
80240a10e1cSStephan Aßmus 	arrowShape.MoveTo(tri1);
80340a10e1cSStephan Aßmus 	arrowShape.LineTo(tri2);
80440a10e1cSStephan Aßmus 	arrowShape.LineTo(tri3);
80540a10e1cSStephan Aßmus 
806a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0)
80740a10e1cSStephan Aßmus 		tint = (tint + B_NO_TINT + B_NO_TINT) / 3;
80840a10e1cSStephan Aßmus 
80940a10e1cSStephan Aßmus 	view->SetHighColor(tint_color(base, tint));
81040a10e1cSStephan Aßmus 
81140a10e1cSStephan Aßmus 	float penSize = view->PenSize();
81240a10e1cSStephan Aßmus 	drawing_mode mode = view->DrawingMode();
81340a10e1cSStephan Aßmus 
814f44a56caSRyan Leavengood 	view->MovePenTo(BPoint(0, 0));
815f44a56caSRyan Leavengood 
81640a10e1cSStephan Aßmus 	view->SetPenSize(ceilf(hInset / 2.0));
81740a10e1cSStephan Aßmus 	view->SetDrawingMode(B_OP_OVER);
81840a10e1cSStephan Aßmus 	view->StrokeShape(&arrowShape);
81940a10e1cSStephan Aßmus 
82040a10e1cSStephan Aßmus 	view->SetPenSize(penSize);
82140a10e1cSStephan Aßmus 	view->SetDrawingMode(mode);
82240a10e1cSStephan Aßmus }
82340a10e1cSStephan Aßmus 
82440a10e1cSStephan Aßmus 
8252f86ba45SStephan Aßmus rgb_color
8262f86ba45SStephan Aßmus BControlLook::SliderBarColor(const rgb_color& base)
8272f86ba45SStephan Aßmus {
8282f86ba45SStephan Aßmus 	return tint_color(ui_color(B_PANEL_BACKGROUND_COLOR), B_DARKEN_1_TINT);
8292f86ba45SStephan Aßmus }
8302f86ba45SStephan Aßmus 
8312f86ba45SStephan Aßmus 
8322f86ba45SStephan Aßmus void
8332f86ba45SStephan Aßmus BControlLook::DrawSliderBar(BView* view, BRect rect, const BRect& updateRect,
8342f86ba45SStephan Aßmus 	const rgb_color& base, rgb_color leftFillColor, rgb_color rightFillColor,
835e724b26fSJohn Scipione 	float sliderScale, uint32 flags, orientation orientation)
8362f86ba45SStephan Aßmus {
8372f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
8382f86ba45SStephan Aßmus 		return;
8392f86ba45SStephan Aßmus 
8405666b4f7SJohn Scipione 	// save the clipping constraints of the view
8415666b4f7SJohn Scipione 	view->PushState();
8425666b4f7SJohn Scipione 
8432f86ba45SStephan Aßmus 	// separate the bar in two sides
8442f86ba45SStephan Aßmus 	float sliderPosition;
8452f86ba45SStephan Aßmus 	BRect leftBarSide = rect;
8462f86ba45SStephan Aßmus 	BRect rightBarSide = rect;
8472f86ba45SStephan Aßmus 
8482f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
8492f86ba45SStephan Aßmus 		sliderPosition = floorf(rect.left + 2 + (rect.Width() - 2)
8502f86ba45SStephan Aßmus 			* sliderScale);
8512f86ba45SStephan Aßmus 		leftBarSide.right = sliderPosition - 1;
8522f86ba45SStephan Aßmus 		rightBarSide.left = sliderPosition;
8532f86ba45SStephan Aßmus 	} else {
854f3997b74SStephan Aßmus 		// NOTE: position is reverse of coords
8552f86ba45SStephan Aßmus 		sliderPosition = floorf(rect.top + 2 + (rect.Height() - 2)
856f3997b74SStephan Aßmus 			* (1.0 - sliderScale));
857f3997b74SStephan Aßmus 		leftBarSide.top = sliderPosition;
858f3997b74SStephan Aßmus 		rightBarSide.bottom = sliderPosition - 1;
8592f86ba45SStephan Aßmus 	}
8602f86ba45SStephan Aßmus 
8612f86ba45SStephan Aßmus 	// fill the background for the corners, exclude the middle bar for now
8622f86ba45SStephan Aßmus 	BRegion region(rect);
8632f86ba45SStephan Aßmus 	region.Exclude(rightBarSide);
8642f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
8652f86ba45SStephan Aßmus 
8662f86ba45SStephan Aßmus 	view->PushState();
8672f86ba45SStephan Aßmus 
8682f86ba45SStephan Aßmus 	DrawSliderBar(view, rect, updateRect, base, leftFillColor, flags,
8692f86ba45SStephan Aßmus 		orientation);
8702f86ba45SStephan Aßmus 
8712f86ba45SStephan Aßmus 	view->PopState();
8722f86ba45SStephan Aßmus 
8732f86ba45SStephan Aßmus 	region.Set(rect);
8742f86ba45SStephan Aßmus 	region.Exclude(leftBarSide);
8752f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
8762f86ba45SStephan Aßmus 
8772f86ba45SStephan Aßmus 	view->PushState();
8782f86ba45SStephan Aßmus 
8792f86ba45SStephan Aßmus 	DrawSliderBar(view, rect, updateRect, base, rightFillColor, flags,
8802f86ba45SStephan Aßmus 		orientation);
8812f86ba45SStephan Aßmus 
8822f86ba45SStephan Aßmus 	view->PopState();
8833244c2bcSJohn Scipione 
8845666b4f7SJohn Scipione 	// restore the clipping constraints of the view
8855666b4f7SJohn Scipione 	view->PopState();
8862f86ba45SStephan Aßmus }
8872f86ba45SStephan Aßmus 
8882f86ba45SStephan Aßmus 
8892f86ba45SStephan Aßmus void
8902f86ba45SStephan Aßmus BControlLook::DrawSliderBar(BView* view, BRect rect, const BRect& updateRect,
8912f86ba45SStephan Aßmus 	const rgb_color& base, rgb_color fillColor, uint32 flags,
892e724b26fSJohn Scipione 	orientation orientation)
8932f86ba45SStephan Aßmus {
8942f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
8952f86ba45SStephan Aßmus 		return;
8962f86ba45SStephan Aßmus 
8972f86ba45SStephan Aßmus 	// separate the rect into corners
8982f86ba45SStephan Aßmus 	BRect leftCorner(rect);
8992f86ba45SStephan Aßmus 	BRect rightCorner(rect);
9002f86ba45SStephan Aßmus 	BRect barRect(rect);
9012f86ba45SStephan Aßmus 
9022f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
9032f86ba45SStephan Aßmus 		leftCorner.right = leftCorner.left + leftCorner.Height();
9042f86ba45SStephan Aßmus 		rightCorner.left = rightCorner.right - rightCorner.Height();
9052f86ba45SStephan Aßmus 		barRect.left += ceilf(barRect.Height() / 2);
9062f86ba45SStephan Aßmus 		barRect.right -= ceilf(barRect.Height() / 2);
9072f86ba45SStephan Aßmus 	} else {
9082f86ba45SStephan Aßmus 		leftCorner.bottom = leftCorner.top + leftCorner.Width();
9092f86ba45SStephan Aßmus 		rightCorner.top = rightCorner.bottom - rightCorner.Width();
9102f86ba45SStephan Aßmus 		barRect.top += ceilf(barRect.Width() / 2);
9112f86ba45SStephan Aßmus 		barRect.bottom -= ceilf(barRect.Width() / 2);
9122f86ba45SStephan Aßmus 	}
9132f86ba45SStephan Aßmus 
9142f86ba45SStephan Aßmus 	// fill the background for the corners, exclude the middle bar for now
9152f86ba45SStephan Aßmus 	BRegion region(rect);
9162f86ba45SStephan Aßmus 	region.Exclude(barRect);
9172f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&region);
9182f86ba45SStephan Aßmus 
91961ac1a85SStephan Aßmus 	if ((flags & B_BLEND_FRAME) == 0) {
9202f86ba45SStephan Aßmus 		view->SetHighColor(base);
9212f86ba45SStephan Aßmus 		view->FillRect(rect);
92261ac1a85SStephan Aßmus 	}
9232f86ba45SStephan Aßmus 
9242f86ba45SStephan Aßmus 	// figure out the tints to be used
9252f86ba45SStephan Aßmus 	float edgeLightTint;
9262f86ba45SStephan Aßmus 	float edgeShadowTint;
9272f86ba45SStephan Aßmus 	float frameLightTint;
9282f86ba45SStephan Aßmus 	float frameShadowTint;
9292f86ba45SStephan Aßmus 	float fillLightTint;
9302f86ba45SStephan Aßmus 	float fillShadowTint;
93161ac1a85SStephan Aßmus 	uint8 edgeLightAlpha;
93261ac1a85SStephan Aßmus 	uint8 edgeShadowAlpha;
93361ac1a85SStephan Aßmus 	uint8 frameLightAlpha;
93461ac1a85SStephan Aßmus 	uint8 frameShadowAlpha;
9352f86ba45SStephan Aßmus 
936a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
9372f86ba45SStephan Aßmus 		edgeLightTint = 1.0;
9382f86ba45SStephan Aßmus 		edgeShadowTint = 1.0;
9392f86ba45SStephan Aßmus 		frameLightTint = 1.20;
9402f86ba45SStephan Aßmus 		frameShadowTint = 1.25;
9412f86ba45SStephan Aßmus 		fillLightTint = 0.9;
9422f86ba45SStephan Aßmus 		fillShadowTint = 1.05;
94310ddee8dSStephan Aßmus 		edgeLightAlpha = 12;
94410ddee8dSStephan Aßmus 		edgeShadowAlpha = 12;
94561ac1a85SStephan Aßmus 		frameLightAlpha = 40;
94661ac1a85SStephan Aßmus 		frameShadowAlpha = 45;
9472f86ba45SStephan Aßmus 
9482f86ba45SStephan Aßmus 		fillColor.red = uint8(fillColor.red * 0.4 + base.red * 0.6);
9492f86ba45SStephan Aßmus 		fillColor.green = uint8(fillColor.green * 0.4 + base.green * 0.6);
9502f86ba45SStephan Aßmus 		fillColor.blue = uint8(fillColor.blue * 0.4 + base.blue * 0.6);
9512f86ba45SStephan Aßmus 	} else {
9522f86ba45SStephan Aßmus 		edgeLightTint = 0.65;
9532f86ba45SStephan Aßmus 		edgeShadowTint = 1.07;
9542f86ba45SStephan Aßmus 		frameLightTint = 1.40;
9552f86ba45SStephan Aßmus 		frameShadowTint = 1.50;
9562f86ba45SStephan Aßmus 		fillLightTint = 0.8;
9572f86ba45SStephan Aßmus 		fillShadowTint = 1.1;
95810ddee8dSStephan Aßmus 		edgeLightAlpha = 15;
95910ddee8dSStephan Aßmus 		edgeShadowAlpha = 15;
96061ac1a85SStephan Aßmus 		frameLightAlpha = 92;
96161ac1a85SStephan Aßmus 		frameShadowAlpha = 107;
9622f86ba45SStephan Aßmus 	}
9632f86ba45SStephan Aßmus 
96461ac1a85SStephan Aßmus 	rgb_color edgeLightColor;
96561ac1a85SStephan Aßmus 	rgb_color edgeShadowColor;
96661ac1a85SStephan Aßmus 	rgb_color frameLightColor;
96761ac1a85SStephan Aßmus 	rgb_color frameShadowColor;
9682f86ba45SStephan Aßmus 	rgb_color fillLightColor = tint_color(fillColor, fillLightTint);
9692f86ba45SStephan Aßmus 	rgb_color fillShadowColor = tint_color(fillColor, fillShadowTint);
9702f86ba45SStephan Aßmus 
97161ac1a85SStephan Aßmus 	drawing_mode oldMode = view->DrawingMode();
97261ac1a85SStephan Aßmus 
973a884b43bSJohn Scipione 	if ((flags & B_BLEND_FRAME) != 0) {
97461ac1a85SStephan Aßmus 		edgeLightColor = (rgb_color){ 255, 255, 255, edgeLightAlpha };
97561ac1a85SStephan Aßmus 		edgeShadowColor = (rgb_color){ 0, 0, 0, edgeShadowAlpha };
97661ac1a85SStephan Aßmus 		frameLightColor = (rgb_color){ 0, 0, 0, frameLightAlpha };
97761ac1a85SStephan Aßmus 		frameShadowColor = (rgb_color){ 0, 0, 0, frameShadowAlpha };
97861ac1a85SStephan Aßmus 
97961ac1a85SStephan Aßmus 		view->SetDrawingMode(B_OP_ALPHA);
98061ac1a85SStephan Aßmus 	} else {
98161ac1a85SStephan Aßmus 		edgeLightColor = tint_color(base, edgeLightTint);
98261ac1a85SStephan Aßmus 		edgeShadowColor = tint_color(base, edgeShadowTint);
98361ac1a85SStephan Aßmus 		frameLightColor = tint_color(fillColor, frameLightTint);
98461ac1a85SStephan Aßmus 		frameShadowColor = tint_color(fillColor, frameShadowTint);
98561ac1a85SStephan Aßmus 	}
98661ac1a85SStephan Aßmus 
9872f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
9882f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, leftCorner, updateRect, edgeLightColor,
9892f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
9902f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 1.0, 0.0, -1.0, orientation);
9912f86ba45SStephan Aßmus 
9922f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, rightCorner, updateRect, edgeLightColor,
9932f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
9942f86ba45SStephan Aßmus 			fillShadowColor, 0.0, 1.0, -1.0, -1.0, orientation);
9952f86ba45SStephan Aßmus 	} else {
9962f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, leftCorner, updateRect, edgeLightColor,
9972f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
9982f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 1.0, -1.0, 0.0, orientation);
9992f86ba45SStephan Aßmus 
10002f86ba45SStephan Aßmus 		_DrawRoundBarCorner(view, rightCorner, updateRect, edgeLightColor,
10012f86ba45SStephan Aßmus 			edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor,
10022f86ba45SStephan Aßmus 			fillShadowColor, 1.0, 0.0, -1.0, -1.0, orientation);
10032f86ba45SStephan Aßmus 	}
10042f86ba45SStephan Aßmus 
10052f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(NULL);
10062f86ba45SStephan Aßmus 
10072f86ba45SStephan Aßmus 	view->BeginLineArray(4);
10082f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
10092f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.RightTop(), edgeShadowColor);
10102f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftBottom(), barRect.RightBottom(),
10112f86ba45SStephan Aßmus 			edgeLightColor);
10122f86ba45SStephan Aßmus 		barRect.InsetBy(0, 1);
10132f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.RightTop(), frameShadowColor);
10142f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftBottom(), barRect.RightBottom(),
10152f86ba45SStephan Aßmus 			frameLightColor);
10162f86ba45SStephan Aßmus 		barRect.InsetBy(0, 1);
10172f86ba45SStephan Aßmus 	} else {
10182f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.LeftBottom(), edgeShadowColor);
10192f86ba45SStephan Aßmus 		view->AddLine(barRect.RightTop(), barRect.RightBottom(),
10202f86ba45SStephan Aßmus 			edgeLightColor);
10212f86ba45SStephan Aßmus 		barRect.InsetBy(1, 0);
10222f86ba45SStephan Aßmus 		view->AddLine(barRect.LeftTop(), barRect.LeftBottom(), frameShadowColor);
10232f86ba45SStephan Aßmus 		view->AddLine(barRect.RightTop(), barRect.RightBottom(),
10242f86ba45SStephan Aßmus 			frameLightColor);
10252f86ba45SStephan Aßmus 		barRect.InsetBy(1, 0);
10262f86ba45SStephan Aßmus 	}
10272f86ba45SStephan Aßmus 	view->EndLineArray();
10282f86ba45SStephan Aßmus 
102961ac1a85SStephan Aßmus 	view->SetDrawingMode(oldMode);
103061ac1a85SStephan Aßmus 
10312f86ba45SStephan Aßmus 	_FillGradient(view, barRect, fillColor, fillShadowTint, fillLightTint,
10322f86ba45SStephan Aßmus 		orientation);
10332f86ba45SStephan Aßmus }
10342f86ba45SStephan Aßmus 
10352f86ba45SStephan Aßmus 
10362f86ba45SStephan Aßmus void
10372f86ba45SStephan Aßmus BControlLook::DrawSliderThumb(BView* view, BRect& rect, const BRect& updateRect,
1038e724b26fSJohn Scipione 	const rgb_color& base, uint32 flags, orientation orientation)
10392f86ba45SStephan Aßmus {
10402f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
10412f86ba45SStephan Aßmus 		return;
10422f86ba45SStephan Aßmus 
10432f86ba45SStephan Aßmus 	// figure out frame color
10442f86ba45SStephan Aßmus 	rgb_color frameLightColor;
10452f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
10462f86ba45SStephan Aßmus 	rgb_color shadowColor = (rgb_color){ 0, 0, 0, 60 };
10472f86ba45SStephan Aßmus 
1048a884b43bSJohn Scipione 	if ((flags & B_FOCUSED) != 0) {
10492f86ba45SStephan Aßmus 		// focused
10502f86ba45SStephan Aßmus 		frameLightColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
10512f86ba45SStephan Aßmus 		frameShadowColor = frameLightColor;
10522f86ba45SStephan Aßmus 	} else {
10532f86ba45SStephan Aßmus 		// figure out the tints to be used
10542f86ba45SStephan Aßmus 		float frameLightTint;
10552f86ba45SStephan Aßmus 		float frameShadowTint;
10562f86ba45SStephan Aßmus 
1057a884b43bSJohn Scipione 		if ((flags & B_DISABLED) != 0) {
10582f86ba45SStephan Aßmus 			frameLightTint = 1.30;
10592f86ba45SStephan Aßmus 			frameShadowTint = 1.35;
10602f86ba45SStephan Aßmus 			shadowColor.alpha = 30;
10612f86ba45SStephan Aßmus 		} else {
10622f86ba45SStephan Aßmus 			frameLightTint = 1.6;
10632f86ba45SStephan Aßmus 			frameShadowTint = 1.65;
10642f86ba45SStephan Aßmus 		}
10652f86ba45SStephan Aßmus 
10662f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, frameLightTint);
10672f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, frameShadowTint);
10682f86ba45SStephan Aßmus 	}
10692f86ba45SStephan Aßmus 
10702f86ba45SStephan Aßmus 	BRect originalRect(rect);
10712f86ba45SStephan Aßmus 	rect.right--;
10722f86ba45SStephan Aßmus 	rect.bottom--;
10732f86ba45SStephan Aßmus 
10742f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor,
10752f86ba45SStephan Aßmus 		frameShadowColor, frameShadowColor);
10762f86ba45SStephan Aßmus 
10772f86ba45SStephan Aßmus 	flags &= ~B_ACTIVATED;
10782f86ba45SStephan Aßmus 	DrawButtonBackground(view, rect, updateRect, base, flags);
10792f86ba45SStephan Aßmus 
10802f86ba45SStephan Aßmus 	// thumb shadow
10812f86ba45SStephan Aßmus 	view->SetDrawingMode(B_OP_ALPHA);
10822f86ba45SStephan Aßmus 	view->SetHighColor(shadowColor);
10832f86ba45SStephan Aßmus 	originalRect.left++;
10842f86ba45SStephan Aßmus 	originalRect.top++;
10852f86ba45SStephan Aßmus 	view->StrokeLine(originalRect.LeftBottom(), originalRect.RightBottom());
10862f86ba45SStephan Aßmus 	originalRect.bottom--;
10872f86ba45SStephan Aßmus 	view->StrokeLine(originalRect.RightTop(), originalRect.RightBottom());
10882f86ba45SStephan Aßmus 
10892f86ba45SStephan Aßmus 	// thumb edge
10902f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
10912f86ba45SStephan Aßmus 		rect.InsetBy(0, floorf(rect.Height() / 4));
10922f86ba45SStephan Aßmus 		rect.left = floorf((rect.left + rect.right) / 2);
10932f86ba45SStephan Aßmus 		rect.right = rect.left + 1;
10942f86ba45SStephan Aßmus 		shadowColor = tint_color(base, B_DARKEN_2_TINT);
10952f86ba45SStephan Aßmus 		shadowColor.alpha = 128;
10962f86ba45SStephan Aßmus 		view->SetHighColor(shadowColor);
10972f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.LeftBottom());
10982f86ba45SStephan Aßmus 		rgb_color lightColor = tint_color(base, B_LIGHTEN_2_TINT);
10992f86ba45SStephan Aßmus 		lightColor.alpha = 128;
11002f86ba45SStephan Aßmus 		view->SetHighColor(lightColor);
11012f86ba45SStephan Aßmus 		view->StrokeLine(rect.RightTop(), rect.RightBottom());
11022f86ba45SStephan Aßmus 	} else {
11032f86ba45SStephan Aßmus 		rect.InsetBy(floorf(rect.Width() / 4), 0);
11042f86ba45SStephan Aßmus 		rect.top = floorf((rect.top + rect.bottom) / 2);
11052f86ba45SStephan Aßmus 		rect.bottom = rect.top + 1;
11062f86ba45SStephan Aßmus 		shadowColor = tint_color(base, B_DARKEN_2_TINT);
11072f86ba45SStephan Aßmus 		shadowColor.alpha = 128;
11082f86ba45SStephan Aßmus 		view->SetHighColor(shadowColor);
11092f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftTop(), rect.RightTop());
11102f86ba45SStephan Aßmus 		rgb_color lightColor = tint_color(base, B_LIGHTEN_2_TINT);
11112f86ba45SStephan Aßmus 		lightColor.alpha = 128;
11122f86ba45SStephan Aßmus 		view->SetHighColor(lightColor);
11132f86ba45SStephan Aßmus 		view->StrokeLine(rect.LeftBottom(), rect.RightBottom());
11142f86ba45SStephan Aßmus 	}
11152f86ba45SStephan Aßmus 
11162f86ba45SStephan Aßmus 	view->SetDrawingMode(B_OP_COPY);
11172f86ba45SStephan Aßmus }
11182f86ba45SStephan Aßmus 
11192f86ba45SStephan Aßmus 
11202f86ba45SStephan Aßmus void
11212f86ba45SStephan Aßmus BControlLook::DrawSliderTriangle(BView* view, BRect& rect,
11222f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
1123e724b26fSJohn Scipione 	orientation orientation)
11242f86ba45SStephan Aßmus {
11258ee9217eSStephan Aßmus 	DrawSliderTriangle(view, rect, updateRect, base, base, flags, orientation);
11268ee9217eSStephan Aßmus }
11278ee9217eSStephan Aßmus 
11288ee9217eSStephan Aßmus 
11298ee9217eSStephan Aßmus void
11308ee9217eSStephan Aßmus BControlLook::DrawSliderTriangle(BView* view, BRect& rect,
11318ee9217eSStephan Aßmus 	const BRect& updateRect, const rgb_color& base, const rgb_color& fill,
1132e724b26fSJohn Scipione 	uint32 flags, orientation orientation)
11338ee9217eSStephan Aßmus {
11342f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
11352f86ba45SStephan Aßmus 		return;
11362f86ba45SStephan Aßmus 
11372f86ba45SStephan Aßmus 	// figure out frame color
11382f86ba45SStephan Aßmus 	rgb_color frameLightColor;
11392f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
11402f86ba45SStephan Aßmus 	rgb_color shadowColor = (rgb_color){ 0, 0, 0, 60 };
11412f86ba45SStephan Aßmus 
11422f86ba45SStephan Aßmus 	float topTint = 0.49;
11432f86ba45SStephan Aßmus 	float middleTint1 = 0.62;
11442f86ba45SStephan Aßmus 	float middleTint2 = 0.76;
11452f86ba45SStephan Aßmus 	float bottomTint = 0.90;
11462f86ba45SStephan Aßmus 
1147a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
11482f86ba45SStephan Aßmus 		topTint = (topTint + B_NO_TINT) / 2;
11492f86ba45SStephan Aßmus 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
11502f86ba45SStephan Aßmus 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
11512f86ba45SStephan Aßmus 		bottomTint = (bottomTint + B_NO_TINT) / 2;
1152a884b43bSJohn Scipione 	} else if ((flags & B_HOVER) != 0) {
11532f86ba45SStephan Aßmus 		topTint *= kHoverTintFactor;
11542f86ba45SStephan Aßmus 		middleTint1 *= kHoverTintFactor;
11552f86ba45SStephan Aßmus 		middleTint2 *= kHoverTintFactor;
11562f86ba45SStephan Aßmus 		bottomTint *= kHoverTintFactor;
11572f86ba45SStephan Aßmus 	}
11582f86ba45SStephan Aßmus 
1159a884b43bSJohn Scipione 	if ((flags & B_FOCUSED) != 0) {
11602f86ba45SStephan Aßmus 		// focused
11612f86ba45SStephan Aßmus 		frameLightColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
11622f86ba45SStephan Aßmus 		frameShadowColor = frameLightColor;
11632f86ba45SStephan Aßmus 	} else {
11642f86ba45SStephan Aßmus 		// figure out the tints to be used
11652f86ba45SStephan Aßmus 		float frameLightTint;
11662f86ba45SStephan Aßmus 		float frameShadowTint;
11672f86ba45SStephan Aßmus 
1168a884b43bSJohn Scipione 		if ((flags & B_DISABLED) != 0) {
11692f86ba45SStephan Aßmus 			frameLightTint = 1.30;
11702f86ba45SStephan Aßmus 			frameShadowTint = 1.35;
11712f86ba45SStephan Aßmus 			shadowColor.alpha = 30;
11722f86ba45SStephan Aßmus 		} else {
11732f86ba45SStephan Aßmus 			frameLightTint = 1.6;
11742f86ba45SStephan Aßmus 			frameShadowTint = 1.65;
11752f86ba45SStephan Aßmus 		}
11762f86ba45SStephan Aßmus 
11772f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, frameLightTint);
11782f86ba45SStephan Aßmus 		frameShadowColor = tint_color(base, frameShadowTint);
11792f86ba45SStephan Aßmus 	}
11802f86ba45SStephan Aßmus 
11818ee9217eSStephan Aßmus 	// make room for the shadow
11828ee9217eSStephan Aßmus 	rect.right--;
11838ee9217eSStephan Aßmus 	rect.bottom--;
11842f86ba45SStephan Aßmus 
11852f86ba45SStephan Aßmus 	uint32 viewFlags = view->Flags();
11862f86ba45SStephan Aßmus 	view->SetFlags(viewFlags | B_SUBPIXEL_PRECISE);
11872f86ba45SStephan Aßmus 	view->SetLineMode(B_ROUND_CAP, B_ROUND_JOIN);
11882f86ba45SStephan Aßmus 
1189f3997b74SStephan Aßmus 	float centerh = (rect.left + rect.right) / 2;
1190f3997b74SStephan Aßmus 	float centerv = (rect.top + rect.bottom) / 2;
11912f86ba45SStephan Aßmus 
11928ee9217eSStephan Aßmus 	BShape shape;
1193f3997b74SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
11948ee9217eSStephan Aßmus 		shape.MoveTo(BPoint(rect.left + 0.5, rect.bottom + 0.5));
11958ee9217eSStephan Aßmus 		shape.LineTo(BPoint(rect.right + 0.5, rect.bottom + 0.5));
11968ee9217eSStephan Aßmus 		shape.LineTo(BPoint(rect.right + 0.5, rect.bottom - 1 + 0.5));
1197f3997b74SStephan Aßmus 		shape.LineTo(BPoint(centerh + 0.5, rect.top + 0.5));
11988ee9217eSStephan Aßmus 		shape.LineTo(BPoint(rect.left + 0.5, rect.bottom - 1 + 0.5));
1199f3997b74SStephan Aßmus 	} else {
1200f3997b74SStephan Aßmus 		shape.MoveTo(BPoint(rect.right + 0.5, rect.top + 0.5));
1201f3997b74SStephan Aßmus 		shape.LineTo(BPoint(rect.right + 0.5, rect.bottom + 0.5));
1202f3997b74SStephan Aßmus 		shape.LineTo(BPoint(rect.right - 1 + 0.5, rect.bottom + 0.5));
1203f3997b74SStephan Aßmus 		shape.LineTo(BPoint(rect.left + 0.5, centerv + 0.5));
1204f3997b74SStephan Aßmus 		shape.LineTo(BPoint(rect.right - 1 + 0.5, rect.top + 0.5));
1205f3997b74SStephan Aßmus 	}
12068ee9217eSStephan Aßmus 	shape.Close();
12078ee9217eSStephan Aßmus 
12088ee9217eSStephan Aßmus 	view->MovePenTo(BPoint(1, 1));
12098ee9217eSStephan Aßmus 
12108ee9217eSStephan Aßmus 	view->SetDrawingMode(B_OP_ALPHA);
12118ee9217eSStephan Aßmus 	view->SetHighColor(shadowColor);
12128ee9217eSStephan Aßmus 	view->StrokeShape(&shape);
12138ee9217eSStephan Aßmus 
12148ee9217eSStephan Aßmus 	view->MovePenTo(B_ORIGIN);
12158ee9217eSStephan Aßmus 
12168ee9217eSStephan Aßmus 	view->SetDrawingMode(B_OP_COPY);
12172f86ba45SStephan Aßmus 	view->SetHighColor(frameLightColor);
12188ee9217eSStephan Aßmus 	view->StrokeShape(&shape);
12192f86ba45SStephan Aßmus 
12202f86ba45SStephan Aßmus 	rect.InsetBy(1, 1);
12218ee9217eSStephan Aßmus 	shape.Clear();
1222f3997b74SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
12238ee9217eSStephan Aßmus 		shape.MoveTo(BPoint(rect.left, rect.bottom + 1));
12248ee9217eSStephan Aßmus 		shape.LineTo(BPoint(rect.right + 1, rect.bottom + 1));
1225f3997b74SStephan Aßmus 		shape.LineTo(BPoint(centerh + 0.5, rect.top));
1226f3997b74SStephan Aßmus 	} else {
1227f3997b74SStephan Aßmus 		shape.MoveTo(BPoint(rect.right + 1, rect.top));
1228f3997b74SStephan Aßmus 		shape.LineTo(BPoint(rect.right + 1, rect.bottom + 1));
1229f3997b74SStephan Aßmus 		shape.LineTo(BPoint(rect.left, centerv + 0.5));
1230f3997b74SStephan Aßmus 	}
12318ee9217eSStephan Aßmus 	shape.Close();
12322f86ba45SStephan Aßmus 
12332f86ba45SStephan Aßmus 	BGradientLinear gradient;
1234a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
12358ee9217eSStephan Aßmus 		_MakeGradient(gradient, rect, fill, topTint, bottomTint);
12362f86ba45SStephan Aßmus 	} else {
12378ee9217eSStephan Aßmus 		_MakeGlossyGradient(gradient, rect, fill, topTint, middleTint1,
12382f86ba45SStephan Aßmus 			middleTint2, bottomTint);
12392f86ba45SStephan Aßmus 	}
12402f86ba45SStephan Aßmus 
12418ee9217eSStephan Aßmus 	view->FillShape(&shape, gradient);
12422f86ba45SStephan Aßmus 
12432f86ba45SStephan Aßmus 	view->SetFlags(viewFlags);
12442f86ba45SStephan Aßmus }
12452f86ba45SStephan Aßmus 
12462f86ba45SStephan Aßmus 
12472f86ba45SStephan Aßmus void
12482f86ba45SStephan Aßmus BControlLook::DrawSliderHashMarks(BView* view, BRect& rect,
12492f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, int32 count,
1250e724b26fSJohn Scipione 	hash_mark_location location, uint32 flags, orientation orientation)
12512f86ba45SStephan Aßmus {
12522f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
12532f86ba45SStephan Aßmus 		return;
12542f86ba45SStephan Aßmus 
12552f86ba45SStephan Aßmus 	rgb_color lightColor;
12562f86ba45SStephan Aßmus 	rgb_color darkColor;
12572f86ba45SStephan Aßmus 
1258a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
12592f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.9);
12602f86ba45SStephan Aßmus 		darkColor = tint_color(base, 1.07);
12612f86ba45SStephan Aßmus 	} else {
12622f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.8);
12632f86ba45SStephan Aßmus 		darkColor = tint_color(base, 1.14);
12642f86ba45SStephan Aßmus 	}
12652f86ba45SStephan Aßmus 
12662f86ba45SStephan Aßmus 	int32 hashMarkCount = max_c(count, 2);
12672f86ba45SStephan Aßmus 		// draw at least two hashmarks at min/max if
12682f86ba45SStephan Aßmus 		// fHashMarks != B_HASH_MARKS_NONE
12692f86ba45SStephan Aßmus 	float factor;
12702f86ba45SStephan Aßmus 	float startPos;
12712f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
12722f86ba45SStephan Aßmus 		factor = (rect.Width() - 2) / (hashMarkCount - 1);
12732f86ba45SStephan Aßmus 		startPos = rect.left + 1;
12742f86ba45SStephan Aßmus 	} else {
12752f86ba45SStephan Aßmus 		factor = (rect.Height() - 2) / (hashMarkCount - 1);
12762f86ba45SStephan Aßmus 		startPos = rect.top + 1;
12772f86ba45SStephan Aßmus 	}
12782f86ba45SStephan Aßmus 
12792f86ba45SStephan Aßmus 	if (location & B_HASH_MARKS_TOP) {
12802f86ba45SStephan Aßmus 		view->BeginLineArray(hashMarkCount * 2);
12812f86ba45SStephan Aßmus 
12822f86ba45SStephan Aßmus 		if (orientation == B_HORIZONTAL) {
12832f86ba45SStephan Aßmus 			float pos = startPos;
12842f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
12852f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos, rect.top),
12862f86ba45SStephan Aßmus 							  BPoint(pos, rect.top + 4), darkColor);
12872f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos + 1, rect.top),
12882f86ba45SStephan Aßmus 							  BPoint(pos + 1, rect.top + 4), lightColor);
12892f86ba45SStephan Aßmus 
12902f86ba45SStephan Aßmus 				pos += factor;
12912f86ba45SStephan Aßmus 			}
12922f86ba45SStephan Aßmus 		} else {
12932f86ba45SStephan Aßmus 			float pos = startPos;
12942f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
12952f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.left, pos),
12962f86ba45SStephan Aßmus 							  BPoint(rect.left + 4, pos), darkColor);
12972f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.left, pos + 1),
12982f86ba45SStephan Aßmus 							  BPoint(rect.left + 4, pos + 1), lightColor);
12992f86ba45SStephan Aßmus 
13002f86ba45SStephan Aßmus 				pos += factor;
13012f86ba45SStephan Aßmus 			}
13022f86ba45SStephan Aßmus 		}
13032f86ba45SStephan Aßmus 
13042f86ba45SStephan Aßmus 		view->EndLineArray();
13052f86ba45SStephan Aßmus 	}
13062f86ba45SStephan Aßmus 
13072f86ba45SStephan Aßmus 	if (location & B_HASH_MARKS_BOTTOM) {
13082f86ba45SStephan Aßmus 
13092f86ba45SStephan Aßmus 		view->BeginLineArray(hashMarkCount * 2);
13102f86ba45SStephan Aßmus 
13112f86ba45SStephan Aßmus 		if (orientation == B_HORIZONTAL) {
13122f86ba45SStephan Aßmus 			float pos = startPos;
13132f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
13142f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos, rect.bottom - 4),
13152f86ba45SStephan Aßmus 							  BPoint(pos, rect.bottom), darkColor);
13162f86ba45SStephan Aßmus 				view->AddLine(BPoint(pos + 1, rect.bottom - 4),
13172f86ba45SStephan Aßmus 							  BPoint(pos + 1, rect.bottom), lightColor);
13182f86ba45SStephan Aßmus 
13192f86ba45SStephan Aßmus 				pos += factor;
13202f86ba45SStephan Aßmus 			}
13212f86ba45SStephan Aßmus 		} else {
13222f86ba45SStephan Aßmus 			float pos = startPos;
13232f86ba45SStephan Aßmus 			for (int32 i = 0; i < hashMarkCount; i++) {
13242f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.right - 4, pos),
13252f86ba45SStephan Aßmus 							  BPoint(rect.right, pos), darkColor);
13262f86ba45SStephan Aßmus 				view->AddLine(BPoint(rect.right - 4, pos + 1),
13272f86ba45SStephan Aßmus 							  BPoint(rect.right, pos + 1), lightColor);
13282f86ba45SStephan Aßmus 
13292f86ba45SStephan Aßmus 				pos += factor;
13302f86ba45SStephan Aßmus 			}
13312f86ba45SStephan Aßmus 		}
13322f86ba45SStephan Aßmus 
13332f86ba45SStephan Aßmus 		view->EndLineArray();
13342f86ba45SStephan Aßmus 	}
13352f86ba45SStephan Aßmus }
13362f86ba45SStephan Aßmus 
13372f86ba45SStephan Aßmus 
13382f86ba45SStephan Aßmus void
13392f86ba45SStephan Aßmus BControlLook::DrawActiveTab(BView* view, BRect& rect, const BRect& updateRect,
13402f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
13412f86ba45SStephan Aßmus {
13422f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
13432f86ba45SStephan Aßmus 		return;
13442f86ba45SStephan Aßmus 
13455666b4f7SJohn Scipione 	// save the clipping constraints of the view
13465666b4f7SJohn Scipione 	view->PushState();
1347a884b43bSJohn Scipione 
13485666b4f7SJohn Scipione 	// set clipping constraints to updateRect
13495666b4f7SJohn Scipione 	BRegion clipping(updateRect);
1350a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
1351a884b43bSJohn Scipione 
13522f86ba45SStephan Aßmus 	rgb_color edgeShadowColor;
13532f86ba45SStephan Aßmus 	rgb_color edgeLightColor;
13542f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
13552f86ba45SStephan Aßmus 	rgb_color frameLightColor;
13562f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
13572f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
13582f86ba45SStephan Aßmus 	BGradientLinear fillGradient;
13592f86ba45SStephan Aßmus 	fillGradient.SetStart(rect.LeftTop() + BPoint(3, 3));
13602f86ba45SStephan Aßmus 	fillGradient.SetEnd(rect.LeftBottom() + BPoint(3, -3));
13612f86ba45SStephan Aßmus 
1362a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
13632f86ba45SStephan Aßmus 		edgeLightColor = base;
1364a884b43bSJohn Scipione 		edgeShadowColor = base;
13652f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.25);
1366a884b43bSJohn Scipione 		frameShadowColor = tint_color(base, 1.30);
13672f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.8);
1368a884b43bSJohn Scipione 		bevelShadowColor = tint_color(base, 1.07);
13692f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.85), 0);
13702f86ba45SStephan Aßmus 		fillGradient.AddColor(base, 255);
13712f86ba45SStephan Aßmus 	} else {
13722f86ba45SStephan Aßmus 		edgeLightColor = tint_color(base, 0.80);
1373a884b43bSJohn Scipione 		edgeShadowColor = tint_color(base, 1.03);
13742f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.30);
1375a884b43bSJohn Scipione 		frameShadowColor = tint_color(base, 1.30);
13762f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.6);
1377a884b43bSJohn Scipione 		bevelShadowColor = tint_color(base, 1.07);
13782f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.75), 0);
13792f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.03), 255);
13802f86ba45SStephan Aßmus 	}
138112ea5a2cSStephan Aßmus 
1382a884b43bSJohn Scipione 	static const float kRoundCornerRadius = 4.0f;
13832f86ba45SStephan Aßmus 
1384a884b43bSJohn Scipione 	// left top corner dimensions
1385a884b43bSJohn Scipione 	BRect leftTopCorner(rect);
1386a884b43bSJohn Scipione 	leftTopCorner.right = floorf(leftTopCorner.left + kRoundCornerRadius);
1387a884b43bSJohn Scipione 	leftTopCorner.bottom = floorf(rect.top + kRoundCornerRadius);
1388a884b43bSJohn Scipione 	clipping.Exclude(leftTopCorner);
13892f86ba45SStephan Aßmus 
1390a884b43bSJohn Scipione 	// draw the left top corner
1391a884b43bSJohn Scipione 	_DrawRoundCornerLeftTop(view, leftTopCorner, updateRect, base,
1392a884b43bSJohn Scipione 		edgeShadowColor, frameLightColor, bevelLightColor,
1393a884b43bSJohn Scipione 		fillGradient);
13942f86ba45SStephan Aßmus 
1395a884b43bSJohn Scipione 	// right top corner dimensions
1396a884b43bSJohn Scipione 	BRect rightTopCorner(rect);
1397a884b43bSJohn Scipione 	rightTopCorner.right = floorf(rect.right);
1398a884b43bSJohn Scipione 	rightTopCorner.left = floorf(rightTopCorner.right - kRoundCornerRadius);
1399a884b43bSJohn Scipione 	rightTopCorner.bottom = floorf(rect.top + kRoundCornerRadius);
1400a884b43bSJohn Scipione 	clipping.Exclude(rightTopCorner);
14012f86ba45SStephan Aßmus 
1402a884b43bSJohn Scipione 	// draw the right top corner
1403a884b43bSJohn Scipione 	_DrawRoundCornerRightTop(view, rightTopCorner, updateRect, base,
1404a884b43bSJohn Scipione 		edgeShadowColor, edgeLightColor, frameLightColor,
1405a884b43bSJohn Scipione 		frameShadowColor, bevelLightColor, bevelShadowColor,
1406a884b43bSJohn Scipione 		fillGradient);
14072f86ba45SStephan Aßmus 
1408a884b43bSJohn Scipione 	// clip out the corners
14092f86ba45SStephan Aßmus 	view->ConstrainClippingRegion(&clipping);
14102f86ba45SStephan Aßmus 
1411a884b43bSJohn Scipione 	// draw the rest of frame and fill
14122f86ba45SStephan Aßmus 	_DrawFrame(view, rect, edgeShadowColor, edgeShadowColor, edgeLightColor,
14132f86ba45SStephan Aßmus 		edgeLightColor,
14142f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
14152f86ba45SStephan Aßmus 	if ((borders & B_LEFT_BORDER) == 0)
14162f86ba45SStephan Aßmus 		rect.left++;
14172f86ba45SStephan Aßmus 	if ((borders & B_RIGHT_BORDER) == 0)
14182f86ba45SStephan Aßmus 		rect.right--;
14192f86ba45SStephan Aßmus 
14202f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor, frameShadowColor,
14212f86ba45SStephan Aßmus 		frameShadowColor, B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER);
14222f86ba45SStephan Aßmus 
14232f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelLightColor, bevelLightColor, bevelShadowColor,
14242f86ba45SStephan Aßmus 		bevelShadowColor);
14252f86ba45SStephan Aßmus 
14262f86ba45SStephan Aßmus 	view->FillRect(rect, fillGradient);
14272f86ba45SStephan Aßmus 
14285666b4f7SJohn Scipione 	// restore the clipping constraints of the view
14295666b4f7SJohn Scipione 	view->PopState();
14302f86ba45SStephan Aßmus }
14312f86ba45SStephan Aßmus 
14322f86ba45SStephan Aßmus 
14332f86ba45SStephan Aßmus void
143483aff015SPhilippe Houdoin BControlLook::DrawInactiveTab(BView* view, BRect& rect, const BRect& updateRect,
14352f86ba45SStephan Aßmus 	const rgb_color& base, uint32 flags, uint32 borders)
14362f86ba45SStephan Aßmus {
14372f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
14382f86ba45SStephan Aßmus 		return;
14392f86ba45SStephan Aßmus 
14402f86ba45SStephan Aßmus 	rgb_color edgeShadowColor;
14412f86ba45SStephan Aßmus 	rgb_color edgeLightColor;
14422f86ba45SStephan Aßmus 	rgb_color frameShadowColor;
14432f86ba45SStephan Aßmus 	rgb_color frameLightColor;
14442f86ba45SStephan Aßmus 	rgb_color bevelShadowColor;
14452f86ba45SStephan Aßmus 	rgb_color bevelLightColor;
14462f86ba45SStephan Aßmus 	BGradientLinear fillGradient;
14472f86ba45SStephan Aßmus 	fillGradient.SetStart(rect.LeftTop() + BPoint(3, 3));
14482f86ba45SStephan Aßmus 	fillGradient.SetEnd(rect.LeftBottom() + BPoint(3, -3));
14492f86ba45SStephan Aßmus 
1450a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
14512f86ba45SStephan Aßmus 		edgeLightColor = base;
1452a884b43bSJohn Scipione 		edgeShadowColor = base;
14532f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.25);
1454a884b43bSJohn Scipione 		frameShadowColor = tint_color(base, 1.30);
14552f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 0.8);
1456a884b43bSJohn Scipione 		bevelShadowColor = tint_color(base, 1.07);
14572f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 0.85), 0);
14582f86ba45SStephan Aßmus 		fillGradient.AddColor(base, 255);
14592f86ba45SStephan Aßmus 	} else {
14602f86ba45SStephan Aßmus 		edgeLightColor = tint_color(base, 0.80);
1461a884b43bSJohn Scipione 		edgeShadowColor = tint_color(base, 1.03);
14622f86ba45SStephan Aßmus 		frameLightColor = tint_color(base, 1.30);
1463a884b43bSJohn Scipione 		frameShadowColor = tint_color(base, 1.30);
14642f86ba45SStephan Aßmus 		bevelLightColor = tint_color(base, 1.10);
1465a884b43bSJohn Scipione 		bevelShadowColor = tint_color(base, 1.17);
14662f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.12), 0);
14672f86ba45SStephan Aßmus 		fillGradient.AddColor(tint_color(base, 1.08), 255);
14682f86ba45SStephan Aßmus 	}
14692f86ba45SStephan Aßmus 
14702f86ba45SStephan Aßmus 	// active tabs stand out at the top, but this is an inactive tab
14712f86ba45SStephan Aßmus 	view->SetHighColor(base);
14722f86ba45SStephan Aßmus 	view->FillRect(BRect(rect.left, rect.top, rect.right, rect.top + 4));
14732f86ba45SStephan Aßmus 	rect.top += 4;
14742f86ba45SStephan Aßmus 
14752f86ba45SStephan Aßmus 	// frame and fill
14762f86ba45SStephan Aßmus 	_DrawFrame(view, rect, edgeShadowColor, edgeShadowColor, edgeLightColor,
14772f86ba45SStephan Aßmus 		edgeLightColor,
14782f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
14792f86ba45SStephan Aßmus 
14802f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameLightColor, frameLightColor, frameShadowColor,
14812f86ba45SStephan Aßmus 		frameShadowColor,
14822f86ba45SStephan Aßmus 		borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER));
14832f86ba45SStephan Aßmus 
1484b3601d82SStephan Aßmus 	if (rect.IsValid()) {
1485b3601d82SStephan Aßmus 		_DrawFrame(view, rect, bevelShadowColor, bevelShadowColor,
1486b3601d82SStephan Aßmus 			bevelLightColor, bevelLightColor, B_LEFT_BORDER & ~borders);
1487b3601d82SStephan Aßmus 	} else {
1488b3601d82SStephan Aßmus 		if ((B_LEFT_BORDER & ~borders) != 0)
1489b3601d82SStephan Aßmus 			rect.left++;
1490b3601d82SStephan Aßmus 	}
14912f86ba45SStephan Aßmus 
14922f86ba45SStephan Aßmus 	view->FillRect(rect, fillGradient);
14932f86ba45SStephan Aßmus }
14942f86ba45SStephan Aßmus 
14952f86ba45SStephan Aßmus 
14961f9fd6d8SStephan Aßmus void
14971f9fd6d8SStephan Aßmus BControlLook::DrawSplitter(BView* view, BRect& rect, const BRect& updateRect,
1498e724b26fSJohn Scipione 	const rgb_color& base, orientation orientation, uint32 flags,
14991f9fd6d8SStephan Aßmus 	uint32 borders)
15001f9fd6d8SStephan Aßmus {
1501a884b43bSJohn Scipione 	if (!rect.IsValid() || !rect.Intersects(updateRect))
1502a884b43bSJohn Scipione 		return;
1503a884b43bSJohn Scipione 
15041f9fd6d8SStephan Aßmus 	rgb_color background;
15051f9fd6d8SStephan Aßmus 	if ((flags & (B_CLICKED | B_ACTIVATED)) != 0)
15061f9fd6d8SStephan Aßmus 		background = tint_color(base, B_DARKEN_1_TINT);
15071f9fd6d8SStephan Aßmus 	else
15081f9fd6d8SStephan Aßmus 		background = base;
15091f9fd6d8SStephan Aßmus 
15101f9fd6d8SStephan Aßmus 	rgb_color light = tint_color(background, 0.6);
15111f9fd6d8SStephan Aßmus 	rgb_color shadow = tint_color(background, 1.21);
15121f9fd6d8SStephan Aßmus 
15131f9fd6d8SStephan Aßmus 	// frame
15141f9fd6d8SStephan Aßmus 	if (borders != 0 && rect.Width() > 3 && rect.Height() > 3)
15151f9fd6d8SStephan Aßmus 		DrawRaisedBorder(view, rect, updateRect, background, flags, borders);
15161f9fd6d8SStephan Aßmus 
15171f9fd6d8SStephan Aßmus 	// dots and rest of background
15181f9fd6d8SStephan Aßmus 	if (orientation == B_HORIZONTAL) {
15191f9fd6d8SStephan Aßmus 		if (rect.Width() > 2) {
15201f9fd6d8SStephan Aßmus 			// background on left/right
15211f9fd6d8SStephan Aßmus 			BRegion region(rect);
15221f9fd6d8SStephan Aßmus 			rect.left = floorf((rect.left + rect.right) / 2.0 - 0.5);
15231f9fd6d8SStephan Aßmus 			rect.right = rect.left + 1;
15241f9fd6d8SStephan Aßmus 			region.Exclude(rect);
15251f9fd6d8SStephan Aßmus 			view->SetHighColor(background);
15261f9fd6d8SStephan Aßmus 			view->FillRegion(&region);
15271f9fd6d8SStephan Aßmus 		}
15281f9fd6d8SStephan Aßmus 
15291f9fd6d8SStephan Aßmus 		BPoint dot = rect.LeftTop();
15301f9fd6d8SStephan Aßmus 		BPoint stop = rect.LeftBottom();
15311f9fd6d8SStephan Aßmus 		int32 num = 1;
15321f9fd6d8SStephan Aßmus 		while (dot.y <= stop.y) {
15331f9fd6d8SStephan Aßmus 			rgb_color col1;
15341f9fd6d8SStephan Aßmus 			rgb_color col2;
15351f9fd6d8SStephan Aßmus 			switch (num) {
15361f9fd6d8SStephan Aßmus 				case 1:
15371f9fd6d8SStephan Aßmus 					col1 = background;
15381f9fd6d8SStephan Aßmus 					col2 = background;
15391f9fd6d8SStephan Aßmus 					break;
15401f9fd6d8SStephan Aßmus 				case 2:
15411f9fd6d8SStephan Aßmus 					col1 = shadow;
15421f9fd6d8SStephan Aßmus 					col2 = background;
15431f9fd6d8SStephan Aßmus 					break;
15441f9fd6d8SStephan Aßmus 				case 3:
1545a5339f65SStephan Aßmus 				default:
15461f9fd6d8SStephan Aßmus 					col1 = background;
15471f9fd6d8SStephan Aßmus 					col2 = light;
15481f9fd6d8SStephan Aßmus 					num = 0;
15491f9fd6d8SStephan Aßmus 					break;
15501f9fd6d8SStephan Aßmus 			}
15511f9fd6d8SStephan Aßmus 			view->SetHighColor(col1);
15521f9fd6d8SStephan Aßmus 			view->StrokeLine(dot, dot, B_SOLID_HIGH);
15531f9fd6d8SStephan Aßmus 			view->SetHighColor(col2);
15541f9fd6d8SStephan Aßmus 			dot.x++;
15551f9fd6d8SStephan Aßmus 			view->StrokeLine(dot, dot, B_SOLID_HIGH);
15561f9fd6d8SStephan Aßmus 			dot.x -= 1.0;
15571f9fd6d8SStephan Aßmus 			// next pixel
15581f9fd6d8SStephan Aßmus 			num++;
15591f9fd6d8SStephan Aßmus 			dot.y++;
15601f9fd6d8SStephan Aßmus 		}
15611f9fd6d8SStephan Aßmus 	} else {
15621f9fd6d8SStephan Aßmus 		if (rect.Height() > 2) {
15631f9fd6d8SStephan Aßmus 			// background on left/right
15641f9fd6d8SStephan Aßmus 			BRegion region(rect);
15651f9fd6d8SStephan Aßmus 			rect.top = floorf((rect.top + rect.bottom) / 2.0 - 0.5);
15661f9fd6d8SStephan Aßmus 			rect.bottom = rect.top + 1;
15671f9fd6d8SStephan Aßmus 			region.Exclude(rect);
15681f9fd6d8SStephan Aßmus 			view->SetHighColor(background);
15691f9fd6d8SStephan Aßmus 			view->FillRegion(&region);
15701f9fd6d8SStephan Aßmus 		}
15711f9fd6d8SStephan Aßmus 
15721f9fd6d8SStephan Aßmus 		BPoint dot = rect.LeftTop();
15731f9fd6d8SStephan Aßmus 		BPoint stop = rect.RightTop();
15741f9fd6d8SStephan Aßmus 		int32 num = 1;
15751f9fd6d8SStephan Aßmus 		while (dot.x <= stop.x) {
15761f9fd6d8SStephan Aßmus 			rgb_color col1;
15771f9fd6d8SStephan Aßmus 			rgb_color col2;
15781f9fd6d8SStephan Aßmus 			switch (num) {
15791f9fd6d8SStephan Aßmus 				case 1:
15801f9fd6d8SStephan Aßmus 					col1 = background;
15811f9fd6d8SStephan Aßmus 					col2 = background;
15821f9fd6d8SStephan Aßmus 					break;
15831f9fd6d8SStephan Aßmus 				case 2:
15841f9fd6d8SStephan Aßmus 					col1 = shadow;
15851f9fd6d8SStephan Aßmus 					col2 = background;
15861f9fd6d8SStephan Aßmus 					break;
15871f9fd6d8SStephan Aßmus 				case 3:
15889f981a88SFrançois Revol 				default:
15891f9fd6d8SStephan Aßmus 					col1 = background;
15901f9fd6d8SStephan Aßmus 					col2 = light;
15911f9fd6d8SStephan Aßmus 					num = 0;
15921f9fd6d8SStephan Aßmus 					break;
15931f9fd6d8SStephan Aßmus 			}
15941f9fd6d8SStephan Aßmus 			view->SetHighColor(col1);
15951f9fd6d8SStephan Aßmus 			view->StrokeLine(dot, dot, B_SOLID_HIGH);
15961f9fd6d8SStephan Aßmus 			view->SetHighColor(col2);
15971f9fd6d8SStephan Aßmus 			dot.y++;
15981f9fd6d8SStephan Aßmus 			view->StrokeLine(dot, dot, B_SOLID_HIGH);
15991f9fd6d8SStephan Aßmus 			dot.y -= 1.0;
16001f9fd6d8SStephan Aßmus 			// next pixel
16011f9fd6d8SStephan Aßmus 			num++;
16021f9fd6d8SStephan Aßmus 			dot.x++;
16031f9fd6d8SStephan Aßmus 		}
16041f9fd6d8SStephan Aßmus 	}
16051f9fd6d8SStephan Aßmus }
16061f9fd6d8SStephan Aßmus 
16071f9fd6d8SStephan Aßmus 
16082f86ba45SStephan Aßmus // #pragma mark -
16092f86ba45SStephan Aßmus 
16102f86ba45SStephan Aßmus 
16112f86ba45SStephan Aßmus void
16122f86ba45SStephan Aßmus BControlLook::DrawBorder(BView* view, BRect& rect, const BRect& updateRect,
16132f86ba45SStephan Aßmus 	const rgb_color& base, border_style border, uint32 flags, uint32 borders)
16142f86ba45SStephan Aßmus {
16152f86ba45SStephan Aßmus 	if (border == B_NO_BORDER)
16162f86ba45SStephan Aßmus 		return;
16172f86ba45SStephan Aßmus 
16182f86ba45SStephan Aßmus 	rgb_color scrollbarFrameColor = tint_color(base, B_DARKEN_2_TINT);
1619a884b43bSJohn Scipione 	if ((flags & B_FOCUSED) != 0)
16202f86ba45SStephan Aßmus 		scrollbarFrameColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
16212f86ba45SStephan Aßmus 
16222f86ba45SStephan Aßmus 	if (border == B_FANCY_BORDER)
16234f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 1.0, 1.0, flags, borders);
16242f86ba45SStephan Aßmus 
16252f86ba45SStephan Aßmus 	_DrawFrame(view, rect, scrollbarFrameColor, scrollbarFrameColor,
16262f86ba45SStephan Aßmus 		scrollbarFrameColor, scrollbarFrameColor, borders);
16272f86ba45SStephan Aßmus }
16282f86ba45SStephan Aßmus 
16292f86ba45SStephan Aßmus 
16302f86ba45SStephan Aßmus void
16312f86ba45SStephan Aßmus BControlLook::DrawRaisedBorder(BView* view, BRect& rect,
16322f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
16332f86ba45SStephan Aßmus 	uint32 borders)
16342f86ba45SStephan Aßmus {
16352f86ba45SStephan Aßmus 	rgb_color lightColor;
16362f86ba45SStephan Aßmus 	rgb_color shadowColor;
16372f86ba45SStephan Aßmus 
1638a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
16392f86ba45SStephan Aßmus 		lightColor = base;
16402f86ba45SStephan Aßmus 		shadowColor = base;
16412f86ba45SStephan Aßmus 	} else {
16422f86ba45SStephan Aßmus 		lightColor = tint_color(base, 0.85);
16432f86ba45SStephan Aßmus 		shadowColor = tint_color(base, 1.07);
16442f86ba45SStephan Aßmus 	}
16452f86ba45SStephan Aßmus 
16462f86ba45SStephan Aßmus 	_DrawFrame(view, rect, lightColor, lightColor, shadowColor, shadowColor,
16472f86ba45SStephan Aßmus 		borders);
16482f86ba45SStephan Aßmus }
16492f86ba45SStephan Aßmus 
16502f86ba45SStephan Aßmus 
16512f86ba45SStephan Aßmus void
16522f86ba45SStephan Aßmus BControlLook::DrawTextControlBorder(BView* view, BRect& rect,
16532f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
16542f86ba45SStephan Aßmus 	uint32 borders)
16552f86ba45SStephan Aßmus {
16562f86ba45SStephan Aßmus 	if (!rect.Intersects(updateRect))
16572f86ba45SStephan Aßmus 		return;
16582f86ba45SStephan Aßmus 
16592f86ba45SStephan Aßmus 	rgb_color dark1BorderColor;
16602f86ba45SStephan Aßmus 	rgb_color dark2BorderColor;
16612f86ba45SStephan Aßmus 	rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR);
16622f86ba45SStephan Aßmus 
1663a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
16644f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.0, 1.0, flags, borders);
16652f86ba45SStephan Aßmus 
1666a884b43bSJohn Scipione 		if ((flags & B_BLEND_FRAME) != 0)
16674f579098SStephan Aßmus 			dark1BorderColor = (rgb_color){ 0, 0, 0, 40 };
16684f579098SStephan Aßmus 		else
16692f86ba45SStephan Aßmus 			dark1BorderColor = tint_color(base, 1.15);
16704f579098SStephan Aßmus 		dark2BorderColor = dark1BorderColor;
1671a884b43bSJohn Scipione 	} else if ((flags & B_CLICKED) != 0) {
16722f86ba45SStephan Aßmus 		dark1BorderColor = tint_color(base, 1.50);
16732f86ba45SStephan Aßmus 		dark2BorderColor = tint_color(base, 1.49);
16742f86ba45SStephan Aßmus 
16754f579098SStephan Aßmus 		// BCheckBox uses this to indicate the clicked state...
16762f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
16772f86ba45SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
16782f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor);
16792f86ba45SStephan Aßmus 
16802f86ba45SStephan Aßmus 		dark2BorderColor = dark1BorderColor;
16812f86ba45SStephan Aßmus 	} else {
16824f579098SStephan Aßmus 		_DrawOuterResessedFrame(view, rect, base, 0.6, 1.0, flags, borders);
16832f86ba45SStephan Aßmus 
1684a884b43bSJohn Scipione 		if ((flags & B_BLEND_FRAME) != 0) {
16854f579098SStephan Aßmus 			dark1BorderColor = (rgb_color){ 0, 0, 0, 102 };
16864f579098SStephan Aßmus 			dark2BorderColor = (rgb_color){ 0, 0, 0, 97 };
16874f579098SStephan Aßmus 		} else {
16882f86ba45SStephan Aßmus 			dark1BorderColor = tint_color(base, 1.40);
16892f86ba45SStephan Aßmus 			dark2BorderColor = tint_color(base, 1.38);
16902f86ba45SStephan Aßmus 		}
16914f579098SStephan Aßmus 	}
16922f86ba45SStephan Aßmus 
1693a884b43bSJohn Scipione 	if ((flags & B_DISABLED) == 0 && (flags & B_FOCUSED) != 0) {
16942f86ba45SStephan Aßmus 		dark1BorderColor = navigationColor;
16952f86ba45SStephan Aßmus 		dark2BorderColor = navigationColor;
16962f86ba45SStephan Aßmus 	}
16972f86ba45SStephan Aßmus 
1698a884b43bSJohn Scipione 	if ((flags & B_BLEND_FRAME) != 0) {
16994f579098SStephan Aßmus 		drawing_mode oldMode = view->DrawingMode();
17004f579098SStephan Aßmus 		view->SetDrawingMode(B_OP_ALPHA);
17014f579098SStephan Aßmus 
17022f86ba45SStephan Aßmus 		_DrawFrame(view, rect,
17032f86ba45SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
17042f86ba45SStephan Aßmus 			dark2BorderColor, dark2BorderColor, borders);
17054f579098SStephan Aßmus 
17064f579098SStephan Aßmus 		view->SetDrawingMode(oldMode);
17074f579098SStephan Aßmus 	} else {
17084f579098SStephan Aßmus 		_DrawFrame(view, rect,
17094f579098SStephan Aßmus 			dark1BorderColor, dark1BorderColor,
17104f579098SStephan Aßmus 			dark2BorderColor, dark2BorderColor, borders);
17114f579098SStephan Aßmus 	}
17122f86ba45SStephan Aßmus }
17132f86ba45SStephan Aßmus 
17142f86ba45SStephan Aßmus 
17152f86ba45SStephan Aßmus void
17162f86ba45SStephan Aßmus BControlLook::DrawGroupFrame(BView* view, BRect& rect, const BRect& updateRect,
17172f86ba45SStephan Aßmus 	const rgb_color& base, uint32 borders)
17182f86ba45SStephan Aßmus {
17192f86ba45SStephan Aßmus 	rgb_color frameColor = tint_color(base, 1.30);
17202f86ba45SStephan Aßmus 	rgb_color bevelLight = tint_color(base, 0.8);
17212f86ba45SStephan Aßmus 	rgb_color bevelShadow = tint_color(base, 1.03);
17222f86ba45SStephan Aßmus 
17232f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelShadow, bevelShadow, bevelLight, bevelLight,
17242f86ba45SStephan Aßmus 		borders);
17252f86ba45SStephan Aßmus 
17262f86ba45SStephan Aßmus 	_DrawFrame(view, rect, frameColor, frameColor, frameColor, frameColor,
17272f86ba45SStephan Aßmus 		borders);
17282f86ba45SStephan Aßmus 
17292f86ba45SStephan Aßmus 	_DrawFrame(view, rect, bevelLight, bevelLight, bevelShadow, bevelShadow,
17302f86ba45SStephan Aßmus 		borders);
17312f86ba45SStephan Aßmus }
17322f86ba45SStephan Aßmus 
17332f86ba45SStephan Aßmus 
17342f86ba45SStephan Aßmus void
17352f86ba45SStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, BRect rect,
17362f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags)
17372f86ba45SStephan Aßmus {
17381b848ee7SIngo Weinhold 	DrawLabel(view, label, NULL, rect, updateRect, base, flags,
17392f86ba45SStephan Aßmus 		DefaultLabelAlignment());
17402f86ba45SStephan Aßmus }
17412f86ba45SStephan Aßmus 
17422f86ba45SStephan Aßmus 
17432f86ba45SStephan Aßmus void
17442f86ba45SStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, BRect rect,
17452f86ba45SStephan Aßmus 	const BRect& updateRect, const rgb_color& base, uint32 flags,
17462f86ba45SStephan Aßmus 	const BAlignment& alignment)
17472f86ba45SStephan Aßmus {
17481b848ee7SIngo Weinhold 	DrawLabel(view, label, NULL, rect, updateRect, base, flags, alignment);
1749c4e211feSStephan Aßmus }
1750c4e211feSStephan Aßmus 
1751c4e211feSStephan Aßmus 
1752c4e211feSStephan Aßmus void
1753c4e211feSStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, const rgb_color& base,
1754c4e211feSStephan Aßmus 	uint32 flags, const BPoint& where)
1755c4e211feSStephan Aßmus {
1756c4e211feSStephan Aßmus 	// setup the text color
1757c4e211feSStephan Aßmus 	// TODO: Should either use the ui_color(B_CONTROL_TEXT_COLOR) here,
1758c4e211feSStephan Aßmus 	// or elliminate that constant alltogether (stippi: +1).
1759d63b75faSPhilippe Saint-Pierre 
1760d63b75faSPhilippe Saint-Pierre 	BWindow* window = view->Window();
1761d63b75faSPhilippe Saint-Pierre 	bool isDesktop = window
1762d63b75faSPhilippe Saint-Pierre 		&& window->Feel() == kPrivateDesktopWindowFeel
1763d63b75faSPhilippe Saint-Pierre 		&& window->Look() == kPrivateDesktopWindowLook
1764d63b75faSPhilippe Saint-Pierre 		&& view->Parent()
1765d63b75faSPhilippe Saint-Pierre 		&& view->Parent()->Parent() == NULL
1766d63b75faSPhilippe Saint-Pierre 		&& (flags & B_IGNORE_OUTLINE) == 0;
1767d63b75faSPhilippe Saint-Pierre 
1768d63b75faSPhilippe Saint-Pierre 	rgb_color	low;
1769c4e211feSStephan Aßmus 	rgb_color	color;
1770d63b75faSPhilippe Saint-Pierre 	rgb_color	glowColor;
1771d63b75faSPhilippe Saint-Pierre 
1772d63b75faSPhilippe Saint-Pierre 	if (isDesktop)
1773d63b75faSPhilippe Saint-Pierre 		low = view->Parent()->ViewColor();
1774c4e211feSStephan Aßmus 	else
1775d63b75faSPhilippe Saint-Pierre 		low = base;
1776d63b75faSPhilippe Saint-Pierre 
1777d63b75faSPhilippe Saint-Pierre 	if (low.red + low.green + low.blue > 128 * 3) {
1778d63b75faSPhilippe Saint-Pierre 		color = tint_color(low, B_DARKEN_MAX_TINT);
1779d63b75faSPhilippe Saint-Pierre 		glowColor = kWhite;
1780d63b75faSPhilippe Saint-Pierre 	} else {
1781d63b75faSPhilippe Saint-Pierre 		color = tint_color(low, B_LIGHTEN_MAX_TINT);
1782d63b75faSPhilippe Saint-Pierre 		glowColor = kBlack;
1783d63b75faSPhilippe Saint-Pierre 	}
1784c4e211feSStephan Aßmus 
1785a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
1786d63b75faSPhilippe Saint-Pierre 		color.red = (uint8)(((int32)low.red + color.red + 1) / 2);
1787d63b75faSPhilippe Saint-Pierre 		color.green = (uint8)(((int32)low.green + color.green + 1) / 2);
1788d63b75faSPhilippe Saint-Pierre 		color.blue = (uint8)(((int32)low.blue + color.blue + 1) / 2);
1789d63b75faSPhilippe Saint-Pierre 	}
1790d63b75faSPhilippe Saint-Pierre 
1791d63b75faSPhilippe Saint-Pierre 	drawing_mode oldMode = view->DrawingMode();
1792d63b75faSPhilippe Saint-Pierre 
1793d63b75faSPhilippe Saint-Pierre 	if (isDesktop) {
1794a884b43bSJohn Scipione 		// drawing occurs on the desktop
1795d63b75faSPhilippe Saint-Pierre 		if (fCachedWorkspace != current_workspace()) {
1796d63b75faSPhilippe Saint-Pierre 			int8 indice = 0;
1797d63b75faSPhilippe Saint-Pierre 			int32 mask;
1798d63b75faSPhilippe Saint-Pierre 			bool tmpOutline;
1799d63b75faSPhilippe Saint-Pierre 			while (fBackgroundInfo.FindInt32("be:bgndimginfoworkspaces",
1800d63b75faSPhilippe Saint-Pierre 					indice, &mask) == B_OK
1801d63b75faSPhilippe Saint-Pierre 				&& fBackgroundInfo.FindBool("be:bgndimginfoerasetext",
1802d63b75faSPhilippe Saint-Pierre 					indice, &tmpOutline) == B_OK) {
1803d63b75faSPhilippe Saint-Pierre 
1804d63b75faSPhilippe Saint-Pierre 				if (((1 << current_workspace()) & mask) != 0) {
1805d63b75faSPhilippe Saint-Pierre 					fCachedOutline = tmpOutline;
1806d63b75faSPhilippe Saint-Pierre 					fCachedWorkspace = current_workspace();
1807d63b75faSPhilippe Saint-Pierre 					break;
1808d63b75faSPhilippe Saint-Pierre 				}
1809d63b75faSPhilippe Saint-Pierre 				indice++;
1810d63b75faSPhilippe Saint-Pierre 			}
1811d63b75faSPhilippe Saint-Pierre 		}
1812d63b75faSPhilippe Saint-Pierre 
1813d63b75faSPhilippe Saint-Pierre 		if (fCachedOutline) {
1814d63b75faSPhilippe Saint-Pierre 			BFont font;
1815d63b75faSPhilippe Saint-Pierre 			view->GetFont(&font);
1816d63b75faSPhilippe Saint-Pierre 
1817d63b75faSPhilippe Saint-Pierre 			view->SetDrawingMode(B_OP_ALPHA);
1818d63b75faSPhilippe Saint-Pierre 			view->SetBlendingMode(B_CONSTANT_ALPHA, B_ALPHA_OVERLAY);
1819d63b75faSPhilippe Saint-Pierre 			// Draw glow or outline
1820d63b75faSPhilippe Saint-Pierre 			if (glowColor == kWhite) {
1821d63b75faSPhilippe Saint-Pierre 				font.SetFalseBoldWidth(2.0);
1822d63b75faSPhilippe Saint-Pierre 				view->SetFont(&font, B_FONT_FALSE_BOLD_WIDTH);
1823d63b75faSPhilippe Saint-Pierre 
1824d63b75faSPhilippe Saint-Pierre 				glowColor.alpha = 30;
1825d63b75faSPhilippe Saint-Pierre 				view->SetHighColor(glowColor);
1826d63b75faSPhilippe Saint-Pierre 				view->DrawString(label, where);
1827d63b75faSPhilippe Saint-Pierre 
1828d63b75faSPhilippe Saint-Pierre 				font.SetFalseBoldWidth(1.0);
1829d63b75faSPhilippe Saint-Pierre 				view->SetFont(&font, B_FONT_FALSE_BOLD_WIDTH);
1830d63b75faSPhilippe Saint-Pierre 
1831d63b75faSPhilippe Saint-Pierre 				glowColor.alpha = 65;
1832d63b75faSPhilippe Saint-Pierre 				view->SetHighColor(glowColor);
1833d63b75faSPhilippe Saint-Pierre 				view->DrawString(label, where);
1834d63b75faSPhilippe Saint-Pierre 
1835d63b75faSPhilippe Saint-Pierre 				font.SetFalseBoldWidth(0.0);
1836d63b75faSPhilippe Saint-Pierre 				view->SetFont(&font, B_FONT_FALSE_BOLD_WIDTH);
1837d63b75faSPhilippe Saint-Pierre 			} else if (glowColor == kBlack) {
1838d63b75faSPhilippe Saint-Pierre 				font.SetFalseBoldWidth(1.0);
1839d63b75faSPhilippe Saint-Pierre 				view->SetFont(&font, B_FONT_FALSE_BOLD_WIDTH);
1840d63b75faSPhilippe Saint-Pierre 
1841d63b75faSPhilippe Saint-Pierre 				glowColor.alpha = 30;
1842d63b75faSPhilippe Saint-Pierre 				view->SetHighColor(glowColor);
1843d63b75faSPhilippe Saint-Pierre 				view->DrawString(label, where);
1844d63b75faSPhilippe Saint-Pierre 
1845d63b75faSPhilippe Saint-Pierre 				font.SetFalseBoldWidth(0.0);
1846d63b75faSPhilippe Saint-Pierre 				view->SetFont(&font, B_FONT_FALSE_BOLD_WIDTH);
1847d63b75faSPhilippe Saint-Pierre 
1848d63b75faSPhilippe Saint-Pierre 				glowColor.alpha = 200;
1849d63b75faSPhilippe Saint-Pierre 				view->SetHighColor(glowColor);
1850d63b75faSPhilippe Saint-Pierre 				view->DrawString(label, BPoint(where.x + 1, where.y + 1));
1851d63b75faSPhilippe Saint-Pierre 			}
1852d63b75faSPhilippe Saint-Pierre 		}
1853c4e211feSStephan Aßmus 	}
1854c4e211feSStephan Aßmus 
1855c4e211feSStephan Aßmus 	view->SetHighColor(color);
1856c4e211feSStephan Aßmus 	view->SetDrawingMode(B_OP_OVER);
1857c4e211feSStephan Aßmus 	view->DrawString(label, where);
1858c4e211feSStephan Aßmus 	view->SetDrawingMode(oldMode);
18592f86ba45SStephan Aßmus }
18602f86ba45SStephan Aßmus 
18612f86ba45SStephan Aßmus 
1862d63b75faSPhilippe Saint-Pierre void
18631b848ee7SIngo Weinhold BControlLook::DrawLabel(BView* view, const char* label, const BBitmap* icon,
18641b848ee7SIngo Weinhold 	BRect rect, const BRect& updateRect, const rgb_color& base, uint32 flags)
18651b848ee7SIngo Weinhold {
18661b848ee7SIngo Weinhold 	DrawLabel(view, label, icon, rect, updateRect, base, flags,
18671b848ee7SIngo Weinhold 		DefaultLabelAlignment());
18681b848ee7SIngo Weinhold }
18691b848ee7SIngo Weinhold 
18701b848ee7SIngo Weinhold 
18711b848ee7SIngo Weinhold void
18721b848ee7SIngo Weinhold BControlLook::DrawLabel(BView* view, const char* label, const BBitmap* icon,
18731b848ee7SIngo Weinhold 	BRect rect, const BRect& updateRect, const rgb_color& base, uint32 flags,
18741b848ee7SIngo Weinhold 	const BAlignment& alignment)
18751b848ee7SIngo Weinhold {
18761b848ee7SIngo Weinhold 	if (!rect.Intersects(updateRect))
18771b848ee7SIngo Weinhold 		return;
18781b848ee7SIngo Weinhold 
18791b848ee7SIngo Weinhold 	if (label == NULL && icon == NULL)
18801b848ee7SIngo Weinhold 		return;
18811b848ee7SIngo Weinhold 
18821b848ee7SIngo Weinhold 	if (label == NULL) {
18831b848ee7SIngo Weinhold 		// icon only
18841b848ee7SIngo Weinhold 		BRect alignedRect = BLayoutUtils::AlignInFrame(rect,
18851b848ee7SIngo Weinhold 			icon->Bounds().Size(), alignment);
18861b848ee7SIngo Weinhold 		drawing_mode oldMode = view->DrawingMode();
18871b848ee7SIngo Weinhold 		view->SetDrawingMode(B_OP_OVER);
18881b848ee7SIngo Weinhold 		view->DrawBitmap(icon, alignedRect.LeftTop());
18891b848ee7SIngo Weinhold 		view->SetDrawingMode(oldMode);
18901b848ee7SIngo Weinhold 		return;
18911b848ee7SIngo Weinhold 	}
18921b848ee7SIngo Weinhold 
18931b848ee7SIngo Weinhold 	// label, possibly with icon
18946af520e2SIngo Weinhold 	float availableWidth = rect.Width() + 1;
18951b848ee7SIngo Weinhold 	float width = 0;
18961b848ee7SIngo Weinhold 	float textOffset = 0;
18971b848ee7SIngo Weinhold 	float height = 0;
18981b848ee7SIngo Weinhold 
18991b848ee7SIngo Weinhold 	if (icon != NULL) {
19001b848ee7SIngo Weinhold 		width = icon->Bounds().Width() + DefaultLabelSpacing() + 1;
19011b848ee7SIngo Weinhold 		height = icon->Bounds().Height() + 1;
19021b848ee7SIngo Weinhold 		textOffset = width;
19031b848ee7SIngo Weinhold 		availableWidth -= textOffset;
19041b848ee7SIngo Weinhold 	}
19051b848ee7SIngo Weinhold 
19061b848ee7SIngo Weinhold 	// truncate the label if necessary and get the width and height
19071b848ee7SIngo Weinhold 	BString truncatedLabel(label);
19081b848ee7SIngo Weinhold 
19091b848ee7SIngo Weinhold 	BFont font;
19101b848ee7SIngo Weinhold 	view->GetFont(&font);
19111b848ee7SIngo Weinhold 
19121b848ee7SIngo Weinhold 	font.TruncateString(&truncatedLabel, B_TRUNCATE_END, availableWidth);
19136af520e2SIngo Weinhold 	width += ceilf(font.StringWidth(truncatedLabel.String()));
19141b848ee7SIngo Weinhold 
19151b848ee7SIngo Weinhold 	font_height fontHeight;
19161b848ee7SIngo Weinhold 	font.GetHeight(&fontHeight);
1917*1c69e1c3SJohn Scipione 	float textHeight = ceilf(fontHeight.ascent + fontHeight.descent);
19181b848ee7SIngo Weinhold 	height = std::max(height, textHeight);
19191b848ee7SIngo Weinhold 
19201b848ee7SIngo Weinhold 	// handle alignment
1921*1c69e1c3SJohn Scipione 	BPoint location;
19221b848ee7SIngo Weinhold 
19231b848ee7SIngo Weinhold 	if (icon != NULL) {
1924*1c69e1c3SJohn Scipione 		// draw the icon
1925*1c69e1c3SJohn Scipione 		BRect alignedRect = BLayoutUtils::AlignInFrame(rect,
1926*1c69e1c3SJohn Scipione 			BSize(width - 1, height - 1), alignment);
1927*1c69e1c3SJohn Scipione 		location = alignedRect.LeftTop();
19281b848ee7SIngo Weinhold 		if (icon->Bounds().Height() + 1 < height)
19291b848ee7SIngo Weinhold 			location.y += ceilf((height - icon->Bounds().Height() - 1) / 2);
19301b848ee7SIngo Weinhold 
19311b848ee7SIngo Weinhold 		drawing_mode oldMode = view->DrawingMode();
19321b848ee7SIngo Weinhold 		view->SetDrawingMode(B_OP_OVER);
19331b848ee7SIngo Weinhold 		view->DrawBitmap(icon, location);
19341b848ee7SIngo Weinhold 		view->SetDrawingMode(oldMode);
19351b848ee7SIngo Weinhold 
1936*1c69e1c3SJohn Scipione 		// set the location to draw the label
1937*1c69e1c3SJohn Scipione 		location = BPoint(alignedRect.left + textOffset,
19381b848ee7SIngo Weinhold 			alignedRect.top + ceilf(fontHeight.ascent));
19391b848ee7SIngo Weinhold 		if (textHeight < height)
19401b848ee7SIngo Weinhold 			location.y += ceilf((height - textHeight) / 2);
1941*1c69e1c3SJohn Scipione 	} else {
1942*1c69e1c3SJohn Scipione 		switch (alignment.horizontal) {
1943*1c69e1c3SJohn Scipione 			case B_ALIGN_LEFT:
1944*1c69e1c3SJohn Scipione 			default:
1945*1c69e1c3SJohn Scipione 				location.x = rect.left;
1946*1c69e1c3SJohn Scipione 				break;
1947*1c69e1c3SJohn Scipione 
1948*1c69e1c3SJohn Scipione 			case B_ALIGN_RIGHT:
1949*1c69e1c3SJohn Scipione 				location.x = rect.right - width;
1950*1c69e1c3SJohn Scipione 				break;
1951*1c69e1c3SJohn Scipione 
1952*1c69e1c3SJohn Scipione 			case B_ALIGN_CENTER:
1953*1c69e1c3SJohn Scipione 				location.x = (rect.left + rect.right - width) / 2.0f;
1954*1c69e1c3SJohn Scipione 				break;
1955*1c69e1c3SJohn Scipione 		}
1956*1c69e1c3SJohn Scipione 
1957*1c69e1c3SJohn Scipione 		switch (alignment.vertical) {
1958*1c69e1c3SJohn Scipione 			case B_ALIGN_TOP:
1959*1c69e1c3SJohn Scipione 				location.y = rect.top + ceilf(fontHeight.ascent);
1960*1c69e1c3SJohn Scipione 				break;
1961*1c69e1c3SJohn Scipione 
1962*1c69e1c3SJohn Scipione 			case B_ALIGN_MIDDLE:
1963*1c69e1c3SJohn Scipione 			default:
1964*1c69e1c3SJohn Scipione 				location.y = floorf((rect.top + rect.bottom - height)
1965*1c69e1c3SJohn Scipione 					/ 2.0f + 0.5f) + ceilf(fontHeight.ascent);
1966*1c69e1c3SJohn Scipione 				break;
1967*1c69e1c3SJohn Scipione 
1968*1c69e1c3SJohn Scipione 			case B_ALIGN_BOTTOM:
1969*1c69e1c3SJohn Scipione 				location.y = rect.bottom - ceilf(fontHeight.descent);
1970*1c69e1c3SJohn Scipione 				break;
1971*1c69e1c3SJohn Scipione 		}
1972*1c69e1c3SJohn Scipione 	}
1973*1c69e1c3SJohn Scipione 
19741b848ee7SIngo Weinhold 	DrawLabel(view, truncatedLabel.String(), base, flags, location);
19751b848ee7SIngo Weinhold }
19761b848ee7SIngo Weinhold 
19771b848ee7SIngo Weinhold 
19781b848ee7SIngo Weinhold void
19798719e0dcSIngo Weinhold BControlLook::GetFrameInsets(frame_type frameType, uint32 flags, float& _left,
19808719e0dcSIngo Weinhold 	float& _top, float& _right, float& _bottom)
19818719e0dcSIngo Weinhold {
19828719e0dcSIngo Weinhold 	// All frames have the same inset on each side.
19838719e0dcSIngo Weinhold 	float inset = 0;
19848719e0dcSIngo Weinhold 
19858719e0dcSIngo Weinhold 	switch (frameType) {
19868719e0dcSIngo Weinhold 		case B_BUTTON_FRAME:
198787f392c9SIngo Weinhold 			inset = (flags & B_DEFAULT_BUTTON) != 0 ? 5 : 2;
19888719e0dcSIngo Weinhold 			break;
19898719e0dcSIngo Weinhold 		case B_GROUP_FRAME:
19908719e0dcSIngo Weinhold 		case B_MENU_FIELD_FRAME:
19918719e0dcSIngo Weinhold 			inset = 3;
19928719e0dcSIngo Weinhold 			break;
19938719e0dcSIngo Weinhold 		case B_SCROLL_VIEW_FRAME:
19948719e0dcSIngo Weinhold 		case B_TEXT_CONTROL_FRAME:
19958719e0dcSIngo Weinhold 			inset = 2;
19968719e0dcSIngo Weinhold 			break;
19978719e0dcSIngo Weinhold 	}
19988719e0dcSIngo Weinhold 
19998719e0dcSIngo Weinhold 	_left = inset;
20008719e0dcSIngo Weinhold 	_top = inset;
20018719e0dcSIngo Weinhold 	_right = inset;
20028719e0dcSIngo Weinhold 	_bottom = inset;
20038719e0dcSIngo Weinhold }
20048719e0dcSIngo Weinhold 
20058719e0dcSIngo Weinhold 
20068719e0dcSIngo Weinhold void
20078719e0dcSIngo Weinhold BControlLook::GetBackgroundInsets(background_type backgroundType,
20088719e0dcSIngo Weinhold 	uint32 flags, float& _left, float& _top, float& _right, float& _bottom)
20098719e0dcSIngo Weinhold {
20108719e0dcSIngo Weinhold 	// Most backgrounds have the same inset on each side.
20118719e0dcSIngo Weinhold 	float inset = 0;
20128719e0dcSIngo Weinhold 
20138719e0dcSIngo Weinhold 	switch (backgroundType) {
20148719e0dcSIngo Weinhold 		case B_BUTTON_BACKGROUND:
20158719e0dcSIngo Weinhold 		case B_MENU_BACKGROUND:
20168719e0dcSIngo Weinhold 		case B_MENU_BAR_BACKGROUND:
20178719e0dcSIngo Weinhold 		case B_MENU_FIELD_BACKGROUND:
20188719e0dcSIngo Weinhold 		case B_MENU_ITEM_BACKGROUND:
20198719e0dcSIngo Weinhold 			inset = 1;
20208719e0dcSIngo Weinhold 			break;
2021a0848a19SIngo Weinhold 		case B_BUTTON_WITH_POP_UP_BACKGROUND:
2022a0848a19SIngo Weinhold 			_left = 1;
2023a0848a19SIngo Weinhold 			_top = 1;
2024a0848a19SIngo Weinhold 			_right = 1 + kButtonPopUpIndicatorWidth;
2025a0848a19SIngo Weinhold 			_bottom = 1;
2026a0848a19SIngo Weinhold 			return;
20278719e0dcSIngo Weinhold 		case B_HORIZONTAL_SCROLL_BAR_BACKGROUND:
20288719e0dcSIngo Weinhold 			_left = 2;
20298719e0dcSIngo Weinhold 			_top = 0;
20308719e0dcSIngo Weinhold 			_right = 1;
20318719e0dcSIngo Weinhold 			_bottom = 0;
20328719e0dcSIngo Weinhold 			return;
20338719e0dcSIngo Weinhold 		case B_VERTICAL_SCROLL_BAR_BACKGROUND:
20348719e0dcSIngo Weinhold 			_left = 0;
20358719e0dcSIngo Weinhold 			_top = 2;
20368719e0dcSIngo Weinhold 			_right = 0;
20378719e0dcSIngo Weinhold 			_bottom = 1;
20388719e0dcSIngo Weinhold 			return;
20398719e0dcSIngo Weinhold 	}
20408719e0dcSIngo Weinhold 
20418719e0dcSIngo Weinhold 	_left = inset;
20428719e0dcSIngo Weinhold 	_top = inset;
20438719e0dcSIngo Weinhold 	_right = inset;
20448719e0dcSIngo Weinhold 	_bottom = inset;
20458719e0dcSIngo Weinhold }
20468719e0dcSIngo Weinhold 
20478719e0dcSIngo Weinhold 
20488719e0dcSIngo Weinhold void
20498719e0dcSIngo Weinhold BControlLook::GetInsets(frame_type frameType, background_type backgroundType,
20508719e0dcSIngo Weinhold 	uint32 flags, float& _left, float& _top, float& _right, float& _bottom)
20518719e0dcSIngo Weinhold {
20528719e0dcSIngo Weinhold 	GetFrameInsets(frameType, flags, _left, _top, _right, _bottom);
20538719e0dcSIngo Weinhold 
20548719e0dcSIngo Weinhold 	float left, top, right, bottom;
20558719e0dcSIngo Weinhold 	GetBackgroundInsets(backgroundType, flags, left, top, right, bottom);
20568719e0dcSIngo Weinhold 
20578719e0dcSIngo Weinhold 	_left += left;
20588719e0dcSIngo Weinhold 	_top += top;
20598719e0dcSIngo Weinhold 	_right += right;
20608719e0dcSIngo Weinhold 	_bottom += bottom;
20618719e0dcSIngo Weinhold }
20628719e0dcSIngo Weinhold 
20638719e0dcSIngo Weinhold 
20648719e0dcSIngo Weinhold void
2065a0848a19SIngo Weinhold BControlLook::DrawButtonWithPopUpBackground(BView* view, BRect& rect,
2066a0848a19SIngo Weinhold 	const BRect& updateRect, const rgb_color& base, uint32 flags,
2067a0848a19SIngo Weinhold 	uint32 borders, orientation orientation)
2068a0848a19SIngo Weinhold {
2069a0848a19SIngo Weinhold 	_DrawButtonBackground(view, rect, updateRect, 0.0f, 0.0f, 0.0f, 0.0f,
2070a0848a19SIngo Weinhold 		base, true, flags, borders, orientation);
2071a0848a19SIngo Weinhold }
2072a0848a19SIngo Weinhold 
2073a0848a19SIngo Weinhold 
2074a0848a19SIngo Weinhold void
2075a0848a19SIngo Weinhold BControlLook::DrawButtonWithPopUpBackground(BView* view, BRect& rect,
2076a0848a19SIngo Weinhold 	const BRect& updateRect, float radius, const rgb_color& base, uint32 flags,
2077a0848a19SIngo Weinhold 	uint32 borders, orientation orientation)
2078a0848a19SIngo Weinhold {
2079a0848a19SIngo Weinhold 	_DrawButtonBackground(view, rect, updateRect, radius, radius, radius,
2080a0848a19SIngo Weinhold 		radius, base, true, flags, borders, orientation);
2081a0848a19SIngo Weinhold }
2082a0848a19SIngo Weinhold 
2083a0848a19SIngo Weinhold 
2084a0848a19SIngo Weinhold void
2085a0848a19SIngo Weinhold BControlLook::DrawButtonWithPopUpBackground(BView* view, BRect& rect,
2086a0848a19SIngo Weinhold 	const BRect& updateRect, float leftTopRadius, float rightTopRadius,
2087a0848a19SIngo Weinhold 	float leftBottomRadius, float rightBottomRadius, const rgb_color& base,
2088a0848a19SIngo Weinhold 	uint32 flags, uint32 borders, orientation orientation)
2089a0848a19SIngo Weinhold {
2090a0848a19SIngo Weinhold 	_DrawButtonBackground(view, rect, updateRect, leftTopRadius,
2091a0848a19SIngo Weinhold 		rightTopRadius, leftBottomRadius, rightBottomRadius, base, true, flags,
2092a0848a19SIngo Weinhold 		borders, orientation);
2093a0848a19SIngo Weinhold }
2094a0848a19SIngo Weinhold 
2095a0848a19SIngo Weinhold 
2096a0848a19SIngo Weinhold void
2097d452ff66SAxel Dörfler BControlLook::SetBackgroundInfo(const BMessage& backgroundInfo)
2098d63b75faSPhilippe Saint-Pierre {
2099d452ff66SAxel Dörfler 	fBackgroundInfo = backgroundInfo;
2100d63b75faSPhilippe Saint-Pierre 	fCachedWorkspace = -1;
2101d63b75faSPhilippe Saint-Pierre }
2102d63b75faSPhilippe Saint-Pierre 
2103d63b75faSPhilippe Saint-Pierre 
21042f86ba45SStephan Aßmus // #pragma mark -
21052f86ba45SStephan Aßmus 
21062f86ba45SStephan Aßmus 
21072f86ba45SStephan Aßmus void
210813cd46dfSStephan Aßmus BControlLook::_DrawButtonFrame(BView* view, BRect& rect,
2109a884b43bSJohn Scipione 	const BRect& updateRect, float leftTopRadius, float rightTopRadius,
2110a884b43bSJohn Scipione 	float leftBottomRadius, float rightBottomRadius, const rgb_color& base,
2111a884b43bSJohn Scipione 	const rgb_color& background, float contrast, float brightness,
2112a884b43bSJohn Scipione 	uint32 flags, uint32 borders)
211313cd46dfSStephan Aßmus {
2114a884b43bSJohn Scipione 	if (!rect.IsValid() || !rect.Intersects(updateRect))
2115a884b43bSJohn Scipione 		return;
211613cd46dfSStephan Aßmus 
21174fa76719SJohn Scipione 	// save the clipping constraints of the view
21184fa76719SJohn Scipione 	view->PushState();
211913cd46dfSStephan Aßmus 
21205666b4f7SJohn Scipione 	// set clipping constraints to updateRect
21214fa76719SJohn Scipione 	BRegion clipping(updateRect);
2122a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
2123a884b43bSJohn Scipione 
2124a249edfbSIngo Weinhold 	// If the button is flat and neither activated nor otherwise highlighted
2125a249edfbSIngo Weinhold 	// (mouse hovering or focussed), draw it flat.
2126a249edfbSIngo Weinhold 	if ((flags & B_FLAT) != 0
2127a249edfbSIngo Weinhold 		&& (flags & (B_ACTIVATED | B_PARTIALLY_ACTIVATED)) == 0
2128a249edfbSIngo Weinhold 		&& ((flags & (B_HOVER | B_FOCUSED)) == 0
2129a249edfbSIngo Weinhold 			|| (flags & B_DISABLED) != 0)) {
2130a249edfbSIngo Weinhold 		_DrawFrame(view, rect, background, background, background,
2131a249edfbSIngo Weinhold 			background, borders);
2132a249edfbSIngo Weinhold 		_DrawFrame(view, rect, background, background, background,
2133a249edfbSIngo Weinhold 			background, borders);
2134a249edfbSIngo Weinhold 		view->PopState();
2135a249edfbSIngo Weinhold 		return;
2136a249edfbSIngo Weinhold 	}
2137a249edfbSIngo Weinhold 
2138a884b43bSJohn Scipione 	// outer edge colors
2139a884b43bSJohn Scipione 	rgb_color edgeLightColor;
2140a884b43bSJohn Scipione 	rgb_color edgeShadowColor;
2141a884b43bSJohn Scipione 
2142a884b43bSJohn Scipione 	// default button frame color
21434f579098SStephan Aßmus 	// TODO: B_BLEND_FRAME
2144a884b43bSJohn Scipione 	float defaultIndicatorTint = 1.2;
2145a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0)
2146a884b43bSJohn Scipione 		defaultIndicatorTint = (B_NO_TINT + defaultIndicatorTint) / 2;
214713cd46dfSStephan Aßmus 
2148a884b43bSJohn Scipione 	rgb_color defaultIndicatorColor = tint_color(base, defaultIndicatorTint);
214988969219SJohn Scipione 	rgb_color cornerBgColor;
215088969219SJohn Scipione 
215188969219SJohn Scipione 	drawing_mode oldMode = view->DrawingMode();
215213cd46dfSStephan Aßmus 
2153a884b43bSJohn Scipione 	if ((flags & B_DEFAULT_BUTTON) != 0) {
215488969219SJohn Scipione 		cornerBgColor = defaultIndicatorColor;
2155a884b43bSJohn Scipione 		edgeLightColor = _EdgeLightColor(defaultIndicatorColor,
2156a884b43bSJohn Scipione 			contrast * ((flags & B_DISABLED) != 0 ? 0.3 : 0.8),
2157a884b43bSJohn Scipione 			brightness * ((flags & B_DISABLED) != 0 ? 1.0 : 0.9), flags);
2158a884b43bSJohn Scipione 		edgeShadowColor = _EdgeShadowColor(defaultIndicatorColor,
2159a884b43bSJohn Scipione 			contrast * ((flags & B_DISABLED) != 0 ? 0.3 : 0.8),
2160a884b43bSJohn Scipione 			brightness * ((flags & B_DISABLED) != 0 ? 1.0 : 0.9), flags);
216113cd46dfSStephan Aßmus 
216288969219SJohn Scipione 		// draw default button indicator
2163a884b43bSJohn Scipione 		view->SetHighColor(background);
2164a884b43bSJohn Scipione 		view->FillRect(rect);
216513cd46dfSStephan Aßmus 		view->SetHighColor(base);
2166a884b43bSJohn Scipione 		view->StrokeRoundRect(rect, leftTopRadius, leftTopRadius);
2167a884b43bSJohn Scipione 		rect.InsetBy(1, 1);
216813cd46dfSStephan Aßmus 
2169a884b43bSJohn Scipione 		view->SetHighColor(defaultIndicatorColor);
2170a884b43bSJohn Scipione 		view->StrokeRoundRect(rect, leftTopRadius, leftTopRadius);
2171a884b43bSJohn Scipione 		rect.InsetBy(1, 1);
217213cd46dfSStephan Aßmus 
2173a884b43bSJohn Scipione 		view->StrokeRoundRect(rect, leftTopRadius, leftTopRadius);
2174a884b43bSJohn Scipione 		rect.InsetBy(1, 1);
217513cd46dfSStephan Aßmus 	} else {
217688969219SJohn Scipione 		cornerBgColor = background;
217741651bb3SJohn Scipione 		if ((flags & B_BLEND_FRAME) != 0) {
217841651bb3SJohn Scipione 			// set the background color to transparent for the case
217941651bb3SJohn Scipione 			// that we are on the desktop
218041651bb3SJohn Scipione 			cornerBgColor.alpha = 0;
218141651bb3SJohn Scipione 			view->SetDrawingMode(B_OP_ALPHA);
218241651bb3SJohn Scipione 		}
218388969219SJohn Scipione 
2184a884b43bSJohn Scipione 		edgeLightColor = _EdgeLightColor(background,
2185a884b43bSJohn Scipione 			contrast * ((flags & B_DISABLED) != 0 ? 0.0 : 1.0),
2186a884b43bSJohn Scipione 			brightness * 1.0, flags);
2187a884b43bSJohn Scipione 		edgeShadowColor = _EdgeShadowColor(background,
2188a884b43bSJohn Scipione 			contrast * (flags & B_DISABLED) != 0 ? 0.0 : 1.0,
2189a884b43bSJohn Scipione 			brightness * 1.0, flags);
219013cd46dfSStephan Aßmus 	}
219113cd46dfSStephan Aßmus 
2192a884b43bSJohn Scipione 	// frame colors
2193a884b43bSJohn Scipione 	rgb_color frameLightColor  = _FrameLightColor(base, flags);
2194a884b43bSJohn Scipione 	rgb_color frameShadowColor = _FrameShadowColor(base, flags);
2195a884b43bSJohn Scipione 
2196a884b43bSJohn Scipione 	// rounded corners
2197a884b43bSJohn Scipione 
2198a884b43bSJohn Scipione 	if ((borders & B_LEFT_BORDER) != 0 && (borders & B_TOP_BORDER) != 0
2199a884b43bSJohn Scipione 		&& leftTopRadius > 0) {
2200a884b43bSJohn Scipione 		// draw left top rounded corner
2201a884b43bSJohn Scipione 		BRect leftTopCorner(floorf(rect.left), floorf(rect.top),
2202a884b43bSJohn Scipione 			floorf(rect.left + leftTopRadius),
2203a884b43bSJohn Scipione 			floorf(rect.top + leftTopRadius));
2204a884b43bSJohn Scipione 		clipping.Exclude(leftTopCorner);
2205a884b43bSJohn Scipione 		_DrawRoundCornerFrameLeftTop(view, leftTopCorner, updateRect,
2206a884b43bSJohn Scipione 			cornerBgColor, edgeShadowColor, frameLightColor);
2207a884b43bSJohn Scipione 	}
2208a884b43bSJohn Scipione 
2209a884b43bSJohn Scipione 	if ((borders & B_TOP_BORDER) != 0 && (borders & B_RIGHT_BORDER) != 0
2210a884b43bSJohn Scipione 		&& rightTopRadius > 0) {
2211a884b43bSJohn Scipione 		// draw right top rounded corner
2212a884b43bSJohn Scipione 		BRect rightTopCorner(floorf(rect.right - rightTopRadius),
2213a884b43bSJohn Scipione 			floorf(rect.top), floorf(rect.right),
2214a884b43bSJohn Scipione 			floorf(rect.top + rightTopRadius));
2215a884b43bSJohn Scipione 		clipping.Exclude(rightTopCorner);
2216a884b43bSJohn Scipione 		_DrawRoundCornerFrameRightTop(view, rightTopCorner, updateRect,
2217a884b43bSJohn Scipione 			cornerBgColor, edgeShadowColor, edgeLightColor,
2218a884b43bSJohn Scipione 			frameLightColor, frameShadowColor);
2219a884b43bSJohn Scipione 	}
2220a884b43bSJohn Scipione 
2221a884b43bSJohn Scipione 	if ((borders & B_LEFT_BORDER) != 0 && (borders & B_BOTTOM_BORDER) != 0
2222a884b43bSJohn Scipione 		&& leftBottomRadius > 0) {
2223a884b43bSJohn Scipione 		// draw left bottom rounded corner
2224a884b43bSJohn Scipione 		BRect leftBottomCorner(floorf(rect.left),
2225a884b43bSJohn Scipione 			floorf(rect.bottom - leftBottomRadius),
2226a884b43bSJohn Scipione 			floorf(rect.left + leftBottomRadius), floorf(rect.bottom));
2227a884b43bSJohn Scipione 		clipping.Exclude(leftBottomCorner);
2228a884b43bSJohn Scipione 		_DrawRoundCornerFrameLeftBottom(view, leftBottomCorner, updateRect,
2229a884b43bSJohn Scipione 			cornerBgColor, edgeShadowColor, edgeLightColor,
2230a884b43bSJohn Scipione 			frameLightColor, frameShadowColor);
2231a884b43bSJohn Scipione 	}
2232a884b43bSJohn Scipione 
2233a884b43bSJohn Scipione 	if ((borders & B_RIGHT_BORDER) != 0 && (borders & B_BOTTOM_BORDER) != 0
2234a884b43bSJohn Scipione 		&& rightBottomRadius > 0) {
2235a884b43bSJohn Scipione 		// draw right bottom rounded corner
2236a884b43bSJohn Scipione 		BRect rightBottomCorner(floorf(rect.right - rightBottomRadius),
2237a884b43bSJohn Scipione 			floorf(rect.bottom - rightBottomRadius), floorf(rect.right),
2238a884b43bSJohn Scipione 			floorf(rect.bottom));
2239a884b43bSJohn Scipione 		clipping.Exclude(rightBottomCorner);
2240a884b43bSJohn Scipione 		_DrawRoundCornerFrameRightBottom(view, rightBottomCorner,
2241a884b43bSJohn Scipione 			updateRect, cornerBgColor, edgeLightColor, frameShadowColor);
2242a884b43bSJohn Scipione 	}
2243a884b43bSJohn Scipione 
2244a884b43bSJohn Scipione 	// clip out the corners
2245a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
2246a884b43bSJohn Scipione 
2247a884b43bSJohn Scipione 	// draw outer edge
2248a884b43bSJohn Scipione 	if ((flags & B_DEFAULT_BUTTON) != 0) {
2249a884b43bSJohn Scipione 		_DrawOuterResessedFrame(view, rect, defaultIndicatorColor,
2250a884b43bSJohn Scipione 			contrast * ((flags & B_DISABLED) != 0 ? 0.3 : 0.8),
2251a884b43bSJohn Scipione 			brightness * ((flags & B_DISABLED) != 0 ? 1.0 : 0.9),
2252a884b43bSJohn Scipione 			flags, borders);
2253a884b43bSJohn Scipione 	} else {
2254a884b43bSJohn Scipione 		_DrawOuterResessedFrame(view, rect, background,
2255a884b43bSJohn Scipione 			contrast * ((flags & B_DISABLED) != 0 ? 0.0 : 1.0),
2256a884b43bSJohn Scipione 			brightness * 1.0, flags, borders);
2257a884b43bSJohn Scipione 	}
2258a884b43bSJohn Scipione 
225988969219SJohn Scipione 	view->SetDrawingMode(oldMode);
226088969219SJohn Scipione 
2261a884b43bSJohn Scipione 	// draw frame
2262a884b43bSJohn Scipione 	if ((flags & B_BLEND_FRAME) != 0) {
22634f579098SStephan Aßmus 		drawing_mode oldDrawingMode = view->DrawingMode();
22644f579098SStephan Aßmus 		view->SetDrawingMode(B_OP_ALPHA);
22654f579098SStephan Aßmus 
2266a884b43bSJohn Scipione 		_DrawFrame(view, rect, frameLightColor, frameLightColor,
2267a884b43bSJohn Scipione 			frameShadowColor, frameShadowColor, borders);
22684f579098SStephan Aßmus 
22694f579098SStephan Aßmus 		view->SetDrawingMode(oldDrawingMode);
22704f579098SStephan Aßmus 	} else {
2271a884b43bSJohn Scipione 		_DrawFrame(view, rect, frameLightColor, frameLightColor,
2272a884b43bSJohn Scipione 			frameShadowColor, frameShadowColor, borders);
22734f579098SStephan Aßmus 	}
2274a884b43bSJohn Scipione 
22754fa76719SJohn Scipione 	// restore the clipping constraints of the view
22764fa76719SJohn Scipione 	view->PopState();
227713cd46dfSStephan Aßmus }
227813cd46dfSStephan Aßmus 
227913cd46dfSStephan Aßmus 
228013cd46dfSStephan Aßmus void
22812f86ba45SStephan Aßmus BControlLook::_DrawOuterResessedFrame(BView* view, BRect& rect,
22824f579098SStephan Aßmus 	const rgb_color& base, float contrast, float brightness, uint32 flags,
22834f579098SStephan Aßmus 	uint32 borders)
22842f86ba45SStephan Aßmus {
2285a884b43bSJohn Scipione 	rgb_color edgeLightColor = _EdgeLightColor(base, contrast,
2286a884b43bSJohn Scipione 		brightness, flags);
2287a884b43bSJohn Scipione 	rgb_color edgeShadowColor = _EdgeShadowColor(base, contrast,
2288a884b43bSJohn Scipione 		brightness, flags);
2289a884b43bSJohn Scipione 
2290a884b43bSJohn Scipione 	if ((flags & B_BLEND_FRAME) != 0) {
22914f579098SStephan Aßmus 		// assumes the background has already been painted
22924f579098SStephan Aßmus 		drawing_mode oldDrawingMode = view->DrawingMode();
22934f579098SStephan Aßmus 		view->SetDrawingMode(B_OP_ALPHA);
22944f579098SStephan Aßmus 
2295a884b43bSJohn Scipione 		_DrawFrame(view, rect, edgeShadowColor, edgeShadowColor,
2296a884b43bSJohn Scipione 			edgeLightColor, edgeLightColor, borders);
22974f579098SStephan Aßmus 
22984f579098SStephan Aßmus 		view->SetDrawingMode(oldDrawingMode);
22994f579098SStephan Aßmus 	} else {
2300a884b43bSJohn Scipione 		_DrawFrame(view, rect, edgeShadowColor, edgeShadowColor,
2301a884b43bSJohn Scipione 			edgeLightColor, edgeLightColor, borders);
23022f86ba45SStephan Aßmus 	}
23034f579098SStephan Aßmus }
23042f86ba45SStephan Aßmus 
23052f86ba45SStephan Aßmus 
23062f86ba45SStephan Aßmus void
23072f86ba45SStephan Aßmus BControlLook::_DrawFrame(BView* view, BRect& rect, const rgb_color& left,
23082f86ba45SStephan Aßmus 	const rgb_color& top, const rgb_color& right, const rgb_color& bottom,
23092f86ba45SStephan Aßmus 	uint32 borders)
23102f86ba45SStephan Aßmus {
23112f86ba45SStephan Aßmus 	view->BeginLineArray(4);
23122f86ba45SStephan Aßmus 
23132f86ba45SStephan Aßmus 	if (borders & B_LEFT_BORDER) {
23142f86ba45SStephan Aßmus 		view->AddLine(
23152f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
23162f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top), left);
23172f86ba45SStephan Aßmus 		rect.left++;
23182f86ba45SStephan Aßmus 	}
23192f86ba45SStephan Aßmus 	if (borders & B_TOP_BORDER) {
23202f86ba45SStephan Aßmus 		view->AddLine(
23212f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top),
23222f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top), top);
23232f86ba45SStephan Aßmus 		rect.top++;
23242f86ba45SStephan Aßmus 	}
23252f86ba45SStephan Aßmus 	if (borders & B_RIGHT_BORDER) {
23262f86ba45SStephan Aßmus 		view->AddLine(
23272f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top),
23282f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), right);
23292f86ba45SStephan Aßmus 		rect.right--;
23302f86ba45SStephan Aßmus 	}
23312f86ba45SStephan Aßmus 	if (borders & B_BOTTOM_BORDER) {
23322f86ba45SStephan Aßmus 		view->AddLine(
23332f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
23342f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), bottom);
23352f86ba45SStephan Aßmus 		rect.bottom--;
23362f86ba45SStephan Aßmus 	}
23372f86ba45SStephan Aßmus 
23382f86ba45SStephan Aßmus 	view->EndLineArray();
23392f86ba45SStephan Aßmus }
23402f86ba45SStephan Aßmus 
23412f86ba45SStephan Aßmus 
23422f86ba45SStephan Aßmus void
23432f86ba45SStephan Aßmus BControlLook::_DrawFrame(BView* view, BRect& rect, const rgb_color& left,
23442f86ba45SStephan Aßmus 	const rgb_color& top, const rgb_color& right, const rgb_color& bottom,
23452f86ba45SStephan Aßmus 	const rgb_color& rightTop, const rgb_color& leftBottom, uint32 borders)
23462f86ba45SStephan Aßmus {
23472f86ba45SStephan Aßmus 	view->BeginLineArray(6);
23482f86ba45SStephan Aßmus 
23492f86ba45SStephan Aßmus 	if (borders & B_TOP_BORDER) {
23502f86ba45SStephan Aßmus 		if (borders & B_RIGHT_BORDER) {
23512f86ba45SStephan Aßmus 			view->AddLine(
23522f86ba45SStephan Aßmus 				BPoint(rect.left, rect.top),
23532f86ba45SStephan Aßmus 				BPoint(rect.right - 1, rect.top), top);
23542f86ba45SStephan Aßmus 			view->AddLine(
23552f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top),
23562f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), rightTop);
23572f86ba45SStephan Aßmus 		} else {
23582f86ba45SStephan Aßmus 			view->AddLine(
23592f86ba45SStephan Aßmus 				BPoint(rect.left, rect.top),
23602f86ba45SStephan Aßmus 				BPoint(rect.right, rect.top), top);
23612f86ba45SStephan Aßmus 		}
23622f86ba45SStephan Aßmus 		rect.top++;
23632f86ba45SStephan Aßmus 	}
23642f86ba45SStephan Aßmus 
23652f86ba45SStephan Aßmus 	if (borders & B_LEFT_BORDER) {
23662f86ba45SStephan Aßmus 		view->AddLine(
23672f86ba45SStephan Aßmus 			BPoint(rect.left, rect.top),
23682f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom - 1), left);
23692f86ba45SStephan Aßmus 		view->AddLine(
23702f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
23712f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom), leftBottom);
23722f86ba45SStephan Aßmus 		rect.left++;
23732f86ba45SStephan Aßmus 	}
23742f86ba45SStephan Aßmus 
23752f86ba45SStephan Aßmus 	if (borders & B_BOTTOM_BORDER) {
23762f86ba45SStephan Aßmus 		view->AddLine(
23772f86ba45SStephan Aßmus 			BPoint(rect.left, rect.bottom),
23782f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom), bottom);
23792f86ba45SStephan Aßmus 		rect.bottom--;
23802f86ba45SStephan Aßmus 	}
23812f86ba45SStephan Aßmus 
23822f86ba45SStephan Aßmus 	if (borders & B_RIGHT_BORDER) {
23832f86ba45SStephan Aßmus 		view->AddLine(
23842f86ba45SStephan Aßmus 			BPoint(rect.right, rect.bottom),
23852f86ba45SStephan Aßmus 			BPoint(rect.right, rect.top), right);
23862f86ba45SStephan Aßmus 		rect.right--;
23872f86ba45SStephan Aßmus 	}
23882f86ba45SStephan Aßmus 
23892f86ba45SStephan Aßmus 	view->EndLineArray();
23902f86ba45SStephan Aßmus }
23912f86ba45SStephan Aßmus 
23922f86ba45SStephan Aßmus 
23932f86ba45SStephan Aßmus void
2394a884b43bSJohn Scipione BControlLook::_DrawButtonBackground(BView* view, BRect& rect,
2395a884b43bSJohn Scipione 	const BRect& updateRect, float leftTopRadius, float rightTopRadius,
2396a884b43bSJohn Scipione 	float leftBottomRadius, float rightBottomRadius, const rgb_color& base,
2397a0848a19SIngo Weinhold 	bool popupIndicator, uint32 flags, uint32 borders, orientation orientation)
23982f86ba45SStephan Aßmus {
2399a884b43bSJohn Scipione 	if (!rect.IsValid() || !rect.Intersects(updateRect))
2400a884b43bSJohn Scipione 		return;
24012f86ba45SStephan Aßmus 
24024fa76719SJohn Scipione 	// save the clipping constraints of the view
24034fa76719SJohn Scipione 	view->PushState();
24042f86ba45SStephan Aßmus 
24055666b4f7SJohn Scipione 	// set clipping constraints to updateRect
24064fa76719SJohn Scipione 	BRegion clipping(updateRect);
2407a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
24082f86ba45SStephan Aßmus 
2409a249edfbSIngo Weinhold 	// If the button is flat and neither activated nor otherwise highlighted
2410a249edfbSIngo Weinhold 	// (mouse hovering or focussed), draw it flat.
2411a249edfbSIngo Weinhold 	if ((flags & B_FLAT) != 0
2412a249edfbSIngo Weinhold 		&& (flags & (B_ACTIVATED | B_PARTIALLY_ACTIVATED)) == 0
2413a249edfbSIngo Weinhold 		&& ((flags & (B_HOVER | B_FOCUSED)) == 0
2414a249edfbSIngo Weinhold 			|| (flags & B_DISABLED) != 0)) {
2415a0848a19SIngo Weinhold 		_DrawFlatButtonBackground(view, rect, updateRect, base, popupIndicator,
2416a0848a19SIngo Weinhold 			flags, borders, orientation);
2417a0848a19SIngo Weinhold 	} else {
2418a0848a19SIngo Weinhold 		_DrawNonFlatButtonBackground(view, rect, updateRect, clipping,
2419a0848a19SIngo Weinhold 			leftTopRadius, rightTopRadius, leftBottomRadius, rightBottomRadius,
2420a0848a19SIngo Weinhold 			base, popupIndicator, flags, borders, orientation);
2421a249edfbSIngo Weinhold 	}
2422a249edfbSIngo Weinhold 
2423a0848a19SIngo Weinhold 	// restore the clipping constraints of the view
2424a0848a19SIngo Weinhold 	view->PopState();
2425a0848a19SIngo Weinhold }
2426a0848a19SIngo Weinhold 
2427a0848a19SIngo Weinhold 
2428a0848a19SIngo Weinhold void
2429a0848a19SIngo Weinhold BControlLook::_DrawFlatButtonBackground(BView* view, BRect& rect,
2430a0848a19SIngo Weinhold 	const BRect& updateRect, const rgb_color& base, bool popupIndicator,
2431a0848a19SIngo Weinhold 	uint32 flags, uint32 borders, orientation orientation)
2432a0848a19SIngo Weinhold {
2433a0848a19SIngo Weinhold 	_DrawFrame(view, rect, base, base, base, base, borders);
2434a0848a19SIngo Weinhold 		// Not an actual frame, but the method insets our rect as needed.
2435a0848a19SIngo Weinhold 
2436a0848a19SIngo Weinhold 	view->SetHighColor(base);
2437a0848a19SIngo Weinhold 	view->FillRect(rect);
2438a0848a19SIngo Weinhold 
2439a0848a19SIngo Weinhold 	if (popupIndicator) {
2440a0848a19SIngo Weinhold 		BRect indicatorRect(rect);
2441a0848a19SIngo Weinhold 		rect.right -= kButtonPopUpIndicatorWidth;
2442a0848a19SIngo Weinhold 		indicatorRect.left = rect.right + 3;
2443a0848a19SIngo Weinhold 			// 2 pixels for the separator
2444a0848a19SIngo Weinhold 
2445a0848a19SIngo Weinhold 		view->SetHighColor(base);
2446a0848a19SIngo Weinhold 		view->FillRect(indicatorRect);
2447a0848a19SIngo Weinhold 
2448a0848a19SIngo Weinhold 		_DrawPopUpMarker(view, indicatorRect, base, flags);
2449a0848a19SIngo Weinhold 	}
2450a0848a19SIngo Weinhold }
2451a0848a19SIngo Weinhold 
2452a0848a19SIngo Weinhold 
2453a0848a19SIngo Weinhold void
2454a0848a19SIngo Weinhold BControlLook::_DrawNonFlatButtonBackground(BView* view, BRect& rect,
2455a0848a19SIngo Weinhold 	const BRect& updateRect, BRegion& clipping, float leftTopRadius,
2456a0848a19SIngo Weinhold 	float rightTopRadius, float leftBottomRadius, float rightBottomRadius,
2457a0848a19SIngo Weinhold 	const rgb_color& base, bool popupIndicator, uint32 flags, uint32 borders,
2458a0848a19SIngo Weinhold 	orientation orientation)
2459a0848a19SIngo Weinhold {
2460a884b43bSJohn Scipione 	// inner bevel colors
2461a884b43bSJohn Scipione 	rgb_color bevelLightColor  = _BevelLightColor(base, flags);
2462a884b43bSJohn Scipione 	rgb_color bevelShadowColor = _BevelShadowColor(base, flags);
2463a884b43bSJohn Scipione 
2464a884b43bSJohn Scipione 	// button background color
2465a884b43bSJohn Scipione 	rgb_color buttonBgColor;
2466a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0)
2467a884b43bSJohn Scipione 		buttonBgColor = tint_color(base, 0.7);
24682f86ba45SStephan Aßmus 	else
2469a884b43bSJohn Scipione 		buttonBgColor = tint_color(base, B_LIGHTEN_1_TINT);
2470a884b43bSJohn Scipione 
2471a884b43bSJohn Scipione 	// surface top gradient
2472a884b43bSJohn Scipione 	BGradientLinear fillGradient;
2473a884b43bSJohn Scipione 	_MakeButtonGradient(fillGradient, rect, base, flags, orientation);
2474a884b43bSJohn Scipione 
2475a884b43bSJohn Scipione 	// rounded corners
2476a884b43bSJohn Scipione 
2477a884b43bSJohn Scipione 	if ((borders & B_LEFT_BORDER) != 0 && (borders & B_TOP_BORDER) != 0
2478a884b43bSJohn Scipione 		&& leftTopRadius > 0) {
2479a884b43bSJohn Scipione 		// draw left top rounded corner
2480a884b43bSJohn Scipione 		BRect leftTopCorner(floorf(rect.left), floorf(rect.top),
2481a884b43bSJohn Scipione 			floorf(rect.left + leftTopRadius - 2.0),
2482a884b43bSJohn Scipione 			floorf(rect.top + leftTopRadius - 2.0));
2483a884b43bSJohn Scipione 		clipping.Exclude(leftTopCorner);
2484a884b43bSJohn Scipione 		_DrawRoundCornerBackgroundLeftTop(view, leftTopCorner, updateRect,
2485a884b43bSJohn Scipione 			bevelLightColor, fillGradient);
2486a884b43bSJohn Scipione 	}
2487a884b43bSJohn Scipione 
2488a884b43bSJohn Scipione 	if ((borders & B_TOP_BORDER) != 0 && (borders & B_RIGHT_BORDER) != 0
2489a884b43bSJohn Scipione 		&& rightTopRadius > 0) {
2490a884b43bSJohn Scipione 		// draw right top rounded corner
2491a884b43bSJohn Scipione 		BRect rightTopCorner(floorf(rect.right - rightTopRadius + 2.0),
2492a884b43bSJohn Scipione 			floorf(rect.top), floorf(rect.right),
2493a884b43bSJohn Scipione 			floorf(rect.top + rightTopRadius - 2.0));
2494a884b43bSJohn Scipione 		clipping.Exclude(rightTopCorner);
2495a884b43bSJohn Scipione 		_DrawRoundCornerBackgroundRightTop(view, rightTopCorner,
2496a884b43bSJohn Scipione 			updateRect, bevelLightColor, bevelShadowColor, fillGradient);
2497a884b43bSJohn Scipione 	}
2498a884b43bSJohn Scipione 
2499a884b43bSJohn Scipione 	if ((borders & B_LEFT_BORDER) != 0 && (borders & B_BOTTOM_BORDER) != 0
2500a884b43bSJohn Scipione 		&& leftBottomRadius > 0) {
2501a884b43bSJohn Scipione 		// draw left bottom rounded corner
2502a884b43bSJohn Scipione 		BRect leftBottomCorner(floorf(rect.left),
2503a884b43bSJohn Scipione 			floorf(rect.bottom - leftBottomRadius + 2.0),
2504a884b43bSJohn Scipione 			floorf(rect.left + leftBottomRadius - 2.0),
2505a884b43bSJohn Scipione 			floorf(rect.bottom));
2506a884b43bSJohn Scipione 		clipping.Exclude(leftBottomCorner);
2507a884b43bSJohn Scipione 		_DrawRoundCornerBackgroundLeftBottom(view, leftBottomCorner,
2508a884b43bSJohn Scipione 			updateRect, bevelLightColor, bevelShadowColor, fillGradient);
2509a884b43bSJohn Scipione 	}
2510a884b43bSJohn Scipione 
2511a884b43bSJohn Scipione 	if ((borders & B_RIGHT_BORDER) != 0 && (borders & B_BOTTOM_BORDER) != 0
2512a884b43bSJohn Scipione 		&& rightBottomRadius > 0) {
2513a884b43bSJohn Scipione 		// draw right bottom rounded corner
2514a884b43bSJohn Scipione 		BRect rightBottomCorner(floorf(rect.right - rightBottomRadius + 2.0),
2515a884b43bSJohn Scipione 			floorf(rect.bottom - rightBottomRadius + 2.0), floorf(rect.right),
2516a884b43bSJohn Scipione 			floorf(rect.bottom));
2517a884b43bSJohn Scipione 		clipping.Exclude(rightBottomCorner);
2518a884b43bSJohn Scipione 		_DrawRoundCornerBackgroundRightBottom(view, rightBottomCorner,
2519a884b43bSJohn Scipione 			updateRect, bevelShadowColor, fillGradient);
2520a884b43bSJohn Scipione 	}
2521a884b43bSJohn Scipione 
2522a884b43bSJohn Scipione 	// clip out the corners
2523a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
2524a884b43bSJohn Scipione 
2525a884b43bSJohn Scipione 	// draw inner bevel
2526a884b43bSJohn Scipione 
2527a884b43bSJohn Scipione 	if ((flags & B_ACTIVATED) != 0) {
2528a884b43bSJohn Scipione 		view->BeginLineArray(4);
2529a884b43bSJohn Scipione 
2530a884b43bSJohn Scipione 		// shadow along left/top borders
2531a884b43bSJohn Scipione 		if (borders & B_LEFT_BORDER) {
2532a884b43bSJohn Scipione 			view->AddLine(BPoint(rect.left, rect.top),
2533a884b43bSJohn Scipione 				BPoint(rect.left, rect.bottom), bevelLightColor);
2534a884b43bSJohn Scipione 			rect.left++;
2535a884b43bSJohn Scipione 		}
2536a884b43bSJohn Scipione 		if (borders & B_TOP_BORDER) {
2537a884b43bSJohn Scipione 			view->AddLine(BPoint(rect.left, rect.top),
2538a884b43bSJohn Scipione 				BPoint(rect.right, rect.top), bevelLightColor);
2539a884b43bSJohn Scipione 			rect.top++;
2540a884b43bSJohn Scipione 		}
2541a884b43bSJohn Scipione 
2542a884b43bSJohn Scipione 		// softer shadow along left/top borders
2543a884b43bSJohn Scipione 		if (borders & B_LEFT_BORDER) {
2544a884b43bSJohn Scipione 			view->AddLine(BPoint(rect.left, rect.top),
2545a884b43bSJohn Scipione 				BPoint(rect.left, rect.bottom), bevelShadowColor);
2546a884b43bSJohn Scipione 			rect.left++;
2547a884b43bSJohn Scipione 		}
2548a884b43bSJohn Scipione 		if (borders & B_TOP_BORDER) {
2549a884b43bSJohn Scipione 			view->AddLine(BPoint(rect.left, rect.top),
2550a884b43bSJohn Scipione 				BPoint(rect.right, rect.top), bevelShadowColor);
2551a884b43bSJohn Scipione 			rect.top++;
2552a884b43bSJohn Scipione 		}
2553a884b43bSJohn Scipione 
2554a884b43bSJohn Scipione 		view->EndLineArray();
2555a884b43bSJohn Scipione 	} else {
2556a884b43bSJohn Scipione 		_DrawFrame(view, rect,
2557a884b43bSJohn Scipione 			bevelLightColor, bevelLightColor,
2558a884b43bSJohn Scipione 			bevelShadowColor, bevelShadowColor,
2559a884b43bSJohn Scipione 			buttonBgColor, buttonBgColor, borders);
2560a884b43bSJohn Scipione 	}
2561a884b43bSJohn Scipione 
2562a0848a19SIngo Weinhold 	if (popupIndicator) {
2563a0848a19SIngo Weinhold 		BRect indicatorRect(rect);
2564a0848a19SIngo Weinhold 		rect.right -= kButtonPopUpIndicatorWidth;
2565a0848a19SIngo Weinhold 		indicatorRect.left = rect.right + 3;
2566a0848a19SIngo Weinhold 			// 2 pixels for the separator
2567a0848a19SIngo Weinhold 
2568a0848a19SIngo Weinhold 		// Even when depressed we want the pop-up indicator background and
2569a0848a19SIngo Weinhold 		// separator to cover the area up to the top.
2570a0848a19SIngo Weinhold 		if ((flags & B_ACTIVATED) != 0)
2571a0848a19SIngo Weinhold 			indicatorRect.top--;
2572a0848a19SIngo Weinhold 
2573a0848a19SIngo Weinhold 		// draw the separator
2574a0848a19SIngo Weinhold 		rgb_color separatorBaseColor = base;
2575a0848a19SIngo Weinhold 		if ((flags & B_ACTIVATED) != 0)
2576a0848a19SIngo Weinhold 			separatorBaseColor = tint_color(base, B_DARKEN_1_TINT);
2577a0848a19SIngo Weinhold 
2578a0848a19SIngo Weinhold 		rgb_color separatorLightColor = _EdgeLightColor(separatorBaseColor,
2579a0848a19SIngo Weinhold 			(flags & B_DISABLED) != 0 ? 0.7 : 1.0, 1.0, flags);
2580a0848a19SIngo Weinhold 		rgb_color separatorShadowColor = _EdgeShadowColor(separatorBaseColor,
2581a0848a19SIngo Weinhold 			(flags & B_DISABLED) != 0 ? 0.7 : 1.0, 1.0, flags);
2582a0848a19SIngo Weinhold 
2583a0848a19SIngo Weinhold 		view->BeginLineArray(2);
2584a0848a19SIngo Weinhold 
2585a0848a19SIngo Weinhold 		view->AddLine(BPoint(indicatorRect.left - 2, indicatorRect.top),
2586a0848a19SIngo Weinhold 			BPoint(indicatorRect.left - 2, indicatorRect.bottom),
2587a0848a19SIngo Weinhold 			separatorShadowColor);
2588a0848a19SIngo Weinhold 		view->AddLine(BPoint(indicatorRect.left - 1, indicatorRect.top),
2589a0848a19SIngo Weinhold 			BPoint(indicatorRect.left - 1, indicatorRect.bottom),
2590a0848a19SIngo Weinhold 			separatorLightColor);
2591a0848a19SIngo Weinhold 
2592a0848a19SIngo Weinhold 		view->EndLineArray();
2593a0848a19SIngo Weinhold 
2594a0848a19SIngo Weinhold 		// draw background and pop-up marker
2595a0848a19SIngo Weinhold 		_DrawMenuFieldBackgroundInside(view, indicatorRect, updateRect,
2596a0848a19SIngo Weinhold 			0.0f, rightTopRadius, 0.0f, rightBottomRadius, base, flags, 0);
2597a0848a19SIngo Weinhold 
2598a0848a19SIngo Weinhold 		if ((flags & B_ACTIVATED) != 0)
2599a0848a19SIngo Weinhold 			indicatorRect.top++;
2600a0848a19SIngo Weinhold 
2601a0848a19SIngo Weinhold 		_DrawPopUpMarker(view, indicatorRect, base, flags);
2602a0848a19SIngo Weinhold 	}
2603a0848a19SIngo Weinhold 
2604a884b43bSJohn Scipione 	// fill in the background
2605a884b43bSJohn Scipione 	view->FillRect(rect, fillGradient);
2606a0848a19SIngo Weinhold }
2607a884b43bSJohn Scipione 
2608a0848a19SIngo Weinhold 
2609a0848a19SIngo Weinhold void
2610a0848a19SIngo Weinhold BControlLook::_DrawPopUpMarker(BView* view, const BRect& rect,
2611a0848a19SIngo Weinhold 	const rgb_color& base, uint32 flags)
2612a0848a19SIngo Weinhold {
2613a0848a19SIngo Weinhold 	BPoint center(roundf((rect.left + rect.right) / 2.0),
2614a0848a19SIngo Weinhold 		roundf((rect.top + rect.bottom) / 2.0));
2615a0848a19SIngo Weinhold 	BPoint triangle[3];
2616a0848a19SIngo Weinhold 	triangle[0] = center + BPoint(-2.5, -0.5);
2617a0848a19SIngo Weinhold 	triangle[1] = center + BPoint(2.5, -0.5);
2618a0848a19SIngo Weinhold 	triangle[2] = center + BPoint(0.0, 2.0);
2619a0848a19SIngo Weinhold 
2620a0848a19SIngo Weinhold 	uint32 viewFlags = view->Flags();
2621a0848a19SIngo Weinhold 	view->SetFlags(viewFlags | B_SUBPIXEL_PRECISE);
2622a0848a19SIngo Weinhold 
2623a0848a19SIngo Weinhold 	rgb_color markColor;
2624a0848a19SIngo Weinhold 	if ((flags & B_DISABLED) != 0)
2625a0848a19SIngo Weinhold 		markColor = tint_color(base, 1.35);
2626a0848a19SIngo Weinhold 	else
2627a0848a19SIngo Weinhold 		markColor = tint_color(base, 1.65);
2628a0848a19SIngo Weinhold 
2629a0848a19SIngo Weinhold 	view->SetHighColor(markColor);
2630a0848a19SIngo Weinhold 	view->FillTriangle(triangle[0], triangle[1], triangle[2]);
2631a0848a19SIngo Weinhold 
2632a0848a19SIngo Weinhold 	view->SetFlags(viewFlags);
26332f86ba45SStephan Aßmus }
26342f86ba45SStephan Aßmus 
26352f86ba45SStephan Aßmus 
26362f86ba45SStephan Aßmus void
2637a884b43bSJohn Scipione BControlLook::_DrawMenuFieldBackgroundOutside(BView* view, BRect& rect,
2638a884b43bSJohn Scipione 	const BRect& updateRect, float leftTopRadius, float rightTopRadius,
2639a884b43bSJohn Scipione 	float leftBottomRadius, float rightBottomRadius, const rgb_color& base,
2640a884b43bSJohn Scipione 	bool popupIndicator, uint32 flags)
26412f86ba45SStephan Aßmus {
2642a884b43bSJohn Scipione 	if (!rect.IsValid() || !rect.Intersects(updateRect))
2643a884b43bSJohn Scipione 		return;
2644a884b43bSJohn Scipione 
2645a884b43bSJohn Scipione 	if (popupIndicator) {
2646a884b43bSJohn Scipione 		BRect leftRect(rect);
2647a884b43bSJohn Scipione 		leftRect.right -= 10;
2648a884b43bSJohn Scipione 
2649a884b43bSJohn Scipione 		BRect rightRect(rect);
2650a884b43bSJohn Scipione 		rightRect.left = rightRect.right - 9;
2651a884b43bSJohn Scipione 
2652a884b43bSJohn Scipione 		_DrawMenuFieldBackgroundInside(view, leftRect, updateRect,
2653a884b43bSJohn Scipione 			leftTopRadius, 0.0f, leftBottomRadius, 0.0f, base, flags,
2654a884b43bSJohn Scipione 			B_LEFT_BORDER | B_TOP_BORDER | B_BOTTOM_BORDER);
2655a884b43bSJohn Scipione 
2656a884b43bSJohn Scipione 		_DrawMenuFieldBackgroundInside(view, rightRect, updateRect,
2657a884b43bSJohn Scipione 			0.0f, rightTopRadius, 0.0f, rightBottomRadius, base, flags,
2658a884b43bSJohn Scipione 			B_TOP_BORDER | B_RIGHT_BORDER | B_BOTTOM_BORDER);
2659a884b43bSJohn Scipione 
2660a0848a19SIngo Weinhold 		_DrawPopUpMarker(view, rightRect, base, flags);
2661a884b43bSJohn Scipione 
2662a884b43bSJohn Scipione 		// draw a line on the left of the popup frame
2663a884b43bSJohn Scipione 		rgb_color bevelShadowColor = _BevelShadowColor(base, flags);
2664a884b43bSJohn Scipione 		view->SetHighColor(bevelShadowColor);
2665a884b43bSJohn Scipione 		BPoint leftTopCorner(floorf(rightRect.left - 1.0),
2666a884b43bSJohn Scipione 			floorf(rightRect.top - 1.0));
2667a884b43bSJohn Scipione 		BPoint leftBottomCorner(floorf(rightRect.left - 1.0),
2668a884b43bSJohn Scipione 			floorf(rightRect.bottom + 1.0));
2669a884b43bSJohn Scipione 		view->StrokeLine(leftTopCorner, leftBottomCorner);
2670a884b43bSJohn Scipione 
2671a884b43bSJohn Scipione 		rect = leftRect;
2672a884b43bSJohn Scipione 	} else {
2673a884b43bSJohn Scipione 		_DrawMenuFieldBackgroundInside(view, rect, updateRect, leftTopRadius,
2674a884b43bSJohn Scipione 			rightTopRadius, leftBottomRadius, rightBottomRadius, base, flags);
2675a884b43bSJohn Scipione 	}
26762f86ba45SStephan Aßmus }
26772f86ba45SStephan Aßmus 
26782f86ba45SStephan Aßmus 
2679a884b43bSJohn Scipione void
2680a884b43bSJohn Scipione BControlLook::_DrawMenuFieldBackgroundInside(BView* view, BRect& rect,
2681a884b43bSJohn Scipione 	const BRect& updateRect, float leftTopRadius, float rightTopRadius,
2682a884b43bSJohn Scipione 	float leftBottomRadius, float rightBottomRadius, const rgb_color& base,
2683a884b43bSJohn Scipione 	uint32 flags, uint32 borders)
26842f86ba45SStephan Aßmus {
2685a884b43bSJohn Scipione 	if (!rect.IsValid() || !rect.Intersects(updateRect))
2686a884b43bSJohn Scipione 		return;
2687a884b43bSJohn Scipione 
26885666b4f7SJohn Scipione 	// save the clipping constraints of the view
26895666b4f7SJohn Scipione 	view->PushState();
2690a884b43bSJohn Scipione 
26915666b4f7SJohn Scipione 	// set clipping constraints to updateRect
26925666b4f7SJohn Scipione 	BRegion clipping(updateRect);
2693a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
2694a884b43bSJohn Scipione 
2695a884b43bSJohn Scipione 	// frame colors
2696a884b43bSJohn Scipione 	rgb_color frameLightColor  = _FrameLightColor(base, flags);
2697a884b43bSJohn Scipione 	rgb_color frameShadowColor = _FrameShadowColor(base, flags);
2698a884b43bSJohn Scipione 
2699a884b43bSJohn Scipione 	// indicator background color
2700a884b43bSJohn Scipione 	rgb_color indicatorBase;
2701a884b43bSJohn Scipione 	if ((borders & B_LEFT_BORDER) != 0)
2702a884b43bSJohn Scipione 		indicatorBase = base;
2703a884b43bSJohn Scipione 	else {
2704a884b43bSJohn Scipione 		if ((flags & B_DISABLED) != 0)
2705a884b43bSJohn Scipione 			indicatorBase = tint_color(base, 1.05);
2706a884b43bSJohn Scipione 		else
2707a884b43bSJohn Scipione 			indicatorBase = tint_color(base, 1.12);
27082f86ba45SStephan Aßmus 	}
27092f86ba45SStephan Aßmus 
2710a884b43bSJohn Scipione 	// bevel colors
2711a884b43bSJohn Scipione 	rgb_color cornerColor = tint_color(indicatorBase, 0.85);
2712a884b43bSJohn Scipione 	rgb_color bevelColor1 = tint_color(indicatorBase, 0.3);
2713a884b43bSJohn Scipione 	rgb_color bevelColor2 = tint_color(indicatorBase, 0.5);
2714a884b43bSJohn Scipione 	rgb_color bevelColor3 = tint_color(indicatorBase, 1.03);
27152f86ba45SStephan Aßmus 
2716a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
2717a884b43bSJohn Scipione 		cornerColor = tint_color(indicatorBase, 0.8);
2718a884b43bSJohn Scipione 		bevelColor1 = tint_color(indicatorBase, 0.7);
2719a884b43bSJohn Scipione 		bevelColor2 = tint_color(indicatorBase, 0.8);
2720a884b43bSJohn Scipione 		bevelColor3 = tint_color(indicatorBase, 1.01);
27212f86ba45SStephan Aßmus 	} else {
2722a884b43bSJohn Scipione 		cornerColor = tint_color(indicatorBase, 0.85);
2723a884b43bSJohn Scipione 		bevelColor1 = tint_color(indicatorBase, 0.3);
2724a884b43bSJohn Scipione 		bevelColor2 = tint_color(indicatorBase, 0.5);
2725a884b43bSJohn Scipione 		bevelColor3 = tint_color(indicatorBase, 1.03);
27262f86ba45SStephan Aßmus 	}
2727a884b43bSJohn Scipione 
2728a884b43bSJohn Scipione 	// surface top gradient
2729a884b43bSJohn Scipione 	BGradientLinear fillGradient;
2730a884b43bSJohn Scipione 	_MakeButtonGradient(fillGradient, rect, indicatorBase, flags);
2731a884b43bSJohn Scipione 
2732a884b43bSJohn Scipione 	// rounded corners
2733a884b43bSJohn Scipione 
2734a884b43bSJohn Scipione 	if ((borders & B_LEFT_BORDER) != 0 && (borders & B_TOP_BORDER) != 0
2735a884b43bSJohn Scipione 		&& leftTopRadius > 0) {
2736a884b43bSJohn Scipione 		// draw left top rounded corner
2737a884b43bSJohn Scipione 		BRect leftTopCorner(floorf(rect.left), floorf(rect.top),
2738a884b43bSJohn Scipione 			floorf(rect.left + leftTopRadius - 2.0),
2739a884b43bSJohn Scipione 			floorf(rect.top + leftTopRadius - 2.0));
2740a884b43bSJohn Scipione 		clipping.Exclude(leftTopCorner);
2741a884b43bSJohn Scipione 
2742a884b43bSJohn Scipione 		BRegion cornerClipping(leftTopCorner);
2743a884b43bSJohn Scipione 		view->ConstrainClippingRegion(&cornerClipping);
2744a884b43bSJohn Scipione 
2745a884b43bSJohn Scipione 		BRect ellipseRect(leftTopCorner);
2746a884b43bSJohn Scipione 		ellipseRect.InsetBy(-1.0, -1.0);
2747a884b43bSJohn Scipione 		ellipseRect.right = ellipseRect.left + ellipseRect.Width() * 2;
2748a884b43bSJohn Scipione 		ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
2749a884b43bSJohn Scipione 
2750a884b43bSJohn Scipione 		// draw the frame (again)
2751a884b43bSJohn Scipione 		view->SetHighColor(frameLightColor);
2752a884b43bSJohn Scipione 		view->FillEllipse(ellipseRect);
2753a884b43bSJohn Scipione 
2754a884b43bSJohn Scipione 		// draw the bevel and background
2755a884b43bSJohn Scipione 		_DrawRoundCornerBackgroundLeftTop(view, leftTopCorner, updateRect,
2756a884b43bSJohn Scipione 			bevelColor1, fillGradient);
2757a884b43bSJohn Scipione 	}
2758a884b43bSJohn Scipione 
2759a884b43bSJohn Scipione 	if ((borders & B_TOP_BORDER) != 0 && (borders & B_RIGHT_BORDER) != 0
2760a884b43bSJohn Scipione 		&& rightTopRadius > 0) {
2761a884b43bSJohn Scipione 		// draw right top rounded corner
2762a884b43bSJohn Scipione 		BRect rightTopCorner(floorf(rect.right - rightTopRadius + 2.0),
2763a884b43bSJohn Scipione 			floorf(rect.top), floorf(rect.right),
2764a884b43bSJohn Scipione 			floorf(rect.top + rightTopRadius - 2.0));
2765a884b43bSJohn Scipione 		clipping.Exclude(rightTopCorner);
2766a884b43bSJohn Scipione 
2767a884b43bSJohn Scipione 		BRegion cornerClipping(rightTopCorner);
2768a884b43bSJohn Scipione 		view->ConstrainClippingRegion(&cornerClipping);
2769a884b43bSJohn Scipione 
2770a884b43bSJohn Scipione 		BRect ellipseRect(rightTopCorner);
2771a884b43bSJohn Scipione 		ellipseRect.InsetBy(-1.0, -1.0);
2772a884b43bSJohn Scipione 		ellipseRect.left = ellipseRect.right - ellipseRect.Width() * 2;
2773a884b43bSJohn Scipione 		ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
2774a884b43bSJohn Scipione 
2775a884b43bSJohn Scipione 		// draw the frame (again)
2776a884b43bSJohn Scipione 		if (frameLightColor == frameShadowColor) {
2777a884b43bSJohn Scipione 			view->SetHighColor(frameLightColor);
2778a884b43bSJohn Scipione 			view->FillEllipse(ellipseRect);
27792f86ba45SStephan Aßmus 		} else {
2780a884b43bSJohn Scipione 			BGradientLinear gradient;
2781a884b43bSJohn Scipione 			gradient.AddColor(frameLightColor, 0);
2782a884b43bSJohn Scipione 			gradient.AddColor(frameShadowColor, 255);
2783a884b43bSJohn Scipione 			gradient.SetStart(rightTopCorner.LeftTop());
2784a884b43bSJohn Scipione 			gradient.SetEnd(rightTopCorner.RightBottom());
2785a884b43bSJohn Scipione 			view->FillEllipse(ellipseRect, gradient);
27862f86ba45SStephan Aßmus 		}
27872f86ba45SStephan Aßmus 
2788a884b43bSJohn Scipione 		// draw the bevel and background
2789a884b43bSJohn Scipione 		_DrawRoundCornerBackgroundRightTop(view, rightTopCorner, updateRect,
2790a884b43bSJohn Scipione 			bevelColor1, bevelColor3, fillGradient);
2791a884b43bSJohn Scipione 	}
27922f86ba45SStephan Aßmus 
2793a884b43bSJohn Scipione 	if ((borders & B_LEFT_BORDER) != 0 && (borders & B_BOTTOM_BORDER) != 0
2794a884b43bSJohn Scipione 		&& leftBottomRadius > 0) {
2795a884b43bSJohn Scipione 		// draw left bottom rounded corner
2796a884b43bSJohn Scipione 		BRect leftBottomCorner(floorf(rect.left),
2797a884b43bSJohn Scipione 			floorf(rect.bottom - leftBottomRadius + 2.0),
2798a884b43bSJohn Scipione 			floorf(rect.left + leftBottomRadius - 2.0),
2799a884b43bSJohn Scipione 			floorf(rect.bottom));
2800a884b43bSJohn Scipione 		clipping.Exclude(leftBottomCorner);
2801a884b43bSJohn Scipione 
2802a884b43bSJohn Scipione 		BRegion cornerClipping(leftBottomCorner);
2803a884b43bSJohn Scipione 		view->ConstrainClippingRegion(&cornerClipping);
2804a884b43bSJohn Scipione 
2805a884b43bSJohn Scipione 		BRect ellipseRect(leftBottomCorner);
2806a884b43bSJohn Scipione 		ellipseRect.InsetBy(-1.0, -1.0);
2807a884b43bSJohn Scipione 		ellipseRect.right = ellipseRect.left + ellipseRect.Width() * 2;
2808a884b43bSJohn Scipione 		ellipseRect.top = ellipseRect.bottom - ellipseRect.Height() * 2;
2809a884b43bSJohn Scipione 
2810a884b43bSJohn Scipione 		// draw the frame (again)
2811a884b43bSJohn Scipione 		if (frameLightColor == frameShadowColor) {
2812a884b43bSJohn Scipione 			view->SetHighColor(frameLightColor);
2813a884b43bSJohn Scipione 			view->FillEllipse(ellipseRect);
2814a884b43bSJohn Scipione 		} else {
2815a884b43bSJohn Scipione 			BGradientLinear gradient;
2816a884b43bSJohn Scipione 			gradient.AddColor(frameLightColor, 0);
2817a884b43bSJohn Scipione 			gradient.AddColor(frameShadowColor, 255);
2818a884b43bSJohn Scipione 			gradient.SetStart(leftBottomCorner.LeftTop());
2819a884b43bSJohn Scipione 			gradient.SetEnd(leftBottomCorner.RightBottom());
2820a884b43bSJohn Scipione 			view->FillEllipse(ellipseRect, gradient);
2821a884b43bSJohn Scipione 		}
2822a884b43bSJohn Scipione 
2823a884b43bSJohn Scipione 		// draw the bevel and background
2824a884b43bSJohn Scipione 		_DrawRoundCornerBackgroundLeftBottom(view, leftBottomCorner,
2825a884b43bSJohn Scipione 			updateRect, bevelColor2, bevelColor3, fillGradient);
2826a884b43bSJohn Scipione 	}
2827a884b43bSJohn Scipione 
2828a884b43bSJohn Scipione 	if ((borders & B_RIGHT_BORDER) != 0 && (borders & B_BOTTOM_BORDER) != 0
2829a884b43bSJohn Scipione 		&& rightBottomRadius > 0) {
2830a884b43bSJohn Scipione 		// draw right bottom rounded corner
2831a884b43bSJohn Scipione 		BRect rightBottomCorner(floorf(rect.right - rightBottomRadius + 2.0),
2832a884b43bSJohn Scipione 			floorf(rect.bottom - rightBottomRadius + 2.0), floorf(rect.right),
2833a884b43bSJohn Scipione 			floorf(rect.bottom));
2834a884b43bSJohn Scipione 		clipping.Exclude(rightBottomCorner);
2835a884b43bSJohn Scipione 
2836a884b43bSJohn Scipione 		BRegion cornerClipping(rightBottomCorner);
2837a884b43bSJohn Scipione 		view->ConstrainClippingRegion(&cornerClipping);
2838a884b43bSJohn Scipione 
2839a884b43bSJohn Scipione 		BRect ellipseRect(rightBottomCorner);
2840a884b43bSJohn Scipione 		ellipseRect.InsetBy(-1.0, -1.0);
2841a884b43bSJohn Scipione 		ellipseRect.left = ellipseRect.right - ellipseRect.Width() * 2;
2842a884b43bSJohn Scipione 		ellipseRect.top = ellipseRect.bottom - ellipseRect.Height() * 2;
2843a884b43bSJohn Scipione 
2844a884b43bSJohn Scipione 		// draw the frame (again)
2845a884b43bSJohn Scipione 		view->SetHighColor(frameShadowColor);
2846a884b43bSJohn Scipione 		view->FillEllipse(ellipseRect);
2847a884b43bSJohn Scipione 
2848a884b43bSJohn Scipione 		// draw the bevel and background
2849a884b43bSJohn Scipione 		_DrawRoundCornerBackgroundRightBottom(view, rightBottomCorner,
2850a884b43bSJohn Scipione 			updateRect, bevelColor3, fillGradient);
2851a884b43bSJohn Scipione 	}
2852a884b43bSJohn Scipione 
2853a884b43bSJohn Scipione 	// clip out the corners
2854a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
2855a884b43bSJohn Scipione 
2856a884b43bSJohn Scipione 	// draw the bevel
2857a884b43bSJohn Scipione 	_DrawFrame(view, rect,
2858a884b43bSJohn Scipione 		bevelColor2, bevelColor1,
2859a884b43bSJohn Scipione 		bevelColor3, bevelColor3,
2860a884b43bSJohn Scipione 		cornerColor, cornerColor,
2861a884b43bSJohn Scipione 		borders);
2862a884b43bSJohn Scipione 
2863a884b43bSJohn Scipione 	// fill in the background
2864a884b43bSJohn Scipione 	view->FillRect(rect, fillGradient);
2865a884b43bSJohn Scipione 
28665666b4f7SJohn Scipione 	// restore the clipping constraints of the view
28675666b4f7SJohn Scipione 	view->PopState();
2868a884b43bSJohn Scipione }
2869a884b43bSJohn Scipione 
2870a884b43bSJohn Scipione 
2871a884b43bSJohn Scipione void
2872a884b43bSJohn Scipione BControlLook::_DrawRoundCornerLeftTop(BView* view, BRect& cornerRect,
2873a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& background,
2874a884b43bSJohn Scipione 	const rgb_color& edgeColor, const rgb_color& frameColor,
2875a884b43bSJohn Scipione 	const rgb_color& bevelColor, const BGradientLinear& fillGradient)
2876a884b43bSJohn Scipione {
2877a884b43bSJohn Scipione 	_DrawRoundCornerFrameLeftTop(view, cornerRect, updateRect,
2878a884b43bSJohn Scipione 		background, edgeColor, frameColor);
2879a884b43bSJohn Scipione 	_DrawRoundCornerBackgroundLeftTop(view, cornerRect, updateRect,
2880a884b43bSJohn Scipione 		bevelColor, fillGradient);
2881a884b43bSJohn Scipione }
2882a884b43bSJohn Scipione 
2883a884b43bSJohn Scipione 
2884a884b43bSJohn Scipione void
2885a884b43bSJohn Scipione BControlLook::_DrawRoundCornerFrameLeftTop(BView* view, BRect& cornerRect,
2886a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& background,
2887a884b43bSJohn Scipione 	const rgb_color& edgeColor, const rgb_color& frameColor)
2888a884b43bSJohn Scipione {
2889a884b43bSJohn Scipione 	// constrain clipping region to corner
2890a884b43bSJohn Scipione 	BRegion clipping(cornerRect);
2891a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
2892a884b43bSJohn Scipione 
2893a884b43bSJohn Scipione 	// background
2894a884b43bSJohn Scipione 	view->SetHighColor(background);
2895a884b43bSJohn Scipione 	view->FillRect(cornerRect);
2896a884b43bSJohn Scipione 
2897a884b43bSJohn Scipione 	// outer edge
2898a884b43bSJohn Scipione 	BRect ellipseRect(cornerRect);
2899a884b43bSJohn Scipione 	ellipseRect.right = ellipseRect.left + ellipseRect.Width() * 2;
2900a884b43bSJohn Scipione 	ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
2901a884b43bSJohn Scipione 
2902a884b43bSJohn Scipione 	view->SetHighColor(edgeColor);
2903a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect);
2904a884b43bSJohn Scipione 
2905a884b43bSJohn Scipione 	// frame
2906a884b43bSJohn Scipione 	ellipseRect.InsetBy(1, 1);
2907a884b43bSJohn Scipione 	cornerRect.left++;
2908a884b43bSJohn Scipione 	cornerRect.top++;
2909a884b43bSJohn Scipione 	view->SetHighColor(frameColor);
2910a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect);
2911a884b43bSJohn Scipione 
2912a884b43bSJohn Scipione 	// prepare for bevel
2913a884b43bSJohn Scipione 	cornerRect.left++;
2914a884b43bSJohn Scipione 	cornerRect.top++;
2915a884b43bSJohn Scipione }
2916a884b43bSJohn Scipione 
2917a884b43bSJohn Scipione 
2918a884b43bSJohn Scipione void
2919a884b43bSJohn Scipione BControlLook::_DrawRoundCornerBackgroundLeftTop(BView* view, BRect& cornerRect,
2920a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& bevelColor,
2921a884b43bSJohn Scipione 	const BGradientLinear& fillGradient)
2922a884b43bSJohn Scipione {
2923a884b43bSJohn Scipione 	// constrain clipping region to corner
2924a884b43bSJohn Scipione 	BRegion clipping(cornerRect);
2925a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
2926a884b43bSJohn Scipione 
2927a884b43bSJohn Scipione 	BRect ellipseRect(cornerRect);
2928a884b43bSJohn Scipione 	ellipseRect.right = ellipseRect.left + ellipseRect.Width() * 2;
2929a884b43bSJohn Scipione 	ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
2930a884b43bSJohn Scipione 
2931a884b43bSJohn Scipione 	// bevel
2932a884b43bSJohn Scipione 	view->SetHighColor(bevelColor);
2933a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect);
2934a884b43bSJohn Scipione 
2935a884b43bSJohn Scipione 	// gradient
2936a884b43bSJohn Scipione 	ellipseRect.InsetBy(1, 1);
2937a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect, fillGradient);
2938a884b43bSJohn Scipione }
2939a884b43bSJohn Scipione 
2940a884b43bSJohn Scipione 
2941a884b43bSJohn Scipione void
2942a884b43bSJohn Scipione BControlLook::_DrawRoundCornerRightTop(BView* view, BRect& cornerRect,
2943a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& background,
2944a884b43bSJohn Scipione 	const rgb_color& edgeTopColor, const rgb_color& edgeRightColor,
2945a884b43bSJohn Scipione 	const rgb_color& frameTopColor, const rgb_color& frameRightColor,
2946a884b43bSJohn Scipione 	const rgb_color& bevelTopColor, const rgb_color& bevelRightColor,
2947a884b43bSJohn Scipione 	const BGradientLinear& fillGradient)
2948a884b43bSJohn Scipione {
2949a884b43bSJohn Scipione 	_DrawRoundCornerFrameRightTop(view, cornerRect, updateRect,
2950a884b43bSJohn Scipione 		background, edgeTopColor, edgeRightColor, frameTopColor,
2951a884b43bSJohn Scipione 		frameRightColor);
2952a884b43bSJohn Scipione 	_DrawRoundCornerBackgroundRightTop(view, cornerRect, updateRect,
2953a884b43bSJohn Scipione 		bevelTopColor, bevelRightColor, fillGradient);
2954a884b43bSJohn Scipione }
2955a884b43bSJohn Scipione 
2956a884b43bSJohn Scipione 
2957a884b43bSJohn Scipione void
2958a884b43bSJohn Scipione BControlLook::_DrawRoundCornerFrameRightTop(BView* view, BRect& cornerRect,
2959a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& background,
2960a884b43bSJohn Scipione 	const rgb_color& edgeTopColor, const rgb_color& edgeRightColor,
2961a884b43bSJohn Scipione 	const rgb_color& frameTopColor, const rgb_color& frameRightColor)
2962a884b43bSJohn Scipione {
2963a884b43bSJohn Scipione 	// constrain clipping region to corner
2964a884b43bSJohn Scipione 	BRegion clipping(cornerRect);
2965a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
2966a884b43bSJohn Scipione 
2967a884b43bSJohn Scipione 	// background
2968a884b43bSJohn Scipione 	view->SetHighColor(background);
2969a884b43bSJohn Scipione 	view->FillRect(cornerRect);
2970a884b43bSJohn Scipione 
2971a884b43bSJohn Scipione 	// outer edge
2972a884b43bSJohn Scipione 	BRect ellipseRect(cornerRect);
2973a884b43bSJohn Scipione 	ellipseRect.left = ellipseRect.right - ellipseRect.Width() * 2;
2974a884b43bSJohn Scipione 	ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
2975a884b43bSJohn Scipione 
2976a884b43bSJohn Scipione 	BGradientLinear gradient;
2977a884b43bSJohn Scipione 	gradient.AddColor(edgeTopColor, 0);
2978a884b43bSJohn Scipione 	gradient.AddColor(edgeRightColor, 255);
2979a884b43bSJohn Scipione 	gradient.SetStart(cornerRect.LeftTop());
2980a884b43bSJohn Scipione 	gradient.SetEnd(cornerRect.RightBottom());
2981a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect, gradient);
2982a884b43bSJohn Scipione 
2983a884b43bSJohn Scipione 	// frame
2984a884b43bSJohn Scipione 	ellipseRect.InsetBy(1, 1);
2985a884b43bSJohn Scipione 	cornerRect.right--;
2986a884b43bSJohn Scipione 	cornerRect.top++;
2987a884b43bSJohn Scipione 	if (frameTopColor == frameRightColor) {
2988a884b43bSJohn Scipione 		view->SetHighColor(frameTopColor);
2989a884b43bSJohn Scipione 		view->FillEllipse(ellipseRect);
2990a884b43bSJohn Scipione 	} else {
2991a884b43bSJohn Scipione 		gradient.SetColor(0, frameTopColor);
2992a884b43bSJohn Scipione 		gradient.SetColor(1, frameRightColor);
2993a884b43bSJohn Scipione 		gradient.SetStart(cornerRect.LeftTop());
2994a884b43bSJohn Scipione 		gradient.SetEnd(cornerRect.RightBottom());
2995a884b43bSJohn Scipione 		view->FillEllipse(ellipseRect, gradient);
2996a884b43bSJohn Scipione 	}
2997a884b43bSJohn Scipione 
2998a884b43bSJohn Scipione 	// prepare for bevel
2999a884b43bSJohn Scipione 	cornerRect.right--;
3000a884b43bSJohn Scipione 	cornerRect.top++;
3001a884b43bSJohn Scipione }
3002a884b43bSJohn Scipione 
3003a884b43bSJohn Scipione 
3004a884b43bSJohn Scipione void
3005a884b43bSJohn Scipione BControlLook::_DrawRoundCornerBackgroundRightTop(BView* view, BRect& cornerRect,
3006a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& bevelTopColor,
3007a884b43bSJohn Scipione 	const rgb_color& bevelRightColor, const BGradientLinear& fillGradient)
3008a884b43bSJohn Scipione {
3009a884b43bSJohn Scipione 	// constrain clipping region to corner
3010a884b43bSJohn Scipione 	BRegion clipping(cornerRect);
3011a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
3012a884b43bSJohn Scipione 
3013a884b43bSJohn Scipione 	BRect ellipseRect(cornerRect);
3014a884b43bSJohn Scipione 	ellipseRect.left = ellipseRect.right - ellipseRect.Width() * 2;
3015a884b43bSJohn Scipione 	ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2;
3016a884b43bSJohn Scipione 
3017a884b43bSJohn Scipione 	// bevel
3018a884b43bSJohn Scipione 	BGradientLinear gradient;
3019a884b43bSJohn Scipione 	gradient.AddColor(bevelTopColor, 0);
3020a884b43bSJohn Scipione 	gradient.AddColor(bevelRightColor, 255);
3021a884b43bSJohn Scipione 	gradient.SetStart(cornerRect.LeftTop());
3022a884b43bSJohn Scipione 	gradient.SetEnd(cornerRect.RightBottom());
3023a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect, gradient);
3024a884b43bSJohn Scipione 
3025a884b43bSJohn Scipione 	// gradient
3026a884b43bSJohn Scipione 	ellipseRect.InsetBy(1, 1);
3027a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect, fillGradient);
3028a884b43bSJohn Scipione }
3029a884b43bSJohn Scipione 
3030a884b43bSJohn Scipione 
3031a884b43bSJohn Scipione void
3032a884b43bSJohn Scipione BControlLook::_DrawRoundCornerLeftBottom(BView* view, BRect& cornerRect,
3033a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& background,
3034a884b43bSJohn Scipione 	const rgb_color& edgeLeftColor, const rgb_color& edgeBottomColor,
3035a884b43bSJohn Scipione 	const rgb_color& frameLeftColor, const rgb_color& frameBottomColor,
3036a884b43bSJohn Scipione 	const rgb_color& bevelLeftColor, const rgb_color& bevelBottomColor,
3037a884b43bSJohn Scipione 	const BGradientLinear& fillGradient)
3038a884b43bSJohn Scipione {
3039a884b43bSJohn Scipione 	_DrawRoundCornerFrameLeftBottom(view, cornerRect, updateRect,
3040a884b43bSJohn Scipione 		background, edgeLeftColor, edgeBottomColor, frameLeftColor,
3041a884b43bSJohn Scipione 		frameBottomColor);
3042a884b43bSJohn Scipione 	_DrawRoundCornerBackgroundLeftBottom(view, cornerRect, updateRect,
3043a884b43bSJohn Scipione 		bevelLeftColor, bevelBottomColor, fillGradient);
3044a884b43bSJohn Scipione }
3045a884b43bSJohn Scipione 
3046a884b43bSJohn Scipione 
3047a884b43bSJohn Scipione void
3048a884b43bSJohn Scipione BControlLook::_DrawRoundCornerFrameLeftBottom(BView* view, BRect& cornerRect,
3049a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& background,
3050a884b43bSJohn Scipione 	const rgb_color& edgeLeftColor, const rgb_color& edgeBottomColor,
3051a884b43bSJohn Scipione 	const rgb_color& frameLeftColor, const rgb_color& frameBottomColor)
3052a884b43bSJohn Scipione {
3053a884b43bSJohn Scipione 	// constrain clipping region to corner
3054a884b43bSJohn Scipione 	BRegion clipping(cornerRect);
3055a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
3056a884b43bSJohn Scipione 
3057a884b43bSJohn Scipione 	// background
3058a884b43bSJohn Scipione 	view->SetHighColor(background);
3059a884b43bSJohn Scipione 	view->FillRect(cornerRect);
3060a884b43bSJohn Scipione 
3061a884b43bSJohn Scipione 	// outer edge
3062a884b43bSJohn Scipione 	BRect ellipseRect(cornerRect);
3063a884b43bSJohn Scipione 	ellipseRect.right = ellipseRect.left + ellipseRect.Width() * 2;
3064a884b43bSJohn Scipione 	ellipseRect.top = ellipseRect.bottom - ellipseRect.Height() * 2;
3065a884b43bSJohn Scipione 
3066a884b43bSJohn Scipione 	BGradientLinear gradient;
3067a884b43bSJohn Scipione 	gradient.AddColor(edgeLeftColor, 0);
3068a884b43bSJohn Scipione 	gradient.AddColor(edgeBottomColor, 255);
3069a884b43bSJohn Scipione 	gradient.SetStart(cornerRect.LeftTop());
3070a884b43bSJohn Scipione 	gradient.SetEnd(cornerRect.RightBottom());
3071a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect, gradient);
3072a884b43bSJohn Scipione 
3073a884b43bSJohn Scipione 	// frame
3074a884b43bSJohn Scipione 	ellipseRect.InsetBy(1, 1);
3075a884b43bSJohn Scipione 	cornerRect.left++;
3076a884b43bSJohn Scipione 	cornerRect.bottom--;
3077a884b43bSJohn Scipione 	if (frameLeftColor == frameBottomColor) {
3078a884b43bSJohn Scipione 		view->SetHighColor(frameLeftColor);
3079a884b43bSJohn Scipione 		view->FillEllipse(ellipseRect);
3080a884b43bSJohn Scipione 	} else {
3081a884b43bSJohn Scipione 		gradient.SetColor(0, frameLeftColor);
3082a884b43bSJohn Scipione 		gradient.SetColor(1, frameBottomColor);
3083a884b43bSJohn Scipione 		gradient.SetStart(cornerRect.LeftTop());
3084a884b43bSJohn Scipione 		gradient.SetEnd(cornerRect.RightBottom());
3085a884b43bSJohn Scipione 		view->FillEllipse(ellipseRect, gradient);
3086a884b43bSJohn Scipione 	}
3087a884b43bSJohn Scipione 
3088a884b43bSJohn Scipione 	// prepare for bevel
3089a884b43bSJohn Scipione 	cornerRect.left++;
3090a884b43bSJohn Scipione 	cornerRect.bottom--;
3091a884b43bSJohn Scipione }
3092a884b43bSJohn Scipione 
3093a884b43bSJohn Scipione 
3094a884b43bSJohn Scipione void
3095a884b43bSJohn Scipione BControlLook::_DrawRoundCornerBackgroundLeftBottom(BView* view, BRect& cornerRect,
3096a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& bevelLeftColor,
3097a884b43bSJohn Scipione 	const rgb_color& bevelBottomColor, const BGradientLinear& fillGradient)
3098a884b43bSJohn Scipione {
3099a884b43bSJohn Scipione 	// constrain clipping region to corner
3100a884b43bSJohn Scipione 	BRegion clipping(cornerRect);
3101a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
3102a884b43bSJohn Scipione 
3103a884b43bSJohn Scipione 	BRect ellipseRect(cornerRect);
3104a884b43bSJohn Scipione 	ellipseRect.right = ellipseRect.left + ellipseRect.Width() * 2;
3105a884b43bSJohn Scipione 	ellipseRect.top = ellipseRect.bottom - ellipseRect.Height() * 2;
3106a884b43bSJohn Scipione 
3107a884b43bSJohn Scipione 	// bevel
3108a884b43bSJohn Scipione 	BGradientLinear gradient;
3109a884b43bSJohn Scipione 	gradient.AddColor(bevelLeftColor, 0);
3110a884b43bSJohn Scipione 	gradient.AddColor(bevelBottomColor, 255);
3111a884b43bSJohn Scipione 	gradient.SetStart(cornerRect.LeftTop());
3112a884b43bSJohn Scipione 	gradient.SetEnd(cornerRect.RightBottom());
3113a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect, gradient);
3114a884b43bSJohn Scipione 
3115a884b43bSJohn Scipione 	// gradient
3116a884b43bSJohn Scipione 	ellipseRect.InsetBy(1, 1);
3117a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect, fillGradient);
3118a884b43bSJohn Scipione 
3119a884b43bSJohn Scipione 	view->PopState();
3120a884b43bSJohn Scipione }
3121a884b43bSJohn Scipione 
3122a884b43bSJohn Scipione 
3123a884b43bSJohn Scipione void
3124a884b43bSJohn Scipione BControlLook::_DrawRoundCornerRightBottom(BView* view, BRect& cornerRect,
3125a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& background,
3126a884b43bSJohn Scipione 	const rgb_color& edgeColor, const rgb_color& frameColor,
3127a884b43bSJohn Scipione 	const rgb_color& bevelColor, const BGradientLinear& fillGradient)
3128a884b43bSJohn Scipione {
3129a884b43bSJohn Scipione 	_DrawRoundCornerFrameRightBottom(view, cornerRect, updateRect,
3130a884b43bSJohn Scipione 		background, edgeColor, frameColor);
3131a884b43bSJohn Scipione 	_DrawRoundCornerBackgroundRightBottom(view, cornerRect, updateRect,
3132a884b43bSJohn Scipione 		bevelColor, fillGradient);
3133a884b43bSJohn Scipione }
3134a884b43bSJohn Scipione 
3135a884b43bSJohn Scipione 
3136a884b43bSJohn Scipione void
3137a884b43bSJohn Scipione BControlLook::_DrawRoundCornerFrameRightBottom(BView* view, BRect& cornerRect,
3138a884b43bSJohn Scipione 	const BRect& updateRect, const rgb_color& background,
3139a884b43bSJohn Scipione 	const rgb_color& edgeColor, const rgb_color& frameColor)
3140a884b43bSJohn Scipione {
3141a884b43bSJohn Scipione 	// constrain clipping region to corner
3142a884b43bSJohn Scipione 	BRegion clipping(cornerRect);
3143a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
3144a884b43bSJohn Scipione 
3145a884b43bSJohn Scipione 	// background
3146a884b43bSJohn Scipione 	view->SetHighColor(background);
3147a884b43bSJohn Scipione 	view->FillRect(cornerRect);
3148a884b43bSJohn Scipione 
3149a884b43bSJohn Scipione 	// outer edge
3150a884b43bSJohn Scipione 	BRect ellipseRect(cornerRect);
3151a884b43bSJohn Scipione 	ellipseRect.left = ellipseRect.right - ellipseRect.Width() * 2;
3152a884b43bSJohn Scipione 	ellipseRect.top = ellipseRect.bottom - ellipseRect.Height() * 2;
3153a884b43bSJohn Scipione 
3154a884b43bSJohn Scipione 	view->SetHighColor(edgeColor);
3155a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect);
3156a884b43bSJohn Scipione 
3157a884b43bSJohn Scipione 	// frame
3158a884b43bSJohn Scipione 	ellipseRect.InsetBy(1, 1);
3159a884b43bSJohn Scipione 	cornerRect.right--;
3160a884b43bSJohn Scipione 	cornerRect.bottom++;
3161a884b43bSJohn Scipione 	view->SetHighColor(frameColor);
3162a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect);
3163a884b43bSJohn Scipione 
3164a884b43bSJohn Scipione 	// prepare for bevel
3165a884b43bSJohn Scipione 	cornerRect.left++;
3166a884b43bSJohn Scipione 	cornerRect.bottom--;
3167a884b43bSJohn Scipione }
3168a884b43bSJohn Scipione 
3169a884b43bSJohn Scipione 
3170a884b43bSJohn Scipione void
3171a884b43bSJohn Scipione BControlLook::_DrawRoundCornerBackgroundRightBottom(BView* view,
3172a884b43bSJohn Scipione 	BRect& cornerRect, const BRect& updateRect, const rgb_color& bevelColor,
3173a884b43bSJohn Scipione 	const BGradientLinear& fillGradient)
3174a884b43bSJohn Scipione {
3175a884b43bSJohn Scipione 	// constrain clipping region to corner
3176a884b43bSJohn Scipione 	BRegion clipping(cornerRect);
3177a884b43bSJohn Scipione 	view->ConstrainClippingRegion(&clipping);
3178a884b43bSJohn Scipione 
3179a884b43bSJohn Scipione 	BRect ellipseRect(cornerRect);
3180a884b43bSJohn Scipione 	ellipseRect.left = ellipseRect.right - ellipseRect.Width() * 2;
3181a884b43bSJohn Scipione 	ellipseRect.top = ellipseRect.bottom - ellipseRect.Height() * 2;
3182a884b43bSJohn Scipione 
3183a884b43bSJohn Scipione 	// bevel
3184a884b43bSJohn Scipione 	view->SetHighColor(bevelColor);
3185a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect);
3186a884b43bSJohn Scipione 
3187a884b43bSJohn Scipione 	// gradient
3188a884b43bSJohn Scipione 	ellipseRect.InsetBy(1, 1);
3189a884b43bSJohn Scipione 	view->FillEllipse(ellipseRect, fillGradient);
31902f86ba45SStephan Aßmus }
31912f86ba45SStephan Aßmus 
31922f86ba45SStephan Aßmus 
31932f86ba45SStephan Aßmus void
31942f86ba45SStephan Aßmus BControlLook::_DrawRoundBarCorner(BView* view, BRect& rect,
31952f86ba45SStephan Aßmus 	const BRect& updateRect,
31962f86ba45SStephan Aßmus 	const rgb_color& edgeLightColor, const rgb_color& edgeShadowColor,
31972f86ba45SStephan Aßmus 	const rgb_color& frameLightColor, const rgb_color& frameShadowColor,
31982f86ba45SStephan Aßmus 	const rgb_color& fillLightColor, const rgb_color& fillShadowColor,
31992f86ba45SStephan Aßmus 	float leftInset, float topInset, float rightInset, float bottomInset,
3200e724b26fSJohn Scipione 	orientation orientation)
32012f86ba45SStephan Aßmus {
32022f86ba45SStephan Aßmus 	if (!rect.IsValid() || !rect.Intersects(updateRect))
32032f86ba45SStephan Aßmus 		return;
32042f86ba45SStephan Aßmus 
32052f86ba45SStephan Aßmus 	BGradientLinear gradient;
32062f86ba45SStephan Aßmus 	gradient.AddColor(edgeShadowColor, 0);
32072f86ba45SStephan Aßmus 	gradient.AddColor(edgeLightColor, 255);
32082f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
32092f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
32102f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
32112f86ba45SStephan Aßmus 	else
32122f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
32132f86ba45SStephan Aßmus 
32142f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
32152f86ba45SStephan Aßmus 
32162f86ba45SStephan Aßmus 	rect.left += leftInset;
32172f86ba45SStephan Aßmus 	rect.top += topInset;
32182f86ba45SStephan Aßmus 	rect.right += rightInset;
32192f86ba45SStephan Aßmus 	rect.bottom += bottomInset;
32202f86ba45SStephan Aßmus 
32212f86ba45SStephan Aßmus 	gradient.MakeEmpty();
32222f86ba45SStephan Aßmus 	gradient.AddColor(frameShadowColor, 0);
32232f86ba45SStephan Aßmus 	gradient.AddColor(frameLightColor, 255);
32242f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
32252f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
32262f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
32272f86ba45SStephan Aßmus 	else
32282f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
32292f86ba45SStephan Aßmus 
32302f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
32312f86ba45SStephan Aßmus 
32322f86ba45SStephan Aßmus 	rect.left += leftInset;
32332f86ba45SStephan Aßmus 	rect.top += topInset;
32342f86ba45SStephan Aßmus 	rect.right += rightInset;
32352f86ba45SStephan Aßmus 	rect.bottom += bottomInset;
32362f86ba45SStephan Aßmus 
32372f86ba45SStephan Aßmus 	gradient.MakeEmpty();
32382f86ba45SStephan Aßmus 	gradient.AddColor(fillShadowColor, 0);
32392f86ba45SStephan Aßmus 	gradient.AddColor(fillLightColor, 255);
32402f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
32412f86ba45SStephan Aßmus 	if (orientation == B_HORIZONTAL)
32422f86ba45SStephan Aßmus 		gradient.SetEnd(rect.LeftBottom());
32432f86ba45SStephan Aßmus 	else
32442f86ba45SStephan Aßmus 		gradient.SetEnd(rect.RightTop());
32452f86ba45SStephan Aßmus 
32462f86ba45SStephan Aßmus 	view->FillEllipse(rect, gradient);
32472f86ba45SStephan Aßmus }
32482f86ba45SStephan Aßmus 
32492f86ba45SStephan Aßmus 
3250a884b43bSJohn Scipione rgb_color
3251a884b43bSJohn Scipione BControlLook::_EdgeLightColor(const rgb_color& base, float contrast,
3252a884b43bSJohn Scipione 	float brightness, uint32 flags)
32532f86ba45SStephan Aßmus {
3254a884b43bSJohn Scipione 	rgb_color edgeLightColor;
32552f86ba45SStephan Aßmus 
3256a884b43bSJohn Scipione 	if ((flags & B_BLEND_FRAME) != 0) {
3257a884b43bSJohn Scipione 		uint8 alpha = uint8(20 * contrast);
325883864481SJérôme Duval 		uint8 white = uint8(255 * brightness);
32592f86ba45SStephan Aßmus 
3260a884b43bSJohn Scipione 		edgeLightColor = (rgb_color){ white, white, white, alpha };
32612f86ba45SStephan Aßmus 	} else {
3262a884b43bSJohn Scipione 		// colors
3263a884b43bSJohn Scipione 		float tintLight = kEdgeBevelLightTint;
3264a884b43bSJohn Scipione 
3265a884b43bSJohn Scipione 		if (contrast == 0.0)
3266a884b43bSJohn Scipione 			tintLight = B_NO_TINT;
3267a884b43bSJohn Scipione 		else if (contrast != 1.0)
3268a884b43bSJohn Scipione 			tintLight = B_NO_TINT + (tintLight - B_NO_TINT) * contrast;
3269a884b43bSJohn Scipione 
3270a884b43bSJohn Scipione 		edgeLightColor = tint_color(base, tintLight);
3271a884b43bSJohn Scipione 
3272a884b43bSJohn Scipione 		if (brightness < 1.0) {
3273a884b43bSJohn Scipione 			edgeLightColor.red = uint8(edgeLightColor.red * brightness);
3274a884b43bSJohn Scipione 			edgeLightColor.green = uint8(edgeLightColor.green * brightness);
3275a884b43bSJohn Scipione 			edgeLightColor.blue = uint8(edgeLightColor.blue * brightness);
3276a884b43bSJohn Scipione 		}
32772f86ba45SStephan Aßmus 	}
32782f86ba45SStephan Aßmus 
3279a884b43bSJohn Scipione 	return edgeLightColor;
3280a884b43bSJohn Scipione }
3281a884b43bSJohn Scipione 
3282a884b43bSJohn Scipione 
3283a884b43bSJohn Scipione rgb_color
3284a884b43bSJohn Scipione BControlLook::_EdgeShadowColor(const rgb_color& base, float contrast,
3285a884b43bSJohn Scipione 	float brightness, uint32 flags)
3286a884b43bSJohn Scipione {
3287a884b43bSJohn Scipione 	rgb_color edgeShadowColor;
3288a884b43bSJohn Scipione 
3289a884b43bSJohn Scipione 	if ((flags & B_BLEND_FRAME) != 0) {
3290a884b43bSJohn Scipione 		uint8 alpha = uint8(20 * contrast);
3291a884b43bSJohn Scipione 		edgeShadowColor = (rgb_color){ 0, 0, 0, alpha };
3292a884b43bSJohn Scipione 	} else {
3293a884b43bSJohn Scipione 		float tintShadow = kEdgeBevelShadowTint;
3294a884b43bSJohn Scipione 
3295a884b43bSJohn Scipione 		if (contrast == 0.0)
3296a884b43bSJohn Scipione 			tintShadow = B_NO_TINT;
3297a884b43bSJohn Scipione 		else if (contrast != 1.0)
3298a884b43bSJohn Scipione 			tintShadow = B_NO_TINT + (tintShadow - B_NO_TINT) * contrast;
3299a884b43bSJohn Scipione 
3300a884b43bSJohn Scipione 		edgeShadowColor = tint_color(base, tintShadow);
3301a884b43bSJohn Scipione 
3302a884b43bSJohn Scipione 		if (brightness < 1.0) {
3303a884b43bSJohn Scipione 			edgeShadowColor.red = uint8(edgeShadowColor.red * brightness);
3304a884b43bSJohn Scipione 			edgeShadowColor.green = uint8(edgeShadowColor.green * brightness);
3305a884b43bSJohn Scipione 			edgeShadowColor.blue = uint8(edgeShadowColor.blue * brightness);
3306a884b43bSJohn Scipione 		}
3307a884b43bSJohn Scipione 	}
3308a884b43bSJohn Scipione 
3309a884b43bSJohn Scipione 	return edgeShadowColor;
3310a884b43bSJohn Scipione }
3311a884b43bSJohn Scipione 
3312a884b43bSJohn Scipione 
3313a884b43bSJohn Scipione rgb_color
3314a884b43bSJohn Scipione BControlLook::_FrameLightColor(const rgb_color& base, uint32 flags)
3315a884b43bSJohn Scipione {
3316a884b43bSJohn Scipione 	if ((flags & B_FOCUSED) != 0)
3317a884b43bSJohn Scipione 		return ui_color(B_KEYBOARD_NAVIGATION_COLOR);
3318a884b43bSJohn Scipione 
3319a884b43bSJohn Scipione 	if ((flags & B_ACTIVATED) != 0)
3320a884b43bSJohn Scipione 		return _FrameShadowColor(base, flags & ~B_ACTIVATED);
3321a884b43bSJohn Scipione 
3322a884b43bSJohn Scipione 	rgb_color frameLightColor;
3323a884b43bSJohn Scipione 
3324a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
3325a884b43bSJohn Scipione 		// TODO: B_BLEND_FRAME
3326a884b43bSJohn Scipione 		frameLightColor = tint_color(base, 1.145);
3327a884b43bSJohn Scipione 
3328a884b43bSJohn Scipione 		if ((flags & B_DEFAULT_BUTTON) != 0)
3329a884b43bSJohn Scipione 			frameLightColor = tint_color(frameLightColor, 1.14);
3330a884b43bSJohn Scipione 	} else {
3331a884b43bSJohn Scipione 		if ((flags & B_BLEND_FRAME) != 0)
3332a884b43bSJohn Scipione 			frameLightColor = (rgb_color){ 0, 0, 0, 75 };
3333a884b43bSJohn Scipione 		else
3334a884b43bSJohn Scipione 			frameLightColor = tint_color(base, 1.33);
3335a884b43bSJohn Scipione 
3336a884b43bSJohn Scipione 		if ((flags & B_DEFAULT_BUTTON) != 0)
3337a884b43bSJohn Scipione 			frameLightColor = tint_color(frameLightColor, 1.35);
3338a884b43bSJohn Scipione 	}
3339a884b43bSJohn Scipione 
3340a884b43bSJohn Scipione 	return frameLightColor;
3341a884b43bSJohn Scipione }
3342a884b43bSJohn Scipione 
3343a884b43bSJohn Scipione 
3344a884b43bSJohn Scipione rgb_color
3345a884b43bSJohn Scipione BControlLook::_FrameShadowColor(const rgb_color& base, uint32 flags)
3346a884b43bSJohn Scipione {
3347a884b43bSJohn Scipione 	if ((flags & B_FOCUSED) != 0)
3348a884b43bSJohn Scipione 		return ui_color(B_KEYBOARD_NAVIGATION_COLOR);
3349a884b43bSJohn Scipione 
3350a884b43bSJohn Scipione 	if ((flags & B_ACTIVATED) != 0)
3351a884b43bSJohn Scipione 		return _FrameLightColor(base, flags & ~B_ACTIVATED);
3352a884b43bSJohn Scipione 
3353a884b43bSJohn Scipione 	rgb_color frameShadowColor;
3354a884b43bSJohn Scipione 
3355a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
3356a884b43bSJohn Scipione 		// TODO: B_BLEND_FRAME
3357a884b43bSJohn Scipione 		frameShadowColor = tint_color(base, 1.24);
3358a884b43bSJohn Scipione 
3359a884b43bSJohn Scipione 		if ((flags & B_DEFAULT_BUTTON) != 0) {
3360a884b43bSJohn Scipione 			frameShadowColor = tint_color(base, 1.145);
3361a884b43bSJohn Scipione 			frameShadowColor = tint_color(frameShadowColor, 1.12);
3362a884b43bSJohn Scipione 		}
3363a884b43bSJohn Scipione 	} else {
3364a884b43bSJohn Scipione 		if ((flags & B_DEFAULT_BUTTON) != 0) {
3365a884b43bSJohn Scipione 			if ((flags & B_BLEND_FRAME) != 0)
3366a884b43bSJohn Scipione 				frameShadowColor = (rgb_color){ 0, 0, 0, 75 };
3367a884b43bSJohn Scipione 			else
3368a884b43bSJohn Scipione 				frameShadowColor = tint_color(base, 1.33);
3369a884b43bSJohn Scipione 
3370a884b43bSJohn Scipione 			frameShadowColor = tint_color(frameShadowColor, 1.5);
3371a884b43bSJohn Scipione 		} else {
3372a884b43bSJohn Scipione 			if ((flags & B_BLEND_FRAME) != 0)
3373a884b43bSJohn Scipione 				frameShadowColor = (rgb_color){ 0, 0, 0, 95 };
3374a884b43bSJohn Scipione 			else
3375a884b43bSJohn Scipione 				frameShadowColor = tint_color(base, 1.47);
3376a884b43bSJohn Scipione 		}
3377a884b43bSJohn Scipione 	}
3378a884b43bSJohn Scipione 
3379a884b43bSJohn Scipione 	return frameShadowColor;
3380a884b43bSJohn Scipione }
3381a884b43bSJohn Scipione 
3382a884b43bSJohn Scipione 
3383a884b43bSJohn Scipione rgb_color
3384a884b43bSJohn Scipione BControlLook::_BevelLightColor(const rgb_color& base, uint32 flags)
3385a884b43bSJohn Scipione {
3386a884b43bSJohn Scipione 	rgb_color bevelLightColor = tint_color(base, 0.2);
3387a884b43bSJohn Scipione 
3388a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0)
3389a884b43bSJohn Scipione 		bevelLightColor = tint_color(base, B_LIGHTEN_1_TINT);
3390a884b43bSJohn Scipione 
3391a884b43bSJohn Scipione 	if ((flags & B_ACTIVATED) != 0)
3392a884b43bSJohn Scipione 		bevelLightColor = tint_color(base, B_DARKEN_1_TINT);
3393a884b43bSJohn Scipione 
3394a884b43bSJohn Scipione 	return bevelLightColor;
3395a884b43bSJohn Scipione }
3396a884b43bSJohn Scipione 
3397a884b43bSJohn Scipione 
3398a884b43bSJohn Scipione rgb_color
3399a884b43bSJohn Scipione BControlLook::_BevelShadowColor(const rgb_color& base, uint32 flags)
3400a884b43bSJohn Scipione {
3401a884b43bSJohn Scipione 	rgb_color bevelShadowColor = tint_color(base, 1.08);
3402a884b43bSJohn Scipione 
3403a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0)
3404a884b43bSJohn Scipione 		bevelShadowColor = base;
3405a884b43bSJohn Scipione 
3406a884b43bSJohn Scipione 	if ((flags & B_ACTIVATED) != 0)
3407a884b43bSJohn Scipione 		bevelShadowColor = tint_color(base, B_DARKEN_1_TINT);
3408a884b43bSJohn Scipione 
3409a884b43bSJohn Scipione 	return bevelShadowColor;
3410a884b43bSJohn Scipione }
3411a884b43bSJohn Scipione 
3412a884b43bSJohn Scipione 
3413a884b43bSJohn Scipione void
3414a884b43bSJohn Scipione BControlLook::_FillGradient(BView* view, const BRect& rect,
3415a884b43bSJohn Scipione 	const rgb_color& base, float topTint, float bottomTint,
3416e724b26fSJohn Scipione 	orientation orientation)
3417a884b43bSJohn Scipione {
3418a884b43bSJohn Scipione 	BGradientLinear gradient;
3419a884b43bSJohn Scipione 	_MakeGradient(gradient, rect, base, topTint, bottomTint, orientation);
3420a884b43bSJohn Scipione 	view->FillRect(rect, gradient);
3421a884b43bSJohn Scipione }
3422a884b43bSJohn Scipione 
3423a884b43bSJohn Scipione 
3424a884b43bSJohn Scipione void
3425a884b43bSJohn Scipione BControlLook::_FillGlossyGradient(BView* view, const BRect& rect,
3426a884b43bSJohn Scipione 	const rgb_color& base, float topTint, float middle1Tint,
3427e724b26fSJohn Scipione 	float middle2Tint, float bottomTint, orientation orientation)
3428a884b43bSJohn Scipione {
3429a884b43bSJohn Scipione 	BGradientLinear gradient;
3430a884b43bSJohn Scipione 	_MakeGlossyGradient(gradient, rect, base, topTint, middle1Tint,
3431a884b43bSJohn Scipione 		middle2Tint, bottomTint, orientation);
3432a884b43bSJohn Scipione 	view->FillRect(rect, gradient);
3433a884b43bSJohn Scipione }
3434a884b43bSJohn Scipione 
3435a884b43bSJohn Scipione 
3436a884b43bSJohn Scipione void
3437a884b43bSJohn Scipione BControlLook::_MakeGradient(BGradientLinear& gradient, const BRect& rect,
3438a884b43bSJohn Scipione 	const rgb_color& base, float topTint, float bottomTint,
3439e724b26fSJohn Scipione 	orientation orientation) const
3440a884b43bSJohn Scipione {
3441a884b43bSJohn Scipione 	gradient.AddColor(tint_color(base, topTint), 0);
3442a884b43bSJohn Scipione 	gradient.AddColor(tint_color(base, bottomTint), 255);
34432f86ba45SStephan Aßmus 	gradient.SetStart(rect.LeftTop());
3444a884b43bSJohn Scipione 	if (orientation == B_HORIZONTAL)
3445a884b43bSJohn Scipione 		gradient.SetEnd(rect.LeftBottom());
3446a884b43bSJohn Scipione 	else
3447a884b43bSJohn Scipione 		gradient.SetEnd(rect.RightTop());
3448a884b43bSJohn Scipione }
34492f86ba45SStephan Aßmus 
34502f86ba45SStephan Aßmus 
3451a884b43bSJohn Scipione void
3452a884b43bSJohn Scipione BControlLook::_MakeGlossyGradient(BGradientLinear& gradient, const BRect& rect,
3453a884b43bSJohn Scipione 	const rgb_color& base, float topTint, float middle1Tint,
3454a884b43bSJohn Scipione 	float middle2Tint, float bottomTint,
3455e724b26fSJohn Scipione 	orientation orientation) const
3456a884b43bSJohn Scipione {
3457a884b43bSJohn Scipione 	gradient.AddColor(tint_color(base, topTint), 0);
3458a884b43bSJohn Scipione 	gradient.AddColor(tint_color(base, middle1Tint), 132);
3459a884b43bSJohn Scipione 	gradient.AddColor(tint_color(base, middle2Tint), 136);
3460a884b43bSJohn Scipione 	gradient.AddColor(tint_color(base, bottomTint), 255);
3461a884b43bSJohn Scipione 	gradient.SetStart(rect.LeftTop());
3462a884b43bSJohn Scipione 	if (orientation == B_HORIZONTAL)
3463a884b43bSJohn Scipione 		gradient.SetEnd(rect.LeftBottom());
3464a884b43bSJohn Scipione 	else
3465a884b43bSJohn Scipione 		gradient.SetEnd(rect.RightTop());
3466a884b43bSJohn Scipione }
3467a884b43bSJohn Scipione 
3468a884b43bSJohn Scipione 
3469a884b43bSJohn Scipione void
3470a884b43bSJohn Scipione BControlLook::_MakeButtonGradient(BGradientLinear& gradient, BRect& rect,
3471e724b26fSJohn Scipione 	const rgb_color& base, uint32 flags, orientation orientation) const
3472a884b43bSJohn Scipione {
3473a884b43bSJohn Scipione 	float topTint = 0.49;
3474a884b43bSJohn Scipione 	float middleTint1 = 0.62;
3475a884b43bSJohn Scipione 	float middleTint2 = 0.76;
3476a884b43bSJohn Scipione 	float bottomTint = 0.90;
3477a884b43bSJohn Scipione 
3478a884b43bSJohn Scipione 	if ((flags & B_ACTIVATED) != 0) {
3479a884b43bSJohn Scipione 		topTint = 1.11;
3480a884b43bSJohn Scipione 		bottomTint = 1.08;
3481a884b43bSJohn Scipione 	}
3482a884b43bSJohn Scipione 
3483a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
3484a884b43bSJohn Scipione 		topTint = (topTint + B_NO_TINT) / 2;
3485a884b43bSJohn Scipione 		middleTint1 = (middleTint1 + B_NO_TINT) / 2;
3486a884b43bSJohn Scipione 		middleTint2 = (middleTint2 + B_NO_TINT) / 2;
3487a884b43bSJohn Scipione 		bottomTint = (bottomTint + B_NO_TINT) / 2;
3488a884b43bSJohn Scipione 	} else if ((flags & B_HOVER) != 0) {
3489a884b43bSJohn Scipione 		topTint *= kHoverTintFactor;
3490a884b43bSJohn Scipione 		middleTint1 *= kHoverTintFactor;
3491a884b43bSJohn Scipione 		middleTint2 *= kHoverTintFactor;
3492a884b43bSJohn Scipione 		bottomTint *= kHoverTintFactor;
3493a884b43bSJohn Scipione 	}
3494a884b43bSJohn Scipione 
3495a884b43bSJohn Scipione 	if ((flags & B_ACTIVATED) != 0) {
3496a884b43bSJohn Scipione 		_MakeGradient(gradient, rect, base, topTint, bottomTint, orientation);
3497a884b43bSJohn Scipione 	} else {
3498a884b43bSJohn Scipione 		_MakeGlossyGradient(gradient, rect, base, topTint, middleTint1,
3499a884b43bSJohn Scipione 			middleTint2, bottomTint, orientation);
3500a884b43bSJohn Scipione 	}
3501a884b43bSJohn Scipione }
3502a884b43bSJohn Scipione 
3503a884b43bSJohn Scipione 
3504a884b43bSJohn Scipione 
3505a884b43bSJohn Scipione bool
3506a884b43bSJohn Scipione BControlLook::_RadioButtonAndCheckBoxMarkColor(const rgb_color& base,
3507a884b43bSJohn Scipione 	rgb_color& color, uint32 flags) const
3508a884b43bSJohn Scipione {
3509df37cd4eSIngo Weinhold 	if ((flags & (B_ACTIVATED | B_PARTIALLY_ACTIVATED | B_CLICKED)) == 0) {
3510a884b43bSJohn Scipione 		// no mark to be drawn at all
3511a884b43bSJohn Scipione 		return false;
3512a884b43bSJohn Scipione 	}
3513a884b43bSJohn Scipione 
35144bb5af76SJohn Scipione 	color = ui_color(B_CONTROL_MARK_COLOR);
3515a884b43bSJohn Scipione 
3516a884b43bSJohn Scipione 	float mix = 1.0;
3517a884b43bSJohn Scipione 
3518a884b43bSJohn Scipione 	if ((flags & B_DISABLED) != 0) {
3519a884b43bSJohn Scipione 		// activated, but disabled
3520a884b43bSJohn Scipione 		mix = 0.4;
3521a884b43bSJohn Scipione 	} else if ((flags & B_CLICKED) != 0) {
3522a884b43bSJohn Scipione 		if ((flags & B_ACTIVATED) != 0) {
3523df37cd4eSIngo Weinhold 			// losing activation
3524a884b43bSJohn Scipione 			mix = 0.7;
3525a884b43bSJohn Scipione 		} else {
3526df37cd4eSIngo Weinhold 			// becoming activated (or losing partial activation)
3527a884b43bSJohn Scipione 			mix = 0.3;
3528a884b43bSJohn Scipione 		}
3529df37cd4eSIngo Weinhold 	} else if ((flags & B_PARTIALLY_ACTIVATED) != 0) {
3530df37cd4eSIngo Weinhold 		// partially activated
3531df37cd4eSIngo Weinhold 		mix = 0.5;
3532a884b43bSJohn Scipione 	} else {
3533a884b43bSJohn Scipione 		// simply activated
3534a884b43bSJohn Scipione 	}
3535a884b43bSJohn Scipione 
3536a884b43bSJohn Scipione 	color.red = uint8(color.red * mix + base.red * (1.0 - mix));
3537a884b43bSJohn Scipione 	color.green = uint8(color.green * mix + base.green * (1.0 - mix));
3538a884b43bSJohn Scipione 	color.blue = uint8(color.blue * mix + base.blue * (1.0 - mix));
3539a884b43bSJohn Scipione 
3540a884b43bSJohn Scipione 	return true;
35412f86ba45SStephan Aßmus }
35422f86ba45SStephan Aßmus 
35432f86ba45SStephan Aßmus 
35442f86ba45SStephan Aßmus // NOTE: May come from a add-on in the future. Initialized in
35452f86ba45SStephan Aßmus // InterfaceDefs.cpp
35462f86ba45SStephan Aßmus BControlLook* be_control_look = NULL;
35472f86ba45SStephan Aßmus 
3548a884b43bSJohn Scipione 
35492f86ba45SStephan Aßmus } // namespace BPrivate
3550