12f86ba45SStephan Aßmus /* 22f86ba45SStephan Aßmus * Copyright 2009, Stephan Aßmus <superstippi@gmx.de> 32f86ba45SStephan Aßmus * Distributed under the terms of the MIT License. 42f86ba45SStephan Aßmus */ 52f86ba45SStephan Aßmus #include <ControlLook.h> 62f86ba45SStephan Aßmus 72f86ba45SStephan Aßmus #include <stdio.h> 82f86ba45SStephan Aßmus 92f86ba45SStephan Aßmus #include <Control.h> 102f86ba45SStephan Aßmus #include <GradientLinear.h> 112f86ba45SStephan Aßmus #include <Region.h> 122f86ba45SStephan Aßmus #include <Shape.h> 132f86ba45SStephan Aßmus #include <String.h> 142f86ba45SStephan Aßmus #include <View.h> 152f86ba45SStephan Aßmus 162f86ba45SStephan Aßmus namespace BPrivate { 172f86ba45SStephan Aßmus 182f86ba45SStephan Aßmus static const float kEdgeBevelLightTint = 0.59; 192f86ba45SStephan Aßmus static const float kEdgeBevelShadowTint = 1.0735; 202f86ba45SStephan Aßmus 212f86ba45SStephan Aßmus 222f86ba45SStephan Aßmus BControlLook::BControlLook() 232f86ba45SStephan Aßmus { 242f86ba45SStephan Aßmus } 252f86ba45SStephan Aßmus 262f86ba45SStephan Aßmus 272f86ba45SStephan Aßmus BControlLook::~BControlLook() 282f86ba45SStephan Aßmus { 292f86ba45SStephan Aßmus } 302f86ba45SStephan Aßmus 312f86ba45SStephan Aßmus 322f86ba45SStephan Aßmus BAlignment 332f86ba45SStephan Aßmus BControlLook::DefaultLabelAlignment() const 342f86ba45SStephan Aßmus { 352f86ba45SStephan Aßmus return BAlignment(B_ALIGN_LEFT, B_ALIGN_VERTICAL_CENTER); 362f86ba45SStephan Aßmus } 372f86ba45SStephan Aßmus 382f86ba45SStephan Aßmus 392f86ba45SStephan Aßmus float 402f86ba45SStephan Aßmus BControlLook::DefaultLabelSpacing() const 412f86ba45SStephan Aßmus { 422f86ba45SStephan Aßmus return 4.0;//ceilf(be_plain_font->Size() / 4.0); 432f86ba45SStephan Aßmus } 442f86ba45SStephan Aßmus 452f86ba45SStephan Aßmus 462f86ba45SStephan Aßmus uint32 472f86ba45SStephan Aßmus BControlLook::Flags(BControl* control) const 482f86ba45SStephan Aßmus { 492f86ba45SStephan Aßmus uint32 flags = 0; 502f86ba45SStephan Aßmus 512f86ba45SStephan Aßmus if (!control->IsEnabled()) 522f86ba45SStephan Aßmus flags |= B_DISABLED; 532f86ba45SStephan Aßmus 542f86ba45SStephan Aßmus if (control->IsFocus()) 552f86ba45SStephan Aßmus flags |= B_FOCUSED; 562f86ba45SStephan Aßmus 572f86ba45SStephan Aßmus if (control->Value() == B_CONTROL_ON) 582f86ba45SStephan Aßmus flags |= B_ACTIVATED; 592f86ba45SStephan Aßmus 602f86ba45SStephan Aßmus return flags; 612f86ba45SStephan Aßmus } 622f86ba45SStephan Aßmus 632f86ba45SStephan Aßmus 642f86ba45SStephan Aßmus // #pragma mark - 652f86ba45SStephan Aßmus 662f86ba45SStephan Aßmus 672f86ba45SStephan Aßmus void 682f86ba45SStephan Aßmus BControlLook::DrawButtonFrame(BView* view, BRect& rect, const BRect& updateRect, 69681c2e44SStephan Aßmus const rgb_color& base, const rgb_color& background, uint32 flags, 70681c2e44SStephan Aßmus uint32 borders) 712f86ba45SStephan Aßmus { 72681c2e44SStephan Aßmus _DrawButtonFrame(view, rect, updateRect, base, background, 1.0, 1.0, flags, 73681c2e44SStephan Aßmus borders); 742f86ba45SStephan Aßmus } 752f86ba45SStephan Aßmus 762f86ba45SStephan Aßmus 772f86ba45SStephan Aßmus void 782f86ba45SStephan Aßmus BControlLook::DrawButtonBackground(BView* view, BRect& rect, 792f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 802f86ba45SStephan Aßmus uint32 borders, enum orientation orientation) 812f86ba45SStephan Aßmus { 822f86ba45SStephan Aßmus if (!rect.IsValid() || !updateRect.Intersects(rect)) 832f86ba45SStephan Aßmus return; 842f86ba45SStephan Aßmus 852f86ba45SStephan Aßmus // the surface edges 862f86ba45SStephan Aßmus 872f86ba45SStephan Aßmus // colors 882f86ba45SStephan Aßmus rgb_color buttonBgColor = tint_color(base, B_LIGHTEN_1_TINT); 892f86ba45SStephan Aßmus rgb_color maxLightColor; 902f86ba45SStephan Aßmus 912f86ba45SStephan Aßmus rgb_color bevelColor1; 922f86ba45SStephan Aßmus rgb_color bevelColor2; 932f86ba45SStephan Aßmus 942f86ba45SStephan Aßmus if ((flags & B_DISABLED) == 0) { 952f86ba45SStephan Aßmus maxLightColor = tint_color(base, 0.2); 962f86ba45SStephan Aßmus bevelColor1 = tint_color(base, 1.08); 972f86ba45SStephan Aßmus bevelColor2 = base; 982f86ba45SStephan Aßmus } else { 992f86ba45SStephan Aßmus maxLightColor = tint_color(base, 0.7); 1002f86ba45SStephan Aßmus bevelColor1 = base; 1012f86ba45SStephan Aßmus bevelColor2 = buttonBgColor; 1022f86ba45SStephan Aßmus buttonBgColor = maxLightColor; 1032f86ba45SStephan Aßmus } 1042f86ba45SStephan Aßmus 1052f86ba45SStephan Aßmus if (flags & B_ACTIVATED) { 1062f86ba45SStephan Aßmus view->BeginLineArray(4); 1072f86ba45SStephan Aßmus 1082f86ba45SStephan Aßmus bevelColor1 = tint_color(bevelColor1, B_DARKEN_1_TINT); 1092f86ba45SStephan Aßmus bevelColor2 = tint_color(bevelColor2, B_DARKEN_1_TINT); 1102f86ba45SStephan Aßmus 1112f86ba45SStephan Aßmus // shadow along left/top borders 1122f86ba45SStephan Aßmus if (borders & B_LEFT_BORDER) { 1132f86ba45SStephan Aßmus view->AddLine(BPoint(rect.left, rect.top), 1142f86ba45SStephan Aßmus BPoint(rect.left, rect.bottom), bevelColor1); 1152f86ba45SStephan Aßmus rect.left++; 1162f86ba45SStephan Aßmus } 1172f86ba45SStephan Aßmus if (borders & B_TOP_BORDER) { 1182f86ba45SStephan Aßmus view->AddLine(BPoint(rect.left, rect.top), 1192f86ba45SStephan Aßmus BPoint(rect.right, rect.top), bevelColor1); 1202f86ba45SStephan Aßmus rect.top++; 1212f86ba45SStephan Aßmus } 1222f86ba45SStephan Aßmus 1232f86ba45SStephan Aßmus // softer shadow along left/top borders 1242f86ba45SStephan Aßmus if (borders & B_LEFT_BORDER) { 1252f86ba45SStephan Aßmus view->AddLine(BPoint(rect.left, rect.top), 1262f86ba45SStephan Aßmus BPoint(rect.left, rect.bottom), bevelColor2); 1272f86ba45SStephan Aßmus rect.left++; 1282f86ba45SStephan Aßmus } 1292f86ba45SStephan Aßmus if (borders & B_TOP_BORDER) { 1302f86ba45SStephan Aßmus view->AddLine(BPoint(rect.left, rect.top), 1312f86ba45SStephan Aßmus BPoint(rect.right, rect.top), bevelColor2); 1322f86ba45SStephan Aßmus rect.top++; 1332f86ba45SStephan Aßmus } 1342f86ba45SStephan Aßmus 1352f86ba45SStephan Aßmus view->EndLineArray(); 1362f86ba45SStephan Aßmus } else { 1372f86ba45SStephan Aßmus _DrawFrame(view, rect, 1382f86ba45SStephan Aßmus maxLightColor, maxLightColor, 1392f86ba45SStephan Aßmus bevelColor1, bevelColor1, 1402f86ba45SStephan Aßmus buttonBgColor, buttonBgColor, borders); 1412f86ba45SStephan Aßmus } 1422f86ba45SStephan Aßmus 1432f86ba45SStephan Aßmus // the actual surface top 1442f86ba45SStephan Aßmus 1452f86ba45SStephan Aßmus float topTint = 0.49; 1462f86ba45SStephan Aßmus float middleTint1 = 0.62; 1472f86ba45SStephan Aßmus float middleTint2 = 0.76; 1482f86ba45SStephan Aßmus float bottomTint = 0.90; 1492f86ba45SStephan Aßmus 1502f86ba45SStephan Aßmus if (flags & B_ACTIVATED) { 1512f86ba45SStephan Aßmus topTint = 1.11; 1522f86ba45SStephan Aßmus bottomTint = 1.08; 1532f86ba45SStephan Aßmus } 1542f86ba45SStephan Aßmus 1552f86ba45SStephan Aßmus if (flags & B_DISABLED) { 1562f86ba45SStephan Aßmus topTint = (topTint + B_NO_TINT) / 2; 1572f86ba45SStephan Aßmus middleTint1 = (middleTint1 + B_NO_TINT) / 2; 1582f86ba45SStephan Aßmus middleTint2 = (middleTint2 + B_NO_TINT) / 2; 1592f86ba45SStephan Aßmus bottomTint = (bottomTint + B_NO_TINT) / 2; 1602f86ba45SStephan Aßmus } else if (flags & B_HOVER) { 1612f86ba45SStephan Aßmus static const float kHoverTintFactor = 0.85; 1622f86ba45SStephan Aßmus topTint *= kHoverTintFactor; 1632f86ba45SStephan Aßmus middleTint1 *= kHoverTintFactor; 1642f86ba45SStephan Aßmus middleTint2 *= kHoverTintFactor; 1652f86ba45SStephan Aßmus bottomTint *= kHoverTintFactor; 1662f86ba45SStephan Aßmus } 1672f86ba45SStephan Aßmus 1682f86ba45SStephan Aßmus if (flags & B_ACTIVATED) { 1692f86ba45SStephan Aßmus _FillGradient(view, rect, base, topTint, bottomTint, orientation); 1702f86ba45SStephan Aßmus } else { 1712f86ba45SStephan Aßmus _FillGlossyGradient(view, rect, base, topTint, middleTint1, 1722f86ba45SStephan Aßmus middleTint2, bottomTint, orientation); 1732f86ba45SStephan Aßmus } 1742f86ba45SStephan Aßmus } 1752f86ba45SStephan Aßmus 1762f86ba45SStephan Aßmus 1772f86ba45SStephan Aßmus void 1782f86ba45SStephan Aßmus BControlLook::DrawMenuBarBackground(BView* view, BRect& rect, 1791a72cb41SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 1801a72cb41SStephan Aßmus uint32 borders) 1812f86ba45SStephan Aßmus { 1822f86ba45SStephan Aßmus if (!rect.IsValid() || !updateRect.Intersects(rect)) 1832f86ba45SStephan Aßmus return; 1842f86ba45SStephan Aßmus 1852f86ba45SStephan Aßmus // the surface edges 1862f86ba45SStephan Aßmus 1872f86ba45SStephan Aßmus // colors 1881a72cb41SStephan Aßmus float topTint; 1891a72cb41SStephan Aßmus float bottomTint; 1901a72cb41SStephan Aßmus 1911a72cb41SStephan Aßmus if (flags & B_ACTIVATED) { 1921a72cb41SStephan Aßmus rgb_color bevelColor1 = tint_color(base, 1.40); 1931a72cb41SStephan Aßmus rgb_color bevelColor2 = tint_color(base, 1.25); 1941a72cb41SStephan Aßmus 1951a72cb41SStephan Aßmus topTint = 1.25; 1961a72cb41SStephan Aßmus bottomTint = 1.20; 1972f86ba45SStephan Aßmus 1982f86ba45SStephan Aßmus _DrawFrame(view, rect, 1991a72cb41SStephan Aßmus bevelColor1, bevelColor1, 2001a72cb41SStephan Aßmus bevelColor2, bevelColor2, 2011a72cb41SStephan Aßmus borders & B_TOP_BORDER); 2021a72cb41SStephan Aßmus } else { 2031a72cb41SStephan Aßmus rgb_color cornerColor = tint_color(base, 0.9); 2041a72cb41SStephan Aßmus rgb_color bevelColorTop = tint_color(base, 0.5); 2051a72cb41SStephan Aßmus rgb_color bevelColorLeft = tint_color(base, 0.7); 2061a72cb41SStephan Aßmus rgb_color bevelColorRightBottom = tint_color(base, 1.08); 2071a72cb41SStephan Aßmus 2081a72cb41SStephan Aßmus topTint = 0.69; 2091a72cb41SStephan Aßmus bottomTint = 1.03; 2101a72cb41SStephan Aßmus 2111a72cb41SStephan Aßmus _DrawFrame(view, rect, 2121a72cb41SStephan Aßmus bevelColorLeft, bevelColorTop, 2131a72cb41SStephan Aßmus bevelColorRightBottom, bevelColorRightBottom, 2142f86ba45SStephan Aßmus cornerColor, cornerColor, 2152f86ba45SStephan Aßmus borders); 2161a72cb41SStephan Aßmus } 2172f86ba45SStephan Aßmus 2182f86ba45SStephan Aßmus // the actual surface top 2192f86ba45SStephan Aßmus 2202f86ba45SStephan Aßmus _FillGradient(view, rect, base, topTint, bottomTint); 2212f86ba45SStephan Aßmus } 2222f86ba45SStephan Aßmus 2232f86ba45SStephan Aßmus 2242f86ba45SStephan Aßmus void 225681c2e44SStephan Aßmus BControlLook::DrawMenuFieldFrame(BView* view, BRect& rect, 226681c2e44SStephan Aßmus const BRect& updateRect, const rgb_color& base, 227681c2e44SStephan Aßmus const rgb_color& background, uint32 flags, uint32 borders) 22813cd46dfSStephan Aßmus { 229681c2e44SStephan Aßmus _DrawButtonFrame(view, rect, updateRect, base, background, 0.6, 1.0, flags, 230681c2e44SStephan Aßmus borders); 23113cd46dfSStephan Aßmus } 23213cd46dfSStephan Aßmus 23313cd46dfSStephan Aßmus 23413cd46dfSStephan Aßmus void 2352f86ba45SStephan Aßmus BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect, 2362f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, bool popupIndicator, 2372f86ba45SStephan Aßmus uint32 flags) 2382f86ba45SStephan Aßmus { 2392f86ba45SStephan Aßmus if (popupIndicator) { 2402f86ba45SStephan Aßmus BRect leftRect(rect); 2412f86ba45SStephan Aßmus leftRect.right -= 10; 2422f86ba45SStephan Aßmus 2432f86ba45SStephan Aßmus BRect rightRect(rect); 2442f86ba45SStephan Aßmus rightRect.left = rightRect.right - 9; 2452f86ba45SStephan Aßmus 2462f86ba45SStephan Aßmus DrawMenuFieldBackground(view, leftRect, updateRect, base, flags, 2472f86ba45SStephan Aßmus B_LEFT_BORDER | B_TOP_BORDER | B_BOTTOM_BORDER); 2482f86ba45SStephan Aßmus 2492f86ba45SStephan Aßmus rgb_color indicatorBase; 2502f86ba45SStephan Aßmus rgb_color markColor; 2512f86ba45SStephan Aßmus if (flags & B_DISABLED) { 2522f86ba45SStephan Aßmus indicatorBase = tint_color(base, 1.05); 25313cd46dfSStephan Aßmus markColor = tint_color(base, 1.35); 2542f86ba45SStephan Aßmus } else { 25513cd46dfSStephan Aßmus indicatorBase = tint_color(base, 1.12); 25613cd46dfSStephan Aßmus markColor = tint_color(base, 1.65); 2572f86ba45SStephan Aßmus } 2582f86ba45SStephan Aßmus 2592f86ba45SStephan Aßmus DrawMenuFieldBackground(view, rightRect, updateRect, indicatorBase, 2602f86ba45SStephan Aßmus flags, B_RIGHT_BORDER | B_TOP_BORDER | B_BOTTOM_BORDER); 2612f86ba45SStephan Aßmus 2622f86ba45SStephan Aßmus // popup marker 2632f86ba45SStephan Aßmus BPoint center(roundf((rightRect.left + rightRect.right) / 2.0), 2642f86ba45SStephan Aßmus roundf((rightRect.top + rightRect.bottom) / 2.0)); 2652f86ba45SStephan Aßmus BPoint triangle[3]; 2662f86ba45SStephan Aßmus triangle[0] = center + BPoint(-2.5, -0.5); 2672f86ba45SStephan Aßmus triangle[1] = center + BPoint(2.5, -0.5); 2682f86ba45SStephan Aßmus triangle[2] = center + BPoint(0.0, 2.0); 2692f86ba45SStephan Aßmus 2702f86ba45SStephan Aßmus uint32 viewFlags = view->Flags(); 2712f86ba45SStephan Aßmus view->SetFlags(viewFlags | B_SUBPIXEL_PRECISE); 2722f86ba45SStephan Aßmus 2732f86ba45SStephan Aßmus view->SetHighColor(markColor); 2742f86ba45SStephan Aßmus view->FillTriangle(triangle[0], triangle[1], triangle[2]); 2752f86ba45SStephan Aßmus 2762f86ba45SStephan Aßmus view->SetFlags(viewFlags); 2772f86ba45SStephan Aßmus 2782f86ba45SStephan Aßmus rect = leftRect; 2792f86ba45SStephan Aßmus } else { 2802f86ba45SStephan Aßmus DrawMenuFieldBackground(view, rect, updateRect, base, flags); 2812f86ba45SStephan Aßmus } 2822f86ba45SStephan Aßmus } 2832f86ba45SStephan Aßmus 2842f86ba45SStephan Aßmus void 2852f86ba45SStephan Aßmus BControlLook::DrawMenuFieldBackground(BView* view, BRect& rect, 2862f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 2872f86ba45SStephan Aßmus uint32 borders) 2882f86ba45SStephan Aßmus { 2892f86ba45SStephan Aßmus if (!rect.IsValid() || !updateRect.Intersects(rect)) 2902f86ba45SStephan Aßmus return; 2912f86ba45SStephan Aßmus 2922f86ba45SStephan Aßmus // the surface edges 2932f86ba45SStephan Aßmus 2942f86ba45SStephan Aßmus // colors 2952f86ba45SStephan Aßmus rgb_color cornerColor = tint_color(base, 0.85); 2962f86ba45SStephan Aßmus rgb_color bevelColor1 = tint_color(base, 0.3); 2972f86ba45SStephan Aßmus rgb_color bevelColor2 = tint_color(base, 0.5); 2982f86ba45SStephan Aßmus rgb_color bevelColor3 = tint_color(base, 1.03); 2992f86ba45SStephan Aßmus 3002f86ba45SStephan Aßmus if (flags & B_DISABLED) { 3012f86ba45SStephan Aßmus cornerColor = tint_color(base, 0.8); 3022f86ba45SStephan Aßmus bevelColor1 = tint_color(base, 0.7); 3032f86ba45SStephan Aßmus bevelColor2 = tint_color(base, 0.8); 3042f86ba45SStephan Aßmus bevelColor3 = tint_color(base, 1.01); 3052f86ba45SStephan Aßmus } else { 3062f86ba45SStephan Aßmus cornerColor = tint_color(base, 0.85); 3072f86ba45SStephan Aßmus bevelColor1 = tint_color(base, 0.3); 3082f86ba45SStephan Aßmus bevelColor2 = tint_color(base, 0.5); 3092f86ba45SStephan Aßmus bevelColor3 = tint_color(base, 1.03); 3102f86ba45SStephan Aßmus } 3112f86ba45SStephan Aßmus 3122f86ba45SStephan Aßmus _DrawFrame(view, rect, 3132f86ba45SStephan Aßmus bevelColor2, bevelColor1, 3142f86ba45SStephan Aßmus bevelColor3, bevelColor3, 3152f86ba45SStephan Aßmus cornerColor, cornerColor, 3162f86ba45SStephan Aßmus borders); 3172f86ba45SStephan Aßmus 3182f86ba45SStephan Aßmus // the actual surface top 3192f86ba45SStephan Aßmus 3202f86ba45SStephan Aßmus float topTint = 0.49; 3212f86ba45SStephan Aßmus float middleTint1 = 0.62; 3222f86ba45SStephan Aßmus float middleTint2 = 0.76; 3232f86ba45SStephan Aßmus float bottomTint = 0.90; 3242f86ba45SStephan Aßmus 3252f86ba45SStephan Aßmus if (flags & B_DISABLED) { 3262f86ba45SStephan Aßmus topTint = (topTint + B_NO_TINT) / 2; 3272f86ba45SStephan Aßmus middleTint1 = (middleTint1 + B_NO_TINT) / 2; 3282f86ba45SStephan Aßmus middleTint2 = (middleTint2 + B_NO_TINT) / 2; 3292f86ba45SStephan Aßmus bottomTint = (bottomTint + B_NO_TINT) / 2; 3302f86ba45SStephan Aßmus } else if (flags & B_HOVER) { 3312f86ba45SStephan Aßmus static const float kHoverTintFactor = 0.85; 3322f86ba45SStephan Aßmus topTint *= kHoverTintFactor; 3332f86ba45SStephan Aßmus middleTint1 *= kHoverTintFactor; 3342f86ba45SStephan Aßmus middleTint2 *= kHoverTintFactor; 3352f86ba45SStephan Aßmus bottomTint *= kHoverTintFactor; 3362f86ba45SStephan Aßmus } 3372f86ba45SStephan Aßmus 3382f86ba45SStephan Aßmus _FillGlossyGradient(view, rect, base, topTint, middleTint1, 3392f86ba45SStephan Aßmus middleTint2, bottomTint); 3402f86ba45SStephan Aßmus } 3412f86ba45SStephan Aßmus 3422f86ba45SStephan Aßmus void 3432f86ba45SStephan Aßmus BControlLook::DrawMenuBackground(BView* view, BRect& rect, 3442f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 3452f86ba45SStephan Aßmus uint32 borders) 3462f86ba45SStephan Aßmus { 3472f86ba45SStephan Aßmus if (!rect.IsValid() || !updateRect.Intersects(rect)) 3482f86ba45SStephan Aßmus return; 3492f86ba45SStephan Aßmus 3502f86ba45SStephan Aßmus // the surface edges 3512f86ba45SStephan Aßmus 3522f86ba45SStephan Aßmus rgb_color bevelLightColor; 3532f86ba45SStephan Aßmus rgb_color bevelShadowColor; 3542f86ba45SStephan Aßmus rgb_color background = tint_color(base, 0.75); 3552f86ba45SStephan Aßmus 3562f86ba45SStephan Aßmus if (flags & B_DISABLED) { 3572f86ba45SStephan Aßmus bevelLightColor = tint_color(background, 0.80); 3582f86ba45SStephan Aßmus bevelShadowColor = tint_color(background, 1.07); 3592f86ba45SStephan Aßmus } else { 3602f86ba45SStephan Aßmus bevelLightColor = tint_color(background, 0.6); 3612f86ba45SStephan Aßmus bevelShadowColor = tint_color(background, 1.12); 3622f86ba45SStephan Aßmus } 3632f86ba45SStephan Aßmus 3642f86ba45SStephan Aßmus _DrawFrame(view, rect, 3652f86ba45SStephan Aßmus bevelLightColor, bevelLightColor, 3662f86ba45SStephan Aßmus bevelShadowColor, bevelShadowColor, 3672f86ba45SStephan Aßmus borders); 3682f86ba45SStephan Aßmus 3692f86ba45SStephan Aßmus // the actual surface top 3702f86ba45SStephan Aßmus 3712f86ba45SStephan Aßmus view->SetHighColor(background); 3722f86ba45SStephan Aßmus view->FillRect(rect); 3732f86ba45SStephan Aßmus } 3742f86ba45SStephan Aßmus 3752f86ba45SStephan Aßmus 3762f86ba45SStephan Aßmus void 3772f86ba45SStephan Aßmus BControlLook::DrawMenuItemBackground(BView* view, BRect& rect, 3782f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 3792f86ba45SStephan Aßmus uint32 borders) 3802f86ba45SStephan Aßmus { 3812f86ba45SStephan Aßmus if (!rect.IsValid() || !updateRect.Intersects(rect)) 3822f86ba45SStephan Aßmus return; 3832f86ba45SStephan Aßmus 3842f86ba45SStephan Aßmus // the surface edges 3852f86ba45SStephan Aßmus 3862f86ba45SStephan Aßmus float topTint; 3872f86ba45SStephan Aßmus float bottomTint; 3882f86ba45SStephan Aßmus rgb_color selectedColor = base; 3892f86ba45SStephan Aßmus 3902f86ba45SStephan Aßmus if (flags & B_ACTIVATED) { 3912f86ba45SStephan Aßmus topTint = 0.9; 3922f86ba45SStephan Aßmus bottomTint = 1.05; 3932f86ba45SStephan Aßmus selectedColor = tint_color(base, 1.26); 3942f86ba45SStephan Aßmus } else if (flags & B_DISABLED) { 3952f86ba45SStephan Aßmus topTint = 0.80; 3962f86ba45SStephan Aßmus bottomTint = 1.07; 3972f86ba45SStephan Aßmus } else { 3982f86ba45SStephan Aßmus topTint = 0.6; 3992f86ba45SStephan Aßmus bottomTint = 1.12; 4002f86ba45SStephan Aßmus } 4012f86ba45SStephan Aßmus 4022f86ba45SStephan Aßmus rgb_color bevelLightColor = tint_color(selectedColor, topTint); 4032f86ba45SStephan Aßmus rgb_color bevelShadowColor = tint_color(selectedColor, bottomTint); 4042f86ba45SStephan Aßmus 4052f86ba45SStephan Aßmus _DrawFrame(view, rect, 4062f86ba45SStephan Aßmus bevelLightColor, bevelLightColor, 4072f86ba45SStephan Aßmus bevelShadowColor, bevelShadowColor, 4082f86ba45SStephan Aßmus borders); 4092f86ba45SStephan Aßmus 4102f86ba45SStephan Aßmus // the actual surface top 4112f86ba45SStephan Aßmus 4122f86ba45SStephan Aßmus view->SetLowColor(selectedColor); 4132f86ba45SStephan Aßmus // _FillGradient(view, rect, selectedColor, topTint, bottomTint); 4142f86ba45SStephan Aßmus _FillGradient(view, rect, selectedColor, bottomTint, topTint); 4152f86ba45SStephan Aßmus } 4162f86ba45SStephan Aßmus 4172f86ba45SStephan Aßmus 4182f86ba45SStephan Aßmus void 4192f86ba45SStephan Aßmus BControlLook::DrawStatusBar(BView* view, BRect& rect, const BRect& updateRect, 4202f86ba45SStephan Aßmus const rgb_color& base, const rgb_color& barColor, float progressPosition) 4212f86ba45SStephan Aßmus { 4222f86ba45SStephan Aßmus if (!rect.Intersects(updateRect)) 4232f86ba45SStephan Aßmus return; 4242f86ba45SStephan Aßmus 4252f86ba45SStephan Aßmus _DrawOuterResessedFrame(view, rect, base, 0.6); 4262f86ba45SStephan Aßmus 4272f86ba45SStephan Aßmus // colors 4282f86ba45SStephan Aßmus rgb_color dark1BorderColor = tint_color(base, 1.3); 4292f86ba45SStephan Aßmus rgb_color dark2BorderColor = tint_color(base, 1.2); 4302f86ba45SStephan Aßmus rgb_color dark1FilledBorderColor = tint_color(barColor, 1.20); 4312f86ba45SStephan Aßmus rgb_color dark2FilledBorderColor = tint_color(barColor, 1.45); 4322f86ba45SStephan Aßmus 4332f86ba45SStephan Aßmus BRect filledRect(rect); 4342f86ba45SStephan Aßmus filledRect.right = progressPosition - 1; 4352f86ba45SStephan Aßmus 4362f86ba45SStephan Aßmus BRect nonfilledRect(rect); 4372f86ba45SStephan Aßmus nonfilledRect.left = progressPosition; 4382f86ba45SStephan Aßmus 4392f86ba45SStephan Aßmus bool filledSurface = filledRect.Width() > 0; 4402f86ba45SStephan Aßmus bool nonfilledSurface = nonfilledRect.Width() > 0; 4412f86ba45SStephan Aßmus 4422f86ba45SStephan Aßmus if (filledSurface) { 4432f86ba45SStephan Aßmus _DrawFrame(view, filledRect, 4442f86ba45SStephan Aßmus dark1FilledBorderColor, dark1FilledBorderColor, 4452f86ba45SStephan Aßmus dark2FilledBorderColor, dark2FilledBorderColor); 4462f86ba45SStephan Aßmus 4472f86ba45SStephan Aßmus _FillGlossyGradient(view, filledRect, barColor, 0.55, 0.68, 0.76, 0.90); 4482f86ba45SStephan Aßmus } 4492f86ba45SStephan Aßmus 4502f86ba45SStephan Aßmus if (nonfilledSurface) { 4512f86ba45SStephan Aßmus _DrawFrame(view, nonfilledRect, dark1BorderColor, dark1BorderColor, 4522f86ba45SStephan Aßmus dark2BorderColor, dark2BorderColor, 4532f86ba45SStephan Aßmus B_TOP_BORDER | B_BOTTOM_BORDER | B_RIGHT_BORDER); 4542f86ba45SStephan Aßmus 4552f86ba45SStephan Aßmus if (nonfilledRect.left < nonfilledRect.right) { 4562f86ba45SStephan Aßmus // shadow from fill bar, or left border 4572f86ba45SStephan Aßmus rgb_color leftBorder = dark1BorderColor; 4582f86ba45SStephan Aßmus if (filledSurface) 4592f86ba45SStephan Aßmus leftBorder = tint_color(base, 0.50); 4602f86ba45SStephan Aßmus view->SetHighColor(leftBorder); 4612f86ba45SStephan Aßmus view->StrokeLine(nonfilledRect.LeftTop(), 4622f86ba45SStephan Aßmus nonfilledRect.LeftBottom()); 4632f86ba45SStephan Aßmus nonfilledRect.left++; 4642f86ba45SStephan Aßmus } 4652f86ba45SStephan Aßmus 4662f86ba45SStephan Aßmus _FillGradient(view, nonfilledRect, base, 0.25, 0.06); 4672f86ba45SStephan Aßmus } 4682f86ba45SStephan Aßmus } 4692f86ba45SStephan Aßmus 4702f86ba45SStephan Aßmus 4712f86ba45SStephan Aßmus void 4722f86ba45SStephan Aßmus BControlLook::DrawCheckBox(BView* view, BRect& rect, const BRect& updateRect, 4732f86ba45SStephan Aßmus const rgb_color& base, uint32 flags) 4742f86ba45SStephan Aßmus { 4752f86ba45SStephan Aßmus if (!rect.Intersects(updateRect)) 4762f86ba45SStephan Aßmus return; 4772f86ba45SStephan Aßmus 4782f86ba45SStephan Aßmus rgb_color dark1BorderColor; 4792f86ba45SStephan Aßmus rgb_color dark2BorderColor; 4802f86ba45SStephan Aßmus rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR); 4812f86ba45SStephan Aßmus 4822f86ba45SStephan Aßmus if (flags & B_DISABLED) { 483*4f579098SStephan Aßmus _DrawOuterResessedFrame(view, rect, base, 0.0, 1.0, flags); 4842f86ba45SStephan Aßmus 4852f86ba45SStephan Aßmus dark1BorderColor = tint_color(base, 1.15); 4862f86ba45SStephan Aßmus dark2BorderColor = tint_color(base, 1.15); 4872f86ba45SStephan Aßmus } else if (flags & B_CLICKED) { 4882f86ba45SStephan Aßmus dark1BorderColor = tint_color(base, 1.50); 4892f86ba45SStephan Aßmus dark2BorderColor = tint_color(base, 1.48); 4902f86ba45SStephan Aßmus 4912f86ba45SStephan Aßmus _DrawFrame(view, rect, 4922f86ba45SStephan Aßmus dark1BorderColor, dark1BorderColor, 4932f86ba45SStephan Aßmus dark2BorderColor, dark2BorderColor); 4942f86ba45SStephan Aßmus 4952f86ba45SStephan Aßmus dark2BorderColor = dark1BorderColor; 4962f86ba45SStephan Aßmus } else { 497*4f579098SStephan Aßmus _DrawOuterResessedFrame(view, rect, base, 0.6, 1.0, flags); 4982f86ba45SStephan Aßmus 4992f86ba45SStephan Aßmus dark1BorderColor = tint_color(base, 1.40); 5002f86ba45SStephan Aßmus dark2BorderColor = tint_color(base, 1.38); 5012f86ba45SStephan Aßmus } 5022f86ba45SStephan Aßmus 5032f86ba45SStephan Aßmus if (flags & B_FOCUSED) { 5042f86ba45SStephan Aßmus dark1BorderColor = navigationColor; 5052f86ba45SStephan Aßmus dark2BorderColor = navigationColor; 5062f86ba45SStephan Aßmus } 5072f86ba45SStephan Aßmus 5082f86ba45SStephan Aßmus _DrawFrame(view, rect, 5092f86ba45SStephan Aßmus dark1BorderColor, dark1BorderColor, 5102f86ba45SStephan Aßmus dark2BorderColor, dark2BorderColor); 5112f86ba45SStephan Aßmus 5122f86ba45SStephan Aßmus if (flags & B_DISABLED) { 5132f86ba45SStephan Aßmus _FillGradient(view, rect, base, 0.4, 0.2); 5142f86ba45SStephan Aßmus } else { 5152f86ba45SStephan Aßmus _FillGradient(view, rect, base, 0.15, 0.0); 5162f86ba45SStephan Aßmus } 5172f86ba45SStephan Aßmus 5182f86ba45SStephan Aßmus rgb_color markColor; 5192f86ba45SStephan Aßmus if (_RadioButtonAndCheckBoxMarkColor(base, markColor, flags)) { 5202f86ba45SStephan Aßmus view->SetHighColor(markColor); 5212f86ba45SStephan Aßmus 5222f86ba45SStephan Aßmus rect.InsetBy(2, 2); 5232f86ba45SStephan Aßmus view->SetPenSize(max_c(1.0, ceilf(rect.Width() / 3.5))); 5242f86ba45SStephan Aßmus view->SetDrawingMode(B_OP_OVER); 5252f86ba45SStephan Aßmus 5262f86ba45SStephan Aßmus view->StrokeLine(rect.LeftTop(), rect.RightBottom()); 5272f86ba45SStephan Aßmus view->StrokeLine(rect.LeftBottom(), rect.RightTop()); 5282f86ba45SStephan Aßmus } 5292f86ba45SStephan Aßmus } 5302f86ba45SStephan Aßmus 5312f86ba45SStephan Aßmus 5322f86ba45SStephan Aßmus void 5332f86ba45SStephan Aßmus BControlLook::DrawRadioButton(BView* view, BRect& rect, const BRect& updateRect, 5342f86ba45SStephan Aßmus const rgb_color& base, uint32 flags) 5352f86ba45SStephan Aßmus { 5362f86ba45SStephan Aßmus if (!rect.Intersects(updateRect)) 5372f86ba45SStephan Aßmus return; 5382f86ba45SStephan Aßmus 5392f86ba45SStephan Aßmus rgb_color borderColor; 5402f86ba45SStephan Aßmus rgb_color bevelLight; 5412f86ba45SStephan Aßmus rgb_color bevelShadow; 5422f86ba45SStephan Aßmus rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR); 5432f86ba45SStephan Aßmus 5442f86ba45SStephan Aßmus if (flags & B_DISABLED) { 5452f86ba45SStephan Aßmus borderColor = tint_color(base, 1.15); 5462f86ba45SStephan Aßmus bevelLight = base; 5472f86ba45SStephan Aßmus bevelShadow = base; 5482f86ba45SStephan Aßmus } else if (flags & B_CLICKED) { 5492f86ba45SStephan Aßmus borderColor = tint_color(base, 1.50); 5502f86ba45SStephan Aßmus bevelLight = borderColor; 5512f86ba45SStephan Aßmus bevelShadow = borderColor; 5522f86ba45SStephan Aßmus } else { 5532f86ba45SStephan Aßmus borderColor = tint_color(base, 1.45); 5542f86ba45SStephan Aßmus bevelLight = tint_color(base, 0.55); 5552f86ba45SStephan Aßmus bevelShadow = tint_color(base, 1.11); 5562f86ba45SStephan Aßmus } 5572f86ba45SStephan Aßmus 5582f86ba45SStephan Aßmus if (flags & B_FOCUSED) { 5592f86ba45SStephan Aßmus borderColor = navigationColor; 5602f86ba45SStephan Aßmus } 5612f86ba45SStephan Aßmus 5622f86ba45SStephan Aßmus BGradientLinear bevelGradient; 5632f86ba45SStephan Aßmus bevelGradient.AddColor(bevelShadow, 0); 5642f86ba45SStephan Aßmus bevelGradient.AddColor(bevelLight, 255); 5652f86ba45SStephan Aßmus bevelGradient.SetStart(rect.LeftTop()); 5662f86ba45SStephan Aßmus bevelGradient.SetEnd(rect.RightBottom()); 5672f86ba45SStephan Aßmus 5682f86ba45SStephan Aßmus view->FillEllipse(rect, bevelGradient); 5692f86ba45SStephan Aßmus rect.InsetBy(1, 1); 5702f86ba45SStephan Aßmus 5712f86ba45SStephan Aßmus bevelGradient.MakeEmpty(); 5722f86ba45SStephan Aßmus bevelGradient.AddColor(borderColor, 0); 5732f86ba45SStephan Aßmus bevelGradient.AddColor(tint_color(borderColor, 0.8), 255); 5742f86ba45SStephan Aßmus view->FillEllipse(rect, bevelGradient); 5752f86ba45SStephan Aßmus rect.InsetBy(1, 1); 5762f86ba45SStephan Aßmus 5772f86ba45SStephan Aßmus float topTint; 5782f86ba45SStephan Aßmus float bottomTint; 5792f86ba45SStephan Aßmus if (flags & B_DISABLED) { 5802f86ba45SStephan Aßmus topTint = 0.4; 5812f86ba45SStephan Aßmus bottomTint = 0.2; 5822f86ba45SStephan Aßmus } else { 5832f86ba45SStephan Aßmus topTint = 0.15; 5842f86ba45SStephan Aßmus bottomTint = 0.0; 5852f86ba45SStephan Aßmus } 5862f86ba45SStephan Aßmus 5872f86ba45SStephan Aßmus BGradientLinear gradient; 5882f86ba45SStephan Aßmus _MakeGradient(gradient, rect, base, topTint, bottomTint); 5892f86ba45SStephan Aßmus view->FillEllipse(rect, gradient); 5902f86ba45SStephan Aßmus 5912f86ba45SStephan Aßmus rgb_color markColor; 5922f86ba45SStephan Aßmus if (_RadioButtonAndCheckBoxMarkColor(base, markColor, flags)) { 5932f86ba45SStephan Aßmus view->SetHighColor(markColor); 5942f86ba45SStephan Aßmus rect.InsetBy(3, 3); 5952f86ba45SStephan Aßmus view->FillEllipse(rect); 5962f86ba45SStephan Aßmus } 5972f86ba45SStephan Aßmus } 5982f86ba45SStephan Aßmus 5992f86ba45SStephan Aßmus 6002f86ba45SStephan Aßmus void 6012f86ba45SStephan Aßmus BControlLook::DrawScrollBarBackground(BView* view, BRect& rect1, BRect& rect2, 6022f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 6032f86ba45SStephan Aßmus enum orientation orientation) 6042f86ba45SStephan Aßmus { 6052f86ba45SStephan Aßmus DrawScrollBarBackground(view, rect1, updateRect, base, flags, orientation); 6062f86ba45SStephan Aßmus DrawScrollBarBackground(view, rect2, updateRect, base, flags, orientation); 6072f86ba45SStephan Aßmus } 6082f86ba45SStephan Aßmus 6092f86ba45SStephan Aßmus void 6102f86ba45SStephan Aßmus BControlLook::DrawScrollBarBackground(BView* view, BRect& rect, 6112f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 6122f86ba45SStephan Aßmus enum orientation orientation) 6132f86ba45SStephan Aßmus { 6142f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 6152f86ba45SStephan Aßmus return; 6162f86ba45SStephan Aßmus 6172f86ba45SStephan Aßmus float gradient1Tint; 6182f86ba45SStephan Aßmus float gradient2Tint; 6192f86ba45SStephan Aßmus float darkEdge1Tint; 6202f86ba45SStephan Aßmus float darkEdge2Tint; 6212f86ba45SStephan Aßmus float shadowTint; 6222f86ba45SStephan Aßmus 6232f86ba45SStephan Aßmus if (flags & B_DISABLED) { 6242f86ba45SStephan Aßmus gradient1Tint = 0.9; 6252f86ba45SStephan Aßmus gradient2Tint = 0.8; 6262f86ba45SStephan Aßmus darkEdge1Tint = B_DARKEN_2_TINT; 6272f86ba45SStephan Aßmus darkEdge2Tint = B_DARKEN_2_TINT; 6282f86ba45SStephan Aßmus shadowTint = gradient1Tint; 6292f86ba45SStephan Aßmus } else { 6302f86ba45SStephan Aßmus gradient1Tint = 1.10; 6312f86ba45SStephan Aßmus gradient2Tint = 1.05; 6322f86ba45SStephan Aßmus darkEdge1Tint = B_DARKEN_3_TINT; 6332f86ba45SStephan Aßmus darkEdge2Tint = B_DARKEN_2_TINT; 6342f86ba45SStephan Aßmus shadowTint = gradient1Tint; 6352f86ba45SStephan Aßmus } 6362f86ba45SStephan Aßmus 6372f86ba45SStephan Aßmus rgb_color darkEdge1 = tint_color(base, darkEdge1Tint); 6382f86ba45SStephan Aßmus rgb_color darkEdge2 = tint_color(base, darkEdge2Tint); 6392f86ba45SStephan Aßmus rgb_color shadow = tint_color(base, shadowTint); 6402f86ba45SStephan Aßmus 6412f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) { 6422f86ba45SStephan Aßmus // dark vertical line on left edge 6432f86ba45SStephan Aßmus if (rect.Width() > 0) { 6442f86ba45SStephan Aßmus view->SetHighColor(darkEdge1); 6452f86ba45SStephan Aßmus view->StrokeLine(rect.LeftTop(), rect.LeftBottom()); 6462f86ba45SStephan Aßmus rect.left++; 6472f86ba45SStephan Aßmus } 6482f86ba45SStephan Aßmus // dark vertical line on right edge 6492f86ba45SStephan Aßmus if (rect.Width() >= 0) { 6502f86ba45SStephan Aßmus view->SetHighColor(darkEdge2); 6512f86ba45SStephan Aßmus view->StrokeLine(rect.RightTop(), rect.RightBottom()); 6522f86ba45SStephan Aßmus rect.right--; 6532f86ba45SStephan Aßmus } 6542f86ba45SStephan Aßmus // vertical shadow line after left edge 6552f86ba45SStephan Aßmus if (rect.Width() >= 0) { 6562f86ba45SStephan Aßmus view->SetHighColor(shadow); 6572f86ba45SStephan Aßmus view->StrokeLine(rect.LeftTop(), rect.LeftBottom()); 6582f86ba45SStephan Aßmus rect.left++; 6592f86ba45SStephan Aßmus } 6602f86ba45SStephan Aßmus // fill 6612f86ba45SStephan Aßmus if (rect.Width() >= 0) { 6622f86ba45SStephan Aßmus _FillGradient(view, rect, base, gradient1Tint, gradient2Tint, 6632f86ba45SStephan Aßmus orientation); 6642f86ba45SStephan Aßmus } 6652f86ba45SStephan Aßmus } else { 6662f86ba45SStephan Aßmus // dark vertical line on top edge 6672f86ba45SStephan Aßmus if (rect.Height() > 0) { 6682f86ba45SStephan Aßmus view->SetHighColor(darkEdge1); 6692f86ba45SStephan Aßmus view->StrokeLine(rect.LeftTop(), rect.RightTop()); 6702f86ba45SStephan Aßmus rect.top++; 6712f86ba45SStephan Aßmus } 6722f86ba45SStephan Aßmus // dark vertical line on bottom edge 6732f86ba45SStephan Aßmus if (rect.Height() >= 0) { 6742f86ba45SStephan Aßmus view->SetHighColor(darkEdge2); 6752f86ba45SStephan Aßmus view->StrokeLine(rect.LeftBottom(), rect.RightBottom()); 6762f86ba45SStephan Aßmus rect.bottom--; 6772f86ba45SStephan Aßmus } 6782f86ba45SStephan Aßmus // horizontal shadow line after top edge 6792f86ba45SStephan Aßmus if (rect.Height() >= 0) { 6802f86ba45SStephan Aßmus view->SetHighColor(shadow); 6812f86ba45SStephan Aßmus view->StrokeLine(rect.LeftTop(), rect.RightTop()); 6822f86ba45SStephan Aßmus rect.top++; 6832f86ba45SStephan Aßmus } 6842f86ba45SStephan Aßmus // fill 6852f86ba45SStephan Aßmus if (rect.Height() >= 0) { 6862f86ba45SStephan Aßmus _FillGradient(view, rect, base, gradient1Tint, gradient2Tint, 6872f86ba45SStephan Aßmus orientation); 6882f86ba45SStephan Aßmus } 6892f86ba45SStephan Aßmus } 6902f86ba45SStephan Aßmus } 6912f86ba45SStephan Aßmus 6922f86ba45SStephan Aßmus 69340a10e1cSStephan Aßmus void 69474bb70aeSStephan Aßmus BControlLook::DrawScrollViewFrame(BView* view, BRect& rect, 69574bb70aeSStephan Aßmus const BRect& updateRect, BRect verticalScrollBarFrame, 69674bb70aeSStephan Aßmus BRect horizontalScrollBarFrame, const rgb_color& base, 69774bb70aeSStephan Aßmus border_style border, uint32 flags, uint32 _borders) 69874bb70aeSStephan Aßmus { 69974bb70aeSStephan Aßmus if (border == B_NO_BORDER) 70074bb70aeSStephan Aßmus return; 70174bb70aeSStephan Aßmus 70274bb70aeSStephan Aßmus bool excludeScrollCorner = border == B_FANCY_BORDER 70374bb70aeSStephan Aßmus && horizontalScrollBarFrame.IsValid() 70474bb70aeSStephan Aßmus && verticalScrollBarFrame.IsValid(); 70574bb70aeSStephan Aßmus 70674bb70aeSStephan Aßmus uint32 borders = _borders; 70774bb70aeSStephan Aßmus if (excludeScrollCorner) { 70874bb70aeSStephan Aßmus rect.bottom = horizontalScrollBarFrame.top; 70974bb70aeSStephan Aßmus rect.right = verticalScrollBarFrame.left; 71074bb70aeSStephan Aßmus borders &= ~(B_RIGHT_BORDER | B_BOTTOM_BORDER); 71174bb70aeSStephan Aßmus } 71274bb70aeSStephan Aßmus 71374bb70aeSStephan Aßmus rgb_color scrollbarFrameColor = tint_color(base, B_DARKEN_2_TINT); 71474bb70aeSStephan Aßmus 71574bb70aeSStephan Aßmus if (border == B_FANCY_BORDER) 716*4f579098SStephan Aßmus _DrawOuterResessedFrame(view, rect, base, 1.0, 1.0, flags, borders); 71774bb70aeSStephan Aßmus 71874bb70aeSStephan Aßmus if (flags & B_FOCUSED) { 71974bb70aeSStephan Aßmus rgb_color focusColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR); 72074bb70aeSStephan Aßmus _DrawFrame(view, rect, focusColor, focusColor, focusColor, focusColor, 72174bb70aeSStephan Aßmus borders); 72274bb70aeSStephan Aßmus } else { 72374bb70aeSStephan Aßmus _DrawFrame(view, rect, scrollbarFrameColor, scrollbarFrameColor, 72474bb70aeSStephan Aßmus scrollbarFrameColor, scrollbarFrameColor, borders); 72574bb70aeSStephan Aßmus } 72674bb70aeSStephan Aßmus 72774bb70aeSStephan Aßmus if (excludeScrollCorner) { 72874bb70aeSStephan Aßmus horizontalScrollBarFrame.InsetBy(-1, -1); 72974bb70aeSStephan Aßmus // do not overdraw the top edge 73074bb70aeSStephan Aßmus horizontalScrollBarFrame.top += 2; 73174bb70aeSStephan Aßmus borders = _borders; 73274bb70aeSStephan Aßmus borders &= ~B_TOP_BORDER; 73374bb70aeSStephan Aßmus _DrawOuterResessedFrame(view, horizontalScrollBarFrame, base, 734*4f579098SStephan Aßmus 1.0, 1.0, flags, borders); 73574bb70aeSStephan Aßmus _DrawFrame(view, horizontalScrollBarFrame, scrollbarFrameColor, 73674bb70aeSStephan Aßmus scrollbarFrameColor, scrollbarFrameColor, scrollbarFrameColor, 73774bb70aeSStephan Aßmus borders); 73874bb70aeSStephan Aßmus 73974bb70aeSStephan Aßmus 74074bb70aeSStephan Aßmus verticalScrollBarFrame.InsetBy(-1, -1); 74174bb70aeSStephan Aßmus // do not overdraw the left edge 74274bb70aeSStephan Aßmus verticalScrollBarFrame.left += 2; 74374bb70aeSStephan Aßmus borders = _borders; 74474bb70aeSStephan Aßmus borders &= ~B_LEFT_BORDER; 74574bb70aeSStephan Aßmus _DrawOuterResessedFrame(view, verticalScrollBarFrame, base, 746*4f579098SStephan Aßmus 1.0, 1.0, flags, borders); 74774bb70aeSStephan Aßmus _DrawFrame(view, verticalScrollBarFrame, scrollbarFrameColor, 74874bb70aeSStephan Aßmus scrollbarFrameColor, scrollbarFrameColor, scrollbarFrameColor, 74974bb70aeSStephan Aßmus borders); 75074bb70aeSStephan Aßmus } 75174bb70aeSStephan Aßmus } 75274bb70aeSStephan Aßmus 75374bb70aeSStephan Aßmus 75474bb70aeSStephan Aßmus void 75540a10e1cSStephan Aßmus BControlLook::DrawArrowShape(BView* view, BRect& rect, const BRect& updateRect, 75640a10e1cSStephan Aßmus const rgb_color& base, uint32 direction, uint32 flags, float tint) 75740a10e1cSStephan Aßmus { 75840a10e1cSStephan Aßmus BPoint tri1, tri2, tri3; 75940a10e1cSStephan Aßmus float hInset = rect.Width() / 3; 76040a10e1cSStephan Aßmus float vInset = rect.Height() / 3; 76140a10e1cSStephan Aßmus rect.InsetBy(hInset, vInset); 76240a10e1cSStephan Aßmus 76340a10e1cSStephan Aßmus switch (direction) { 76440a10e1cSStephan Aßmus case B_LEFT_ARROW: 76540a10e1cSStephan Aßmus tri1.Set(rect.right, rect.top); 76640a10e1cSStephan Aßmus tri2.Set(rect.right - rect.Width() / 1.33, 76740a10e1cSStephan Aßmus (rect.top + rect.bottom + 1) /2 ); 76840a10e1cSStephan Aßmus tri3.Set(rect.right, rect.bottom + 1); 76940a10e1cSStephan Aßmus break; 77040a10e1cSStephan Aßmus case B_RIGHT_ARROW: 77140a10e1cSStephan Aßmus tri1.Set(rect.left, rect.bottom + 1); 77240a10e1cSStephan Aßmus tri2.Set(rect.left + rect.Width() / 1.33, 77340a10e1cSStephan Aßmus (rect.top + rect.bottom + 1) / 2); 77440a10e1cSStephan Aßmus tri3.Set(rect.left, rect.top); 77540a10e1cSStephan Aßmus break; 77640a10e1cSStephan Aßmus case B_UP_ARROW: 77740a10e1cSStephan Aßmus tri1.Set(rect.left, rect.bottom); 77840a10e1cSStephan Aßmus tri2.Set((rect.left + rect.right + 1) / 2, 77940a10e1cSStephan Aßmus rect.bottom - rect.Height() / 1.33); 78040a10e1cSStephan Aßmus tri3.Set(rect.right + 1, rect.bottom); 78140a10e1cSStephan Aßmus break; 78240a10e1cSStephan Aßmus case B_DOWN_ARROW: 78340a10e1cSStephan Aßmus default: 78440a10e1cSStephan Aßmus tri1.Set(rect.left, rect.top); 78540a10e1cSStephan Aßmus tri2.Set((rect.left + rect.right + 1) / 2, 78640a10e1cSStephan Aßmus rect.top + rect.Height() / 1.33); 78740a10e1cSStephan Aßmus tri3.Set(rect.right + 1, rect.top); 78840a10e1cSStephan Aßmus break; 78940a10e1cSStephan Aßmus } 79040a10e1cSStephan Aßmus // offset triangle if down 79140a10e1cSStephan Aßmus if (flags & B_ACTIVATED) 79240a10e1cSStephan Aßmus view->MovePenTo(BPoint(1, 1)); 79340a10e1cSStephan Aßmus else 79440a10e1cSStephan Aßmus view->MovePenTo(BPoint(0, 0)); 79540a10e1cSStephan Aßmus 79640a10e1cSStephan Aßmus BShape arrowShape; 79740a10e1cSStephan Aßmus arrowShape.MoveTo(tri1); 79840a10e1cSStephan Aßmus arrowShape.LineTo(tri2); 79940a10e1cSStephan Aßmus arrowShape.LineTo(tri3); 80040a10e1cSStephan Aßmus 80140a10e1cSStephan Aßmus if (flags & B_DISABLED) 80240a10e1cSStephan Aßmus tint = (tint + B_NO_TINT + B_NO_TINT) / 3; 80340a10e1cSStephan Aßmus 80440a10e1cSStephan Aßmus view->SetHighColor(tint_color(base, tint)); 80540a10e1cSStephan Aßmus 80640a10e1cSStephan Aßmus float penSize = view->PenSize(); 80740a10e1cSStephan Aßmus drawing_mode mode = view->DrawingMode(); 80840a10e1cSStephan Aßmus 80940a10e1cSStephan Aßmus view->SetPenSize(ceilf(hInset / 2.0)); 81040a10e1cSStephan Aßmus view->SetDrawingMode(B_OP_OVER); 81140a10e1cSStephan Aßmus view->StrokeShape(&arrowShape); 81240a10e1cSStephan Aßmus 81340a10e1cSStephan Aßmus view->SetPenSize(penSize); 81440a10e1cSStephan Aßmus view->SetDrawingMode(mode); 81540a10e1cSStephan Aßmus } 81640a10e1cSStephan Aßmus 81740a10e1cSStephan Aßmus 8182f86ba45SStephan Aßmus rgb_color 8192f86ba45SStephan Aßmus BControlLook::SliderBarColor(const rgb_color& base) 8202f86ba45SStephan Aßmus { 8212f86ba45SStephan Aßmus return tint_color(ui_color(B_PANEL_BACKGROUND_COLOR), B_DARKEN_1_TINT); 8222f86ba45SStephan Aßmus } 8232f86ba45SStephan Aßmus 8242f86ba45SStephan Aßmus 8252f86ba45SStephan Aßmus void 8262f86ba45SStephan Aßmus BControlLook::DrawSliderBar(BView* view, BRect rect, const BRect& updateRect, 8272f86ba45SStephan Aßmus const rgb_color& base, rgb_color leftFillColor, rgb_color rightFillColor, 8282f86ba45SStephan Aßmus float sliderScale, uint32 flags, enum orientation orientation) 8292f86ba45SStephan Aßmus { 8302f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 8312f86ba45SStephan Aßmus return; 8322f86ba45SStephan Aßmus 8332f86ba45SStephan Aßmus // separate the bar in two sides 8342f86ba45SStephan Aßmus float sliderPosition; 8352f86ba45SStephan Aßmus BRect leftBarSide = rect; 8362f86ba45SStephan Aßmus BRect rightBarSide = rect; 8372f86ba45SStephan Aßmus 8382f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) { 8392f86ba45SStephan Aßmus sliderPosition = floorf(rect.left + 2 + (rect.Width() - 2) 8402f86ba45SStephan Aßmus * sliderScale); 8412f86ba45SStephan Aßmus leftBarSide.right = sliderPosition - 1; 8422f86ba45SStephan Aßmus rightBarSide.left = sliderPosition; 8432f86ba45SStephan Aßmus } else { 8442f86ba45SStephan Aßmus sliderPosition = floorf(rect.top + 2 + (rect.Height() - 2) 8452f86ba45SStephan Aßmus * sliderScale); 8462f86ba45SStephan Aßmus leftBarSide.bottom = sliderPosition - 1; 8472f86ba45SStephan Aßmus rightBarSide.top = sliderPosition; 8482f86ba45SStephan Aßmus } 8492f86ba45SStephan Aßmus 8502f86ba45SStephan Aßmus // fill the background for the corners, exclude the middle bar for now 8512f86ba45SStephan Aßmus BRegion region(rect); 8522f86ba45SStephan Aßmus region.Exclude(rightBarSide); 8532f86ba45SStephan Aßmus view->ConstrainClippingRegion(®ion); 8542f86ba45SStephan Aßmus 8552f86ba45SStephan Aßmus view->PushState(); 8562f86ba45SStephan Aßmus 8572f86ba45SStephan Aßmus DrawSliderBar(view, rect, updateRect, base, leftFillColor, flags, 8582f86ba45SStephan Aßmus orientation); 8592f86ba45SStephan Aßmus 8602f86ba45SStephan Aßmus view->PopState(); 8612f86ba45SStephan Aßmus 8622f86ba45SStephan Aßmus region.Set(rect); 8632f86ba45SStephan Aßmus region.Exclude(leftBarSide); 8642f86ba45SStephan Aßmus view->ConstrainClippingRegion(®ion); 8652f86ba45SStephan Aßmus 8662f86ba45SStephan Aßmus view->PushState(); 8672f86ba45SStephan Aßmus 8682f86ba45SStephan Aßmus DrawSliderBar(view, rect, updateRect, base, rightFillColor, flags, 8692f86ba45SStephan Aßmus orientation); 8702f86ba45SStephan Aßmus 8712f86ba45SStephan Aßmus view->PopState(); 8722f86ba45SStephan Aßmus 8732f86ba45SStephan Aßmus view->ConstrainClippingRegion(NULL); 8742f86ba45SStephan Aßmus } 8752f86ba45SStephan Aßmus 8762f86ba45SStephan Aßmus 8772f86ba45SStephan Aßmus void 8782f86ba45SStephan Aßmus BControlLook::DrawSliderBar(BView* view, BRect rect, const BRect& updateRect, 8792f86ba45SStephan Aßmus const rgb_color& base, rgb_color fillColor, uint32 flags, 8802f86ba45SStephan Aßmus enum orientation orientation) 8812f86ba45SStephan Aßmus { 8822f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 8832f86ba45SStephan Aßmus return; 8842f86ba45SStephan Aßmus 8852f86ba45SStephan Aßmus // separate the rect into corners 8862f86ba45SStephan Aßmus BRect leftCorner(rect); 8872f86ba45SStephan Aßmus BRect rightCorner(rect); 8882f86ba45SStephan Aßmus BRect barRect(rect); 8892f86ba45SStephan Aßmus 8902f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) { 8912f86ba45SStephan Aßmus leftCorner.right = leftCorner.left + leftCorner.Height(); 8922f86ba45SStephan Aßmus rightCorner.left = rightCorner.right - rightCorner.Height(); 8932f86ba45SStephan Aßmus barRect.left += ceilf(barRect.Height() / 2); 8942f86ba45SStephan Aßmus barRect.right -= ceilf(barRect.Height() / 2); 8952f86ba45SStephan Aßmus } else { 8962f86ba45SStephan Aßmus leftCorner.bottom = leftCorner.top + leftCorner.Width(); 8972f86ba45SStephan Aßmus rightCorner.top = rightCorner.bottom - rightCorner.Width(); 8982f86ba45SStephan Aßmus barRect.top += ceilf(barRect.Width() / 2); 8992f86ba45SStephan Aßmus barRect.bottom -= ceilf(barRect.Width() / 2); 9002f86ba45SStephan Aßmus } 9012f86ba45SStephan Aßmus 9022f86ba45SStephan Aßmus // fill the background for the corners, exclude the middle bar for now 9032f86ba45SStephan Aßmus BRegion region(rect); 9042f86ba45SStephan Aßmus region.Exclude(barRect); 9052f86ba45SStephan Aßmus view->ConstrainClippingRegion(®ion); 9062f86ba45SStephan Aßmus 9072f86ba45SStephan Aßmus view->SetHighColor(base); 9082f86ba45SStephan Aßmus view->FillRect(rect); 9092f86ba45SStephan Aßmus 9102f86ba45SStephan Aßmus // figure out the tints to be used 9112f86ba45SStephan Aßmus float edgeLightTint; 9122f86ba45SStephan Aßmus float edgeShadowTint; 9132f86ba45SStephan Aßmus float frameLightTint; 9142f86ba45SStephan Aßmus float frameShadowTint; 9152f86ba45SStephan Aßmus float fillLightTint; 9162f86ba45SStephan Aßmus float fillShadowTint; 9172f86ba45SStephan Aßmus 9182f86ba45SStephan Aßmus if (flags & B_DISABLED) { 9192f86ba45SStephan Aßmus edgeLightTint = 1.0; 9202f86ba45SStephan Aßmus edgeShadowTint = 1.0; 9212f86ba45SStephan Aßmus frameLightTint = 1.20; 9222f86ba45SStephan Aßmus frameShadowTint = 1.25; 9232f86ba45SStephan Aßmus fillLightTint = 0.9; 9242f86ba45SStephan Aßmus fillShadowTint = 1.05; 9252f86ba45SStephan Aßmus 9262f86ba45SStephan Aßmus fillColor.red = uint8(fillColor.red * 0.4 + base.red * 0.6); 9272f86ba45SStephan Aßmus fillColor.green = uint8(fillColor.green * 0.4 + base.green * 0.6); 9282f86ba45SStephan Aßmus fillColor.blue = uint8(fillColor.blue * 0.4 + base.blue * 0.6); 9292f86ba45SStephan Aßmus } else { 9302f86ba45SStephan Aßmus edgeLightTint = 0.65; 9312f86ba45SStephan Aßmus edgeShadowTint = 1.07; 9322f86ba45SStephan Aßmus frameLightTint = 1.40; 9332f86ba45SStephan Aßmus frameShadowTint = 1.50; 9342f86ba45SStephan Aßmus fillLightTint = 0.8; 9352f86ba45SStephan Aßmus fillShadowTint = 1.1; 9362f86ba45SStephan Aßmus } 9372f86ba45SStephan Aßmus 9382f86ba45SStephan Aßmus rgb_color edgeLightColor = tint_color(base, edgeLightTint); 9392f86ba45SStephan Aßmus rgb_color edgeShadowColor = tint_color(base, edgeShadowTint); 9402f86ba45SStephan Aßmus rgb_color frameLightColor = tint_color(fillColor, frameLightTint); 9412f86ba45SStephan Aßmus rgb_color frameShadowColor = tint_color(fillColor, frameShadowTint); 9422f86ba45SStephan Aßmus rgb_color fillLightColor = tint_color(fillColor, fillLightTint); 9432f86ba45SStephan Aßmus rgb_color fillShadowColor = tint_color(fillColor, fillShadowTint); 9442f86ba45SStephan Aßmus 9452f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) { 9462f86ba45SStephan Aßmus _DrawRoundBarCorner(view, leftCorner, updateRect, edgeLightColor, 9472f86ba45SStephan Aßmus edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor, 9482f86ba45SStephan Aßmus fillShadowColor, 1.0, 1.0, 0.0, -1.0, orientation); 9492f86ba45SStephan Aßmus 9502f86ba45SStephan Aßmus _DrawRoundBarCorner(view, rightCorner, updateRect, edgeLightColor, 9512f86ba45SStephan Aßmus edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor, 9522f86ba45SStephan Aßmus fillShadowColor, 0.0, 1.0, -1.0, -1.0, orientation); 9532f86ba45SStephan Aßmus } else { 9542f86ba45SStephan Aßmus _DrawRoundBarCorner(view, leftCorner, updateRect, edgeLightColor, 9552f86ba45SStephan Aßmus edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor, 9562f86ba45SStephan Aßmus fillShadowColor, 1.0, 1.0, -1.0, 0.0, orientation); 9572f86ba45SStephan Aßmus 9582f86ba45SStephan Aßmus _DrawRoundBarCorner(view, rightCorner, updateRect, edgeLightColor, 9592f86ba45SStephan Aßmus edgeShadowColor, frameLightColor, frameShadowColor, fillLightColor, 9602f86ba45SStephan Aßmus fillShadowColor, 1.0, 0.0, -1.0, -1.0, orientation); 9612f86ba45SStephan Aßmus } 9622f86ba45SStephan Aßmus 9632f86ba45SStephan Aßmus view->ConstrainClippingRegion(NULL); 9642f86ba45SStephan Aßmus 9652f86ba45SStephan Aßmus view->BeginLineArray(4); 9662f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) { 9672f86ba45SStephan Aßmus view->AddLine(barRect.LeftTop(), barRect.RightTop(), edgeShadowColor); 9682f86ba45SStephan Aßmus view->AddLine(barRect.LeftBottom(), barRect.RightBottom(), 9692f86ba45SStephan Aßmus edgeLightColor); 9702f86ba45SStephan Aßmus barRect.InsetBy(0, 1); 9712f86ba45SStephan Aßmus view->AddLine(barRect.LeftTop(), barRect.RightTop(), frameShadowColor); 9722f86ba45SStephan Aßmus view->AddLine(barRect.LeftBottom(), barRect.RightBottom(), 9732f86ba45SStephan Aßmus frameLightColor); 9742f86ba45SStephan Aßmus barRect.InsetBy(0, 1); 9752f86ba45SStephan Aßmus } else { 9762f86ba45SStephan Aßmus view->AddLine(barRect.LeftTop(), barRect.LeftBottom(), edgeShadowColor); 9772f86ba45SStephan Aßmus view->AddLine(barRect.RightTop(), barRect.RightBottom(), 9782f86ba45SStephan Aßmus edgeLightColor); 9792f86ba45SStephan Aßmus barRect.InsetBy(1, 0); 9802f86ba45SStephan Aßmus view->AddLine(barRect.LeftTop(), barRect.LeftBottom(), frameShadowColor); 9812f86ba45SStephan Aßmus view->AddLine(barRect.RightTop(), barRect.RightBottom(), 9822f86ba45SStephan Aßmus frameLightColor); 9832f86ba45SStephan Aßmus barRect.InsetBy(1, 0); 9842f86ba45SStephan Aßmus } 9852f86ba45SStephan Aßmus view->EndLineArray(); 9862f86ba45SStephan Aßmus 9872f86ba45SStephan Aßmus _FillGradient(view, barRect, fillColor, fillShadowTint, fillLightTint, 9882f86ba45SStephan Aßmus orientation); 9892f86ba45SStephan Aßmus } 9902f86ba45SStephan Aßmus 9912f86ba45SStephan Aßmus 9922f86ba45SStephan Aßmus void 9932f86ba45SStephan Aßmus BControlLook::DrawSliderThumb(BView* view, BRect& rect, const BRect& updateRect, 9942f86ba45SStephan Aßmus const rgb_color& base, uint32 flags, enum orientation orientation) 9952f86ba45SStephan Aßmus { 9962f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 9972f86ba45SStephan Aßmus return; 9982f86ba45SStephan Aßmus 9992f86ba45SStephan Aßmus // figure out frame color 10002f86ba45SStephan Aßmus rgb_color frameLightColor; 10012f86ba45SStephan Aßmus rgb_color frameShadowColor; 10022f86ba45SStephan Aßmus rgb_color shadowColor = (rgb_color){ 0, 0, 0, 60 }; 10032f86ba45SStephan Aßmus 10042f86ba45SStephan Aßmus if (flags & B_FOCUSED) { 10052f86ba45SStephan Aßmus // focused 10062f86ba45SStephan Aßmus frameLightColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR); 10072f86ba45SStephan Aßmus frameShadowColor = frameLightColor; 10082f86ba45SStephan Aßmus } else { 10092f86ba45SStephan Aßmus // figure out the tints to be used 10102f86ba45SStephan Aßmus float frameLightTint; 10112f86ba45SStephan Aßmus float frameShadowTint; 10122f86ba45SStephan Aßmus 10132f86ba45SStephan Aßmus if (flags & B_DISABLED) { 10142f86ba45SStephan Aßmus frameLightTint = 1.30; 10152f86ba45SStephan Aßmus frameShadowTint = 1.35; 10162f86ba45SStephan Aßmus shadowColor.alpha = 30; 10172f86ba45SStephan Aßmus } else { 10182f86ba45SStephan Aßmus frameLightTint = 1.6; 10192f86ba45SStephan Aßmus frameShadowTint = 1.65; 10202f86ba45SStephan Aßmus } 10212f86ba45SStephan Aßmus 10222f86ba45SStephan Aßmus frameLightColor = tint_color(base, frameLightTint); 10232f86ba45SStephan Aßmus frameShadowColor = tint_color(base, frameShadowTint); 10242f86ba45SStephan Aßmus } 10252f86ba45SStephan Aßmus 10262f86ba45SStephan Aßmus BRect originalRect(rect); 10272f86ba45SStephan Aßmus rect.right--; 10282f86ba45SStephan Aßmus rect.bottom--; 10292f86ba45SStephan Aßmus 10302f86ba45SStephan Aßmus _DrawFrame(view, rect, frameLightColor, frameLightColor, 10312f86ba45SStephan Aßmus frameShadowColor, frameShadowColor); 10322f86ba45SStephan Aßmus 10332f86ba45SStephan Aßmus flags &= ~B_ACTIVATED; 10342f86ba45SStephan Aßmus DrawButtonBackground(view, rect, updateRect, base, flags); 10352f86ba45SStephan Aßmus 10362f86ba45SStephan Aßmus // thumb shadow 10372f86ba45SStephan Aßmus view->SetDrawingMode(B_OP_ALPHA); 10382f86ba45SStephan Aßmus view->SetHighColor(shadowColor); 10392f86ba45SStephan Aßmus originalRect.left++; 10402f86ba45SStephan Aßmus originalRect.top++; 10412f86ba45SStephan Aßmus view->StrokeLine(originalRect.LeftBottom(), originalRect.RightBottom()); 10422f86ba45SStephan Aßmus originalRect.bottom--; 10432f86ba45SStephan Aßmus view->StrokeLine(originalRect.RightTop(), originalRect.RightBottom()); 10442f86ba45SStephan Aßmus 10452f86ba45SStephan Aßmus // thumb edge 10462f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) { 10472f86ba45SStephan Aßmus rect.InsetBy(0, floorf(rect.Height() / 4)); 10482f86ba45SStephan Aßmus rect.left = floorf((rect.left + rect.right) / 2); 10492f86ba45SStephan Aßmus rect.right = rect.left + 1; 10502f86ba45SStephan Aßmus shadowColor = tint_color(base, B_DARKEN_2_TINT); 10512f86ba45SStephan Aßmus shadowColor.alpha = 128; 10522f86ba45SStephan Aßmus view->SetHighColor(shadowColor); 10532f86ba45SStephan Aßmus view->StrokeLine(rect.LeftTop(), rect.LeftBottom()); 10542f86ba45SStephan Aßmus rgb_color lightColor = tint_color(base, B_LIGHTEN_2_TINT); 10552f86ba45SStephan Aßmus lightColor.alpha = 128; 10562f86ba45SStephan Aßmus view->SetHighColor(lightColor); 10572f86ba45SStephan Aßmus view->StrokeLine(rect.RightTop(), rect.RightBottom()); 10582f86ba45SStephan Aßmus } else { 10592f86ba45SStephan Aßmus rect.InsetBy(floorf(rect.Width() / 4), 0); 10602f86ba45SStephan Aßmus rect.top = floorf((rect.top + rect.bottom) / 2); 10612f86ba45SStephan Aßmus rect.bottom = rect.top + 1; 10622f86ba45SStephan Aßmus shadowColor = tint_color(base, B_DARKEN_2_TINT); 10632f86ba45SStephan Aßmus shadowColor.alpha = 128; 10642f86ba45SStephan Aßmus view->SetHighColor(shadowColor); 10652f86ba45SStephan Aßmus view->StrokeLine(rect.LeftTop(), rect.RightTop()); 10662f86ba45SStephan Aßmus rgb_color lightColor = tint_color(base, B_LIGHTEN_2_TINT); 10672f86ba45SStephan Aßmus lightColor.alpha = 128; 10682f86ba45SStephan Aßmus view->SetHighColor(lightColor); 10692f86ba45SStephan Aßmus view->StrokeLine(rect.LeftBottom(), rect.RightBottom()); 10702f86ba45SStephan Aßmus } 10712f86ba45SStephan Aßmus 10722f86ba45SStephan Aßmus view->SetDrawingMode(B_OP_COPY); 10732f86ba45SStephan Aßmus } 10742f86ba45SStephan Aßmus 10752f86ba45SStephan Aßmus 10762f86ba45SStephan Aßmus void 10772f86ba45SStephan Aßmus BControlLook::DrawSliderTriangle(BView* view, BRect& rect, 10782f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 10792f86ba45SStephan Aßmus enum orientation orientation) 10802f86ba45SStephan Aßmus { 10818ee9217eSStephan Aßmus DrawSliderTriangle(view, rect, updateRect, base, base, flags, orientation); 10828ee9217eSStephan Aßmus } 10838ee9217eSStephan Aßmus 10848ee9217eSStephan Aßmus 10858ee9217eSStephan Aßmus void 10868ee9217eSStephan Aßmus BControlLook::DrawSliderTriangle(BView* view, BRect& rect, 10878ee9217eSStephan Aßmus const BRect& updateRect, const rgb_color& base, const rgb_color& fill, 10888ee9217eSStephan Aßmus uint32 flags, enum orientation orientation) 10898ee9217eSStephan Aßmus { 10902f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 10912f86ba45SStephan Aßmus return; 10922f86ba45SStephan Aßmus 10932f86ba45SStephan Aßmus // figure out frame color 10942f86ba45SStephan Aßmus rgb_color frameLightColor; 10952f86ba45SStephan Aßmus rgb_color frameShadowColor; 10962f86ba45SStephan Aßmus rgb_color shadowColor = (rgb_color){ 0, 0, 0, 60 }; 10972f86ba45SStephan Aßmus 10982f86ba45SStephan Aßmus float topTint = 0.49; 10992f86ba45SStephan Aßmus float middleTint1 = 0.62; 11002f86ba45SStephan Aßmus float middleTint2 = 0.76; 11012f86ba45SStephan Aßmus float bottomTint = 0.90; 11022f86ba45SStephan Aßmus 11032f86ba45SStephan Aßmus if (flags & B_DISABLED) { 11042f86ba45SStephan Aßmus topTint = (topTint + B_NO_TINT) / 2; 11052f86ba45SStephan Aßmus middleTint1 = (middleTint1 + B_NO_TINT) / 2; 11062f86ba45SStephan Aßmus middleTint2 = (middleTint2 + B_NO_TINT) / 2; 11072f86ba45SStephan Aßmus bottomTint = (bottomTint + B_NO_TINT) / 2; 11082f86ba45SStephan Aßmus } else if (flags & B_HOVER) { 11092f86ba45SStephan Aßmus static const float kHoverTintFactor = 0.85; 11102f86ba45SStephan Aßmus topTint *= kHoverTintFactor; 11112f86ba45SStephan Aßmus middleTint1 *= kHoverTintFactor; 11122f86ba45SStephan Aßmus middleTint2 *= kHoverTintFactor; 11132f86ba45SStephan Aßmus bottomTint *= kHoverTintFactor; 11142f86ba45SStephan Aßmus } 11152f86ba45SStephan Aßmus 11162f86ba45SStephan Aßmus if (flags & B_FOCUSED) { 11172f86ba45SStephan Aßmus // focused 11182f86ba45SStephan Aßmus frameLightColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR); 11192f86ba45SStephan Aßmus frameShadowColor = frameLightColor; 11202f86ba45SStephan Aßmus } else { 11212f86ba45SStephan Aßmus // figure out the tints to be used 11222f86ba45SStephan Aßmus float frameLightTint; 11232f86ba45SStephan Aßmus float frameShadowTint; 11242f86ba45SStephan Aßmus 11252f86ba45SStephan Aßmus if (flags & B_DISABLED) { 11262f86ba45SStephan Aßmus frameLightTint = 1.30; 11272f86ba45SStephan Aßmus frameShadowTint = 1.35; 11282f86ba45SStephan Aßmus shadowColor.alpha = 30; 11292f86ba45SStephan Aßmus } else { 11302f86ba45SStephan Aßmus frameLightTint = 1.6; 11312f86ba45SStephan Aßmus frameShadowTint = 1.65; 11322f86ba45SStephan Aßmus } 11332f86ba45SStephan Aßmus 11342f86ba45SStephan Aßmus frameLightColor = tint_color(base, frameLightTint); 11352f86ba45SStephan Aßmus frameShadowColor = tint_color(base, frameShadowTint); 11362f86ba45SStephan Aßmus } 11372f86ba45SStephan Aßmus 11388ee9217eSStephan Aßmus // make room for the shadow 11398ee9217eSStephan Aßmus rect.right--; 11408ee9217eSStephan Aßmus rect.bottom--; 11412f86ba45SStephan Aßmus 11422f86ba45SStephan Aßmus uint32 viewFlags = view->Flags(); 11432f86ba45SStephan Aßmus view->SetFlags(viewFlags | B_SUBPIXEL_PRECISE); 11442f86ba45SStephan Aßmus view->SetLineMode(B_ROUND_CAP, B_ROUND_JOIN); 11452f86ba45SStephan Aßmus 11468ee9217eSStephan Aßmus float center = (rect.left + rect.right) / 2; 11472f86ba45SStephan Aßmus 11488ee9217eSStephan Aßmus BShape shape; 11498ee9217eSStephan Aßmus shape.MoveTo(BPoint(rect.left + 0.5, rect.bottom + 0.5)); 11508ee9217eSStephan Aßmus shape.LineTo(BPoint(rect.right + 0.5, rect.bottom + 0.5)); 11518ee9217eSStephan Aßmus shape.LineTo(BPoint(rect.right + 0.5, rect.bottom - 1 + 0.5)); 11528ee9217eSStephan Aßmus shape.LineTo(BPoint(center + 0.5, rect.top + 0.5)); 11538ee9217eSStephan Aßmus shape.LineTo(BPoint(rect.left + 0.5, rect.bottom - 1 + 0.5)); 11548ee9217eSStephan Aßmus shape.Close(); 11558ee9217eSStephan Aßmus 11568ee9217eSStephan Aßmus view->MovePenTo(BPoint(1, 1)); 11578ee9217eSStephan Aßmus 11588ee9217eSStephan Aßmus view->SetDrawingMode(B_OP_ALPHA); 11598ee9217eSStephan Aßmus view->SetHighColor(shadowColor); 11608ee9217eSStephan Aßmus view->StrokeShape(&shape); 11618ee9217eSStephan Aßmus 11628ee9217eSStephan Aßmus view->MovePenTo(B_ORIGIN); 11638ee9217eSStephan Aßmus 11648ee9217eSStephan Aßmus view->SetDrawingMode(B_OP_COPY); 11652f86ba45SStephan Aßmus view->SetHighColor(frameLightColor); 11668ee9217eSStephan Aßmus view->StrokeShape(&shape); 11672f86ba45SStephan Aßmus 11682f86ba45SStephan Aßmus rect.InsetBy(1, 1); 11698ee9217eSStephan Aßmus shape.Clear(); 11708ee9217eSStephan Aßmus shape.MoveTo(BPoint(rect.left, rect.bottom + 1)); 11718ee9217eSStephan Aßmus shape.LineTo(BPoint(rect.right + 1, rect.bottom + 1)); 11728ee9217eSStephan Aßmus shape.LineTo(BPoint(center + 0.5, rect.top)); 11738ee9217eSStephan Aßmus shape.Close(); 11742f86ba45SStephan Aßmus 11752f86ba45SStephan Aßmus BGradientLinear gradient; 11762f86ba45SStephan Aßmus if (flags & B_DISABLED) { 11778ee9217eSStephan Aßmus _MakeGradient(gradient, rect, fill, topTint, bottomTint); 11782f86ba45SStephan Aßmus } else { 11798ee9217eSStephan Aßmus _MakeGlossyGradient(gradient, rect, fill, topTint, middleTint1, 11802f86ba45SStephan Aßmus middleTint2, bottomTint); 11812f86ba45SStephan Aßmus } 11822f86ba45SStephan Aßmus 11838ee9217eSStephan Aßmus view->FillShape(&shape, gradient); 11842f86ba45SStephan Aßmus 11852f86ba45SStephan Aßmus view->SetFlags(viewFlags); 11862f86ba45SStephan Aßmus } 11872f86ba45SStephan Aßmus 11882f86ba45SStephan Aßmus 11892f86ba45SStephan Aßmus void 11902f86ba45SStephan Aßmus BControlLook::DrawSliderHashMarks(BView* view, BRect& rect, 11912f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, int32 count, 11922f86ba45SStephan Aßmus hash_mark_location location, uint32 flags, enum orientation orientation) 11932f86ba45SStephan Aßmus { 11942f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 11952f86ba45SStephan Aßmus return; 11962f86ba45SStephan Aßmus 11972f86ba45SStephan Aßmus rgb_color lightColor; 11982f86ba45SStephan Aßmus rgb_color darkColor; 11992f86ba45SStephan Aßmus 12002f86ba45SStephan Aßmus if (flags & B_DISABLED) { 12012f86ba45SStephan Aßmus lightColor = tint_color(base, 0.9); 12022f86ba45SStephan Aßmus darkColor = tint_color(base, 1.07); 12032f86ba45SStephan Aßmus } else { 12042f86ba45SStephan Aßmus lightColor = tint_color(base, 0.8); 12052f86ba45SStephan Aßmus darkColor = tint_color(base, 1.14); 12062f86ba45SStephan Aßmus } 12072f86ba45SStephan Aßmus 12082f86ba45SStephan Aßmus int32 hashMarkCount = max_c(count, 2); 12092f86ba45SStephan Aßmus // draw at least two hashmarks at min/max if 12102f86ba45SStephan Aßmus // fHashMarks != B_HASH_MARKS_NONE 12112f86ba45SStephan Aßmus float factor; 12122f86ba45SStephan Aßmus float startPos; 12132f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) { 12142f86ba45SStephan Aßmus factor = (rect.Width() - 2) / (hashMarkCount - 1); 12152f86ba45SStephan Aßmus startPos = rect.left + 1; 12162f86ba45SStephan Aßmus } else { 12172f86ba45SStephan Aßmus factor = (rect.Height() - 2) / (hashMarkCount - 1); 12182f86ba45SStephan Aßmus startPos = rect.top + 1; 12192f86ba45SStephan Aßmus } 12202f86ba45SStephan Aßmus 12212f86ba45SStephan Aßmus if (location & B_HASH_MARKS_TOP) { 12222f86ba45SStephan Aßmus view->BeginLineArray(hashMarkCount * 2); 12232f86ba45SStephan Aßmus 12242f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) { 12252f86ba45SStephan Aßmus float pos = startPos; 12262f86ba45SStephan Aßmus for (int32 i = 0; i < hashMarkCount; i++) { 12272f86ba45SStephan Aßmus view->AddLine(BPoint(pos, rect.top), 12282f86ba45SStephan Aßmus BPoint(pos, rect.top + 4), darkColor); 12292f86ba45SStephan Aßmus view->AddLine(BPoint(pos + 1, rect.top), 12302f86ba45SStephan Aßmus BPoint(pos + 1, rect.top + 4), lightColor); 12312f86ba45SStephan Aßmus 12322f86ba45SStephan Aßmus pos += factor; 12332f86ba45SStephan Aßmus } 12342f86ba45SStephan Aßmus } else { 12352f86ba45SStephan Aßmus float pos = startPos; 12362f86ba45SStephan Aßmus for (int32 i = 0; i < hashMarkCount; i++) { 12372f86ba45SStephan Aßmus view->AddLine(BPoint(rect.left, pos), 12382f86ba45SStephan Aßmus BPoint(rect.left + 4, pos), darkColor); 12392f86ba45SStephan Aßmus view->AddLine(BPoint(rect.left, pos + 1), 12402f86ba45SStephan Aßmus BPoint(rect.left + 4, pos + 1), lightColor); 12412f86ba45SStephan Aßmus 12422f86ba45SStephan Aßmus pos += factor; 12432f86ba45SStephan Aßmus } 12442f86ba45SStephan Aßmus } 12452f86ba45SStephan Aßmus 12462f86ba45SStephan Aßmus view->EndLineArray(); 12472f86ba45SStephan Aßmus } 12482f86ba45SStephan Aßmus 12492f86ba45SStephan Aßmus if (location & B_HASH_MARKS_BOTTOM) { 12502f86ba45SStephan Aßmus 12512f86ba45SStephan Aßmus view->BeginLineArray(hashMarkCount * 2); 12522f86ba45SStephan Aßmus 12532f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) { 12542f86ba45SStephan Aßmus float pos = startPos; 12552f86ba45SStephan Aßmus for (int32 i = 0; i < hashMarkCount; i++) { 12562f86ba45SStephan Aßmus view->AddLine(BPoint(pos, rect.bottom - 4), 12572f86ba45SStephan Aßmus BPoint(pos, rect.bottom), darkColor); 12582f86ba45SStephan Aßmus view->AddLine(BPoint(pos + 1, rect.bottom - 4), 12592f86ba45SStephan Aßmus BPoint(pos + 1, rect.bottom), lightColor); 12602f86ba45SStephan Aßmus 12612f86ba45SStephan Aßmus pos += factor; 12622f86ba45SStephan Aßmus } 12632f86ba45SStephan Aßmus } else { 12642f86ba45SStephan Aßmus float pos = startPos; 12652f86ba45SStephan Aßmus for (int32 i = 0; i < hashMarkCount; i++) { 12662f86ba45SStephan Aßmus view->AddLine(BPoint(rect.right - 4, pos), 12672f86ba45SStephan Aßmus BPoint(rect.right, pos), darkColor); 12682f86ba45SStephan Aßmus view->AddLine(BPoint(rect.right - 4, pos + 1), 12692f86ba45SStephan Aßmus BPoint(rect.right, pos + 1), lightColor); 12702f86ba45SStephan Aßmus 12712f86ba45SStephan Aßmus pos += factor; 12722f86ba45SStephan Aßmus } 12732f86ba45SStephan Aßmus } 12742f86ba45SStephan Aßmus 12752f86ba45SStephan Aßmus view->EndLineArray(); 12762f86ba45SStephan Aßmus } 12772f86ba45SStephan Aßmus } 12782f86ba45SStephan Aßmus 12792f86ba45SStephan Aßmus 12802f86ba45SStephan Aßmus void 12812f86ba45SStephan Aßmus BControlLook::DrawActiveTab(BView* view, BRect& rect, const BRect& updateRect, 12822f86ba45SStephan Aßmus const rgb_color& base, uint32 flags, uint32 borders) 12832f86ba45SStephan Aßmus { 12842f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 12852f86ba45SStephan Aßmus return; 12862f86ba45SStephan Aßmus 12872f86ba45SStephan Aßmus rgb_color edgeShadowColor; 12882f86ba45SStephan Aßmus rgb_color edgeLightColor; 12892f86ba45SStephan Aßmus rgb_color frameShadowColor; 12902f86ba45SStephan Aßmus rgb_color frameLightColor; 12912f86ba45SStephan Aßmus rgb_color bevelShadowColor; 12922f86ba45SStephan Aßmus rgb_color bevelLightColor; 12932f86ba45SStephan Aßmus BGradientLinear fillGradient; 12942f86ba45SStephan Aßmus fillGradient.SetStart(rect.LeftTop() + BPoint(3, 3)); 12952f86ba45SStephan Aßmus fillGradient.SetEnd(rect.LeftBottom() + BPoint(3, -3)); 12962f86ba45SStephan Aßmus 12972f86ba45SStephan Aßmus if (flags & B_DISABLED) { 12982f86ba45SStephan Aßmus edgeShadowColor = base; 12992f86ba45SStephan Aßmus edgeLightColor = base; 13002f86ba45SStephan Aßmus frameShadowColor = tint_color(base, 1.30); 13012f86ba45SStephan Aßmus frameLightColor = tint_color(base, 1.25); 13022f86ba45SStephan Aßmus bevelShadowColor = tint_color(base, 1.07); 13032f86ba45SStephan Aßmus bevelLightColor = tint_color(base, 0.8); 13042f86ba45SStephan Aßmus fillGradient.AddColor(tint_color(base, 0.85), 0); 13052f86ba45SStephan Aßmus fillGradient.AddColor(base, 255); 13062f86ba45SStephan Aßmus } else { 13072f86ba45SStephan Aßmus edgeShadowColor = tint_color(base, 1.03); 13082f86ba45SStephan Aßmus edgeLightColor = tint_color(base, 0.80); 13092f86ba45SStephan Aßmus frameShadowColor = tint_color(base, 1.30); 13102f86ba45SStephan Aßmus frameLightColor = tint_color(base, 1.30); 13112f86ba45SStephan Aßmus bevelShadowColor = tint_color(base, 1.07); 13122f86ba45SStephan Aßmus bevelLightColor = tint_color(base, 0.6); 13132f86ba45SStephan Aßmus fillGradient.AddColor(tint_color(base, 0.75), 0); 13142f86ba45SStephan Aßmus fillGradient.AddColor(tint_color(base, 1.03), 255); 13152f86ba45SStephan Aßmus } 131612ea5a2cSStephan Aßmus 13172f86ba45SStephan Aßmus static const float kRoundCornerRadius = 4; 13182f86ba45SStephan Aßmus 13192f86ba45SStephan Aßmus // left/top corner 13202f86ba45SStephan Aßmus BRect cornerRect(rect); 13212f86ba45SStephan Aßmus cornerRect.right = cornerRect.left + kRoundCornerRadius; 13222f86ba45SStephan Aßmus cornerRect.bottom = cornerRect.top + kRoundCornerRadius; 13232f86ba45SStephan Aßmus 13242f86ba45SStephan Aßmus BRegion clipping(rect); 13252f86ba45SStephan Aßmus clipping.Exclude(cornerRect); 13262f86ba45SStephan Aßmus 13272f86ba45SStephan Aßmus _DrawRoundCornerLeftTop(view, cornerRect, updateRect, base, edgeShadowColor, 13282f86ba45SStephan Aßmus frameLightColor, bevelLightColor, fillGradient); 13292f86ba45SStephan Aßmus 13302f86ba45SStephan Aßmus // left/top corner 13312f86ba45SStephan Aßmus cornerRect.right = rect.right; 13322f86ba45SStephan Aßmus cornerRect.left = cornerRect.right - kRoundCornerRadius; 13332f86ba45SStephan Aßmus 13342f86ba45SStephan Aßmus clipping.Exclude(cornerRect); 13352f86ba45SStephan Aßmus 13362f86ba45SStephan Aßmus _DrawRoundCornerRightTop(view, cornerRect, updateRect, base, edgeShadowColor, 13372f86ba45SStephan Aßmus edgeLightColor, frameLightColor, frameShadowColor, bevelLightColor, 13382f86ba45SStephan Aßmus bevelShadowColor, fillGradient); 13392f86ba45SStephan Aßmus 13402f86ba45SStephan Aßmus // rest of frame and fill 13412f86ba45SStephan Aßmus view->ConstrainClippingRegion(&clipping); 13422f86ba45SStephan Aßmus 13432f86ba45SStephan Aßmus _DrawFrame(view, rect, edgeShadowColor, edgeShadowColor, edgeLightColor, 13442f86ba45SStephan Aßmus edgeLightColor, 13452f86ba45SStephan Aßmus borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER)); 13462f86ba45SStephan Aßmus if ((borders & B_LEFT_BORDER) == 0) 13472f86ba45SStephan Aßmus rect.left++; 13482f86ba45SStephan Aßmus if ((borders & B_RIGHT_BORDER) == 0) 13492f86ba45SStephan Aßmus rect.right--; 13502f86ba45SStephan Aßmus 13512f86ba45SStephan Aßmus _DrawFrame(view, rect, frameLightColor, frameLightColor, frameShadowColor, 13522f86ba45SStephan Aßmus frameShadowColor, B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER); 13532f86ba45SStephan Aßmus 13542f86ba45SStephan Aßmus _DrawFrame(view, rect, bevelLightColor, bevelLightColor, bevelShadowColor, 13552f86ba45SStephan Aßmus bevelShadowColor); 13562f86ba45SStephan Aßmus 13572f86ba45SStephan Aßmus view->FillRect(rect, fillGradient); 13582f86ba45SStephan Aßmus 13592f86ba45SStephan Aßmus view->ConstrainClippingRegion(NULL); 13602f86ba45SStephan Aßmus } 13612f86ba45SStephan Aßmus 13622f86ba45SStephan Aßmus 13632f86ba45SStephan Aßmus void 136483aff015SPhilippe Houdoin BControlLook::DrawInactiveTab(BView* view, BRect& rect, const BRect& updateRect, 13652f86ba45SStephan Aßmus const rgb_color& base, uint32 flags, uint32 borders) 13662f86ba45SStephan Aßmus { 13672f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 13682f86ba45SStephan Aßmus return; 13692f86ba45SStephan Aßmus 13702f86ba45SStephan Aßmus rgb_color edgeShadowColor; 13712f86ba45SStephan Aßmus rgb_color edgeLightColor; 13722f86ba45SStephan Aßmus rgb_color frameShadowColor; 13732f86ba45SStephan Aßmus rgb_color frameLightColor; 13742f86ba45SStephan Aßmus rgb_color bevelShadowColor; 13752f86ba45SStephan Aßmus rgb_color bevelLightColor; 13762f86ba45SStephan Aßmus BGradientLinear fillGradient; 13772f86ba45SStephan Aßmus fillGradient.SetStart(rect.LeftTop() + BPoint(3, 3)); 13782f86ba45SStephan Aßmus fillGradient.SetEnd(rect.LeftBottom() + BPoint(3, -3)); 13792f86ba45SStephan Aßmus 13802f86ba45SStephan Aßmus if (flags & B_DISABLED) { 13812f86ba45SStephan Aßmus edgeShadowColor = base; 13822f86ba45SStephan Aßmus edgeLightColor = base; 13832f86ba45SStephan Aßmus frameShadowColor = tint_color(base, 1.30); 13842f86ba45SStephan Aßmus frameLightColor = tint_color(base, 1.25); 13852f86ba45SStephan Aßmus bevelShadowColor = tint_color(base, 1.07); 13862f86ba45SStephan Aßmus bevelLightColor = tint_color(base, 0.8); 13872f86ba45SStephan Aßmus fillGradient.AddColor(tint_color(base, 0.85), 0); 13882f86ba45SStephan Aßmus fillGradient.AddColor(base, 255); 13892f86ba45SStephan Aßmus } else { 13902f86ba45SStephan Aßmus edgeShadowColor = tint_color(base, 1.03); 13912f86ba45SStephan Aßmus edgeLightColor = tint_color(base, 0.80); 13922f86ba45SStephan Aßmus frameShadowColor = tint_color(base, 1.30); 13932f86ba45SStephan Aßmus frameLightColor = tint_color(base, 1.30); 139412ea5a2cSStephan Aßmus bevelShadowColor = tint_color(base, 1.17); 13952f86ba45SStephan Aßmus bevelLightColor = tint_color(base, 1.10); 13962f86ba45SStephan Aßmus fillGradient.AddColor(tint_color(base, 1.12), 0); 13972f86ba45SStephan Aßmus fillGradient.AddColor(tint_color(base, 1.08), 255); 13982f86ba45SStephan Aßmus } 13992f86ba45SStephan Aßmus 14002f86ba45SStephan Aßmus // active tabs stand out at the top, but this is an inactive tab 14012f86ba45SStephan Aßmus view->SetHighColor(base); 14022f86ba45SStephan Aßmus view->FillRect(BRect(rect.left, rect.top, rect.right, rect.top + 4)); 14032f86ba45SStephan Aßmus rect.top += 4; 14042f86ba45SStephan Aßmus 14052f86ba45SStephan Aßmus // frame and fill 14062f86ba45SStephan Aßmus _DrawFrame(view, rect, edgeShadowColor, edgeShadowColor, edgeLightColor, 14072f86ba45SStephan Aßmus edgeLightColor, 14082f86ba45SStephan Aßmus borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER)); 14092f86ba45SStephan Aßmus 14102f86ba45SStephan Aßmus _DrawFrame(view, rect, frameLightColor, frameLightColor, frameShadowColor, 14112f86ba45SStephan Aßmus frameShadowColor, 14122f86ba45SStephan Aßmus borders & (B_LEFT_BORDER | B_TOP_BORDER | B_RIGHT_BORDER)); 14132f86ba45SStephan Aßmus 141412ea5a2cSStephan Aßmus _DrawFrame(view, rect, bevelShadowColor, bevelShadowColor, bevelLightColor, 141512ea5a2cSStephan Aßmus bevelLightColor, B_LEFT_BORDER & ~borders); 14162f86ba45SStephan Aßmus 14172f86ba45SStephan Aßmus view->FillRect(rect, fillGradient); 14182f86ba45SStephan Aßmus } 14192f86ba45SStephan Aßmus 14202f86ba45SStephan Aßmus 14212f86ba45SStephan Aßmus // #pragma mark - 14222f86ba45SStephan Aßmus 14232f86ba45SStephan Aßmus 14242f86ba45SStephan Aßmus void 14252f86ba45SStephan Aßmus BControlLook::DrawBorder(BView* view, BRect& rect, const BRect& updateRect, 14262f86ba45SStephan Aßmus const rgb_color& base, border_style border, uint32 flags, uint32 borders) 14272f86ba45SStephan Aßmus { 14282f86ba45SStephan Aßmus if (border == B_NO_BORDER) 14292f86ba45SStephan Aßmus return; 14302f86ba45SStephan Aßmus 14312f86ba45SStephan Aßmus rgb_color scrollbarFrameColor = tint_color(base, B_DARKEN_2_TINT); 14322f86ba45SStephan Aßmus if (flags & B_FOCUSED) 14332f86ba45SStephan Aßmus scrollbarFrameColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR); 14342f86ba45SStephan Aßmus 14352f86ba45SStephan Aßmus if (border == B_FANCY_BORDER) 1436*4f579098SStephan Aßmus _DrawOuterResessedFrame(view, rect, base, 1.0, 1.0, flags, borders); 14372f86ba45SStephan Aßmus 14382f86ba45SStephan Aßmus _DrawFrame(view, rect, scrollbarFrameColor, scrollbarFrameColor, 14392f86ba45SStephan Aßmus scrollbarFrameColor, scrollbarFrameColor, borders); 14402f86ba45SStephan Aßmus } 14412f86ba45SStephan Aßmus 14422f86ba45SStephan Aßmus 14432f86ba45SStephan Aßmus void 14442f86ba45SStephan Aßmus BControlLook::DrawRaisedBorder(BView* view, BRect& rect, 14452f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 14462f86ba45SStephan Aßmus uint32 borders) 14472f86ba45SStephan Aßmus { 14482f86ba45SStephan Aßmus rgb_color lightColor; 14492f86ba45SStephan Aßmus rgb_color shadowColor; 14502f86ba45SStephan Aßmus 14512f86ba45SStephan Aßmus if (flags & B_DISABLED) { 14522f86ba45SStephan Aßmus lightColor = base; 14532f86ba45SStephan Aßmus shadowColor = base; 14542f86ba45SStephan Aßmus } else { 14552f86ba45SStephan Aßmus lightColor = tint_color(base, 0.85); 14562f86ba45SStephan Aßmus shadowColor = tint_color(base, 1.07); 14572f86ba45SStephan Aßmus } 14582f86ba45SStephan Aßmus 14592f86ba45SStephan Aßmus _DrawFrame(view, rect, lightColor, lightColor, shadowColor, shadowColor, 14602f86ba45SStephan Aßmus borders); 14612f86ba45SStephan Aßmus } 14622f86ba45SStephan Aßmus 14632f86ba45SStephan Aßmus 14642f86ba45SStephan Aßmus void 14652f86ba45SStephan Aßmus BControlLook::DrawTextControlBorder(BView* view, BRect& rect, 14662f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 14672f86ba45SStephan Aßmus uint32 borders) 14682f86ba45SStephan Aßmus { 14692f86ba45SStephan Aßmus if (!rect.Intersects(updateRect)) 14702f86ba45SStephan Aßmus return; 14712f86ba45SStephan Aßmus 14722f86ba45SStephan Aßmus rgb_color dark1BorderColor; 14732f86ba45SStephan Aßmus rgb_color dark2BorderColor; 14742f86ba45SStephan Aßmus rgb_color navigationColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR); 14752f86ba45SStephan Aßmus 14762f86ba45SStephan Aßmus if (flags & B_DISABLED) { 1477*4f579098SStephan Aßmus _DrawOuterResessedFrame(view, rect, base, 0.0, 1.0, flags, borders); 14782f86ba45SStephan Aßmus 1479*4f579098SStephan Aßmus if (flags & B_BLEND_FRAME) 1480*4f579098SStephan Aßmus dark1BorderColor = (rgb_color){ 0, 0, 0, 40 }; 1481*4f579098SStephan Aßmus else 14822f86ba45SStephan Aßmus dark1BorderColor = tint_color(base, 1.15); 1483*4f579098SStephan Aßmus dark2BorderColor = dark1BorderColor; 14842f86ba45SStephan Aßmus } else if (flags & B_CLICKED) { 14852f86ba45SStephan Aßmus dark1BorderColor = tint_color(base, 1.50); 14862f86ba45SStephan Aßmus dark2BorderColor = tint_color(base, 1.49); 14872f86ba45SStephan Aßmus 1488*4f579098SStephan Aßmus // BCheckBox uses this to indicate the clicked state... 14892f86ba45SStephan Aßmus _DrawFrame(view, rect, 14902f86ba45SStephan Aßmus dark1BorderColor, dark1BorderColor, 14912f86ba45SStephan Aßmus dark2BorderColor, dark2BorderColor); 14922f86ba45SStephan Aßmus 14932f86ba45SStephan Aßmus dark2BorderColor = dark1BorderColor; 14942f86ba45SStephan Aßmus } else { 1495*4f579098SStephan Aßmus _DrawOuterResessedFrame(view, rect, base, 0.6, 1.0, flags, borders); 14962f86ba45SStephan Aßmus 1497*4f579098SStephan Aßmus if (flags & B_BLEND_FRAME) { 1498*4f579098SStephan Aßmus dark1BorderColor = (rgb_color){ 0, 0, 0, 102 }; 1499*4f579098SStephan Aßmus dark2BorderColor = (rgb_color){ 0, 0, 0, 97 }; 1500*4f579098SStephan Aßmus } else { 15012f86ba45SStephan Aßmus dark1BorderColor = tint_color(base, 1.40); 15022f86ba45SStephan Aßmus dark2BorderColor = tint_color(base, 1.38); 15032f86ba45SStephan Aßmus } 1504*4f579098SStephan Aßmus } 15052f86ba45SStephan Aßmus 15062f86ba45SStephan Aßmus if ((flags & B_DISABLED) == 0 && (flags & B_FOCUSED)) { 15072f86ba45SStephan Aßmus dark1BorderColor = navigationColor; 15082f86ba45SStephan Aßmus dark2BorderColor = navigationColor; 15092f86ba45SStephan Aßmus } 15102f86ba45SStephan Aßmus 1511*4f579098SStephan Aßmus if (flags & B_BLEND_FRAME) { 1512*4f579098SStephan Aßmus drawing_mode oldMode = view->DrawingMode(); 1513*4f579098SStephan Aßmus view->SetDrawingMode(B_OP_ALPHA); 1514*4f579098SStephan Aßmus 15152f86ba45SStephan Aßmus _DrawFrame(view, rect, 15162f86ba45SStephan Aßmus dark1BorderColor, dark1BorderColor, 15172f86ba45SStephan Aßmus dark2BorderColor, dark2BorderColor, borders); 1518*4f579098SStephan Aßmus 1519*4f579098SStephan Aßmus view->SetDrawingMode(oldMode); 1520*4f579098SStephan Aßmus } else { 1521*4f579098SStephan Aßmus _DrawFrame(view, rect, 1522*4f579098SStephan Aßmus dark1BorderColor, dark1BorderColor, 1523*4f579098SStephan Aßmus dark2BorderColor, dark2BorderColor, borders); 1524*4f579098SStephan Aßmus } 15252f86ba45SStephan Aßmus } 15262f86ba45SStephan Aßmus 15272f86ba45SStephan Aßmus 15282f86ba45SStephan Aßmus void 15292f86ba45SStephan Aßmus BControlLook::DrawGroupFrame(BView* view, BRect& rect, const BRect& updateRect, 15302f86ba45SStephan Aßmus const rgb_color& base, uint32 borders) 15312f86ba45SStephan Aßmus { 15322f86ba45SStephan Aßmus rgb_color frameColor = tint_color(base, 1.30); 15332f86ba45SStephan Aßmus rgb_color bevelLight = tint_color(base, 0.8); 15342f86ba45SStephan Aßmus rgb_color bevelShadow = tint_color(base, 1.03); 15352f86ba45SStephan Aßmus 15362f86ba45SStephan Aßmus _DrawFrame(view, rect, bevelShadow, bevelShadow, bevelLight, bevelLight, 15372f86ba45SStephan Aßmus borders); 15382f86ba45SStephan Aßmus 15392f86ba45SStephan Aßmus _DrawFrame(view, rect, frameColor, frameColor, frameColor, frameColor, 15402f86ba45SStephan Aßmus borders); 15412f86ba45SStephan Aßmus 15422f86ba45SStephan Aßmus _DrawFrame(view, rect, bevelLight, bevelLight, bevelShadow, bevelShadow, 15432f86ba45SStephan Aßmus borders); 15442f86ba45SStephan Aßmus } 15452f86ba45SStephan Aßmus 15462f86ba45SStephan Aßmus 15472f86ba45SStephan Aßmus void 15482f86ba45SStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, BRect rect, 15492f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags) 15502f86ba45SStephan Aßmus { 15512f86ba45SStephan Aßmus DrawLabel(view, label, rect, updateRect, base, flags, 15522f86ba45SStephan Aßmus DefaultLabelAlignment()); 15532f86ba45SStephan Aßmus } 15542f86ba45SStephan Aßmus 15552f86ba45SStephan Aßmus 15562f86ba45SStephan Aßmus void 15572f86ba45SStephan Aßmus BControlLook::DrawLabel(BView* view, const char* label, BRect rect, 15582f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, uint32 flags, 15592f86ba45SStephan Aßmus const BAlignment& alignment) 15602f86ba45SStephan Aßmus { 15612f86ba45SStephan Aßmus if (!rect.Intersects(updateRect)) 15622f86ba45SStephan Aßmus return; 15632f86ba45SStephan Aßmus 15642f86ba45SStephan Aßmus // setup the text color 15652f86ba45SStephan Aßmus rgb_color color; 15662f86ba45SStephan Aßmus if (base.red + base.green + base.blue > 128 * 3) 15672f86ba45SStephan Aßmus color = tint_color(base, B_DARKEN_MAX_TINT); 15682f86ba45SStephan Aßmus else 15692f86ba45SStephan Aßmus color = tint_color(base, B_LIGHTEN_MAX_TINT); 15702f86ba45SStephan Aßmus 15712f86ba45SStephan Aßmus if (flags & B_DISABLED) { 15722f86ba45SStephan Aßmus color.red = (uint8)(((int32)base.red + color.red + 1) / 2); 15732f86ba45SStephan Aßmus color.green = (uint8)(((int32)base.green + color.green + 1) / 2); 15742f86ba45SStephan Aßmus color.blue = (uint8)(((int32)base.blue + color.blue + 1) / 2); 15752f86ba45SStephan Aßmus } 15762f86ba45SStephan Aßmus 15772f86ba45SStephan Aßmus view->SetHighColor(color); 15782f86ba45SStephan Aßmus view->SetDrawingMode(B_OP_OVER); 15792f86ba45SStephan Aßmus 15802f86ba45SStephan Aßmus // truncate the label if necessary and get the width and height 15812f86ba45SStephan Aßmus BString truncatedLabel(label); 15822f86ba45SStephan Aßmus 15832f86ba45SStephan Aßmus BFont font; 15842f86ba45SStephan Aßmus view->GetFont(&font); 15852f86ba45SStephan Aßmus 15862f86ba45SStephan Aßmus float width = rect.Width(); 15872f86ba45SStephan Aßmus font.TruncateString(&truncatedLabel, B_TRUNCATE_END, width); 15882f86ba45SStephan Aßmus width = font.StringWidth(truncatedLabel.String()); 15892f86ba45SStephan Aßmus 15902f86ba45SStephan Aßmus font_height fontHeight; 15912f86ba45SStephan Aßmus font.GetHeight(&fontHeight); 15922f86ba45SStephan Aßmus float height = ceilf(fontHeight.ascent) + ceilf(fontHeight.descent); 15932f86ba45SStephan Aßmus 15942f86ba45SStephan Aßmus // handle alignment 15952f86ba45SStephan Aßmus BPoint location; 15962f86ba45SStephan Aßmus 15972f86ba45SStephan Aßmus switch (alignment.horizontal) { 15982f86ba45SStephan Aßmus default: 15992f86ba45SStephan Aßmus case B_ALIGN_LEFT: 16002f86ba45SStephan Aßmus location.x = rect.left; 16012f86ba45SStephan Aßmus break; 16022f86ba45SStephan Aßmus case B_ALIGN_RIGHT: 16032f86ba45SStephan Aßmus location.x = rect.right - width; 16042f86ba45SStephan Aßmus break; 16052f86ba45SStephan Aßmus case B_ALIGN_CENTER: 16062f86ba45SStephan Aßmus location.x = (rect.left + rect.right - width) / 2.0f; 16072f86ba45SStephan Aßmus break; 16082f86ba45SStephan Aßmus } 16092f86ba45SStephan Aßmus 16102f86ba45SStephan Aßmus switch (alignment.vertical) { 16112f86ba45SStephan Aßmus case B_ALIGN_TOP: 16122f86ba45SStephan Aßmus location.y = rect.top + ceilf(fontHeight.ascent); 16132f86ba45SStephan Aßmus break; 16142f86ba45SStephan Aßmus default: 16152f86ba45SStephan Aßmus case B_ALIGN_MIDDLE: 16162f86ba45SStephan Aßmus location.y = floorf((rect.top + rect.bottom - height) / 2.0f + 0.5f) 16172f86ba45SStephan Aßmus + ceilf(fontHeight.ascent); 16182f86ba45SStephan Aßmus break; 16192f86ba45SStephan Aßmus case B_ALIGN_BOTTOM: 16202f86ba45SStephan Aßmus location.y = rect.bottom - ceilf(fontHeight.descent); 16212f86ba45SStephan Aßmus break; 16222f86ba45SStephan Aßmus } 16232f86ba45SStephan Aßmus 16242f86ba45SStephan Aßmus view->DrawString(truncatedLabel.String(), location); 16252f86ba45SStephan Aßmus } 16262f86ba45SStephan Aßmus 16272f86ba45SStephan Aßmus 16282f86ba45SStephan Aßmus // #pragma mark - 16292f86ba45SStephan Aßmus 16302f86ba45SStephan Aßmus 16312f86ba45SStephan Aßmus void 163213cd46dfSStephan Aßmus BControlLook::_DrawButtonFrame(BView* view, BRect& rect, 1633681c2e44SStephan Aßmus const BRect& updateRect, const rgb_color& base, const rgb_color& background, 163413cd46dfSStephan Aßmus float contrast, float brightness, uint32 flags, uint32 borders) 163513cd46dfSStephan Aßmus { 163613cd46dfSStephan Aßmus // colors 163713cd46dfSStephan Aßmus rgb_color dark1BorderColor; 163813cd46dfSStephan Aßmus rgb_color dark2BorderColor; 163913cd46dfSStephan Aßmus 164013cd46dfSStephan Aßmus if ((flags & B_DISABLED) == 0) { 1641*4f579098SStephan Aßmus if (flags & B_BLEND_FRAME) { 1642*4f579098SStephan Aßmus dark1BorderColor = (rgb_color){ 0, 0, 0, 75 }; 1643*4f579098SStephan Aßmus dark2BorderColor = (rgb_color){ 0, 0, 0, 95 }; 1644*4f579098SStephan Aßmus } else { 164513cd46dfSStephan Aßmus dark1BorderColor = tint_color(base, 1.33); 164613cd46dfSStephan Aßmus dark2BorderColor = tint_color(base, 1.45); 1647*4f579098SStephan Aßmus } 164813cd46dfSStephan Aßmus 164913cd46dfSStephan Aßmus if (flags & B_DEFAULT_BUTTON) { 1650*4f579098SStephan Aßmus // TODO: B_BLEND_FRAME 165113cd46dfSStephan Aßmus dark2BorderColor = tint_color(dark1BorderColor, 1.5); 165213cd46dfSStephan Aßmus dark1BorderColor = tint_color(dark1BorderColor, 1.35); 165313cd46dfSStephan Aßmus } 165413cd46dfSStephan Aßmus } else { 1655*4f579098SStephan Aßmus // TODO: B_BLEND_FRAME 165613cd46dfSStephan Aßmus dark1BorderColor = tint_color(base, 1.147); 165713cd46dfSStephan Aßmus dark2BorderColor = tint_color(base, 1.24); 165813cd46dfSStephan Aßmus 165913cd46dfSStephan Aßmus if (flags & B_DEFAULT_BUTTON) { 166074bb70aeSStephan Aßmus dark1BorderColor = tint_color(dark1BorderColor, 1.14); 166174bb70aeSStephan Aßmus dark2BorderColor = tint_color(dark1BorderColor, 1.12); 166213cd46dfSStephan Aßmus } 166313cd46dfSStephan Aßmus } 166413cd46dfSStephan Aßmus 166513cd46dfSStephan Aßmus if (flags & B_ACTIVATED) { 166613cd46dfSStephan Aßmus rgb_color temp = dark2BorderColor; 166713cd46dfSStephan Aßmus dark2BorderColor = dark1BorderColor; 166813cd46dfSStephan Aßmus dark1BorderColor = temp; 166913cd46dfSStephan Aßmus } 167013cd46dfSStephan Aßmus 167113cd46dfSStephan Aßmus // indicate focus by changing main button border 167213cd46dfSStephan Aßmus if (flags & B_FOCUSED) { 167313cd46dfSStephan Aßmus dark1BorderColor = ui_color(B_KEYBOARD_NAVIGATION_COLOR); 167413cd46dfSStephan Aßmus dark2BorderColor = dark1BorderColor; 167513cd46dfSStephan Aßmus } 167613cd46dfSStephan Aßmus 167713cd46dfSStephan Aßmus if (flags & B_DEFAULT_BUTTON) { 1678*4f579098SStephan Aßmus // TODO: B_BLEND_FRAME 167913cd46dfSStephan Aßmus float focusTint = 1.2; 168013cd46dfSStephan Aßmus if (flags & B_DISABLED) 168113cd46dfSStephan Aßmus focusTint = (B_NO_TINT + focusTint) / 2; 168213cd46dfSStephan Aßmus 168313cd46dfSStephan Aßmus rgb_color focusColor = tint_color(base, focusTint); 168413cd46dfSStephan Aßmus view->SetHighColor(base); 168513cd46dfSStephan Aßmus 168613cd46dfSStephan Aßmus view->StrokeRect(rect); 168713cd46dfSStephan Aßmus rect.InsetBy(1.0, 1.0); 168813cd46dfSStephan Aßmus 168913cd46dfSStephan Aßmus view->SetHighColor(focusColor); 169013cd46dfSStephan Aßmus view->StrokeRect(rect); 169113cd46dfSStephan Aßmus rect.InsetBy(1.0, 1.0); 169213cd46dfSStephan Aßmus view->StrokeRect(rect); 169313cd46dfSStephan Aßmus rect.InsetBy(1.0, 1.0); 169413cd46dfSStephan Aßmus 169513cd46dfSStephan Aßmus // bevel around external border 169613cd46dfSStephan Aßmus _DrawOuterResessedFrame(view, rect, focusColor, 169774bb70aeSStephan Aßmus contrast * (((flags & B_DISABLED) ? 0.3 : 0.8)), 169874bb70aeSStephan Aßmus brightness * (((flags & B_DISABLED) ? 1.0 : 0.9)), 1699*4f579098SStephan Aßmus flags, borders); 170013cd46dfSStephan Aßmus } else { 170113cd46dfSStephan Aßmus // bevel around external border 1702681c2e44SStephan Aßmus _DrawOuterResessedFrame(view, rect, background, 170313cd46dfSStephan Aßmus contrast * ((flags & B_DISABLED) ? 0.0 : 1.0), brightness * 1.0, 1704*4f579098SStephan Aßmus flags, borders); 170513cd46dfSStephan Aßmus } 170613cd46dfSStephan Aßmus 1707*4f579098SStephan Aßmus if (flags & B_BLEND_FRAME) { 1708*4f579098SStephan Aßmus drawing_mode oldDrawingMode = view->DrawingMode(); 1709*4f579098SStephan Aßmus view->SetDrawingMode(B_OP_ALPHA); 1710*4f579098SStephan Aßmus 171113cd46dfSStephan Aßmus _DrawFrame(view, rect, dark1BorderColor, dark1BorderColor, 171213cd46dfSStephan Aßmus dark2BorderColor, dark2BorderColor, borders); 1713*4f579098SStephan Aßmus 1714*4f579098SStephan Aßmus view->SetDrawingMode(oldDrawingMode); 1715*4f579098SStephan Aßmus } else { 1716*4f579098SStephan Aßmus _DrawFrame(view, rect, dark1BorderColor, dark1BorderColor, 1717*4f579098SStephan Aßmus dark2BorderColor, dark2BorderColor, borders); 1718*4f579098SStephan Aßmus } 171913cd46dfSStephan Aßmus } 172013cd46dfSStephan Aßmus 172113cd46dfSStephan Aßmus 172213cd46dfSStephan Aßmus void 17232f86ba45SStephan Aßmus BControlLook::_DrawOuterResessedFrame(BView* view, BRect& rect, 1724*4f579098SStephan Aßmus const rgb_color& base, float contrast, float brightness, uint32 flags, 1725*4f579098SStephan Aßmus uint32 borders) 17262f86ba45SStephan Aßmus { 1727*4f579098SStephan Aßmus if (flags & B_BLEND_FRAME) { 1728*4f579098SStephan Aßmus // assumes the background has already been painted 1729*4f579098SStephan Aßmus drawing_mode oldDrawingMode = view->DrawingMode(); 1730*4f579098SStephan Aßmus view->SetDrawingMode(B_OP_ALPHA); 1731*4f579098SStephan Aßmus 1732*4f579098SStephan Aßmus uint8 alpha = uint8(20 * contrast); 1733*4f579098SStephan Aßmus uint32 white = uint8(255 * brightness); 1734*4f579098SStephan Aßmus 1735*4f579098SStephan Aßmus rgb_color borderBevelShadow = (rgb_color){ 0, 0, 0, alpha }; 1736*4f579098SStephan Aßmus rgb_color borderBevelLight = (rgb_color){ white, white, white, alpha }; 1737*4f579098SStephan Aßmus 1738*4f579098SStephan Aßmus _DrawFrame(view, rect, borderBevelShadow, borderBevelShadow, 1739*4f579098SStephan Aßmus borderBevelLight, borderBevelLight, borders); 1740*4f579098SStephan Aßmus 1741*4f579098SStephan Aßmus view->SetDrawingMode(oldDrawingMode); 1742*4f579098SStephan Aßmus } else { 17432f86ba45SStephan Aßmus // colors 17442f86ba45SStephan Aßmus float tintLight = kEdgeBevelLightTint; 17452f86ba45SStephan Aßmus float tintShadow = kEdgeBevelShadowTint; 17462f86ba45SStephan Aßmus 17472f86ba45SStephan Aßmus if (contrast == 0.0) { 17482f86ba45SStephan Aßmus tintLight = B_NO_TINT; 17492f86ba45SStephan Aßmus tintShadow = B_NO_TINT; 17502f86ba45SStephan Aßmus } else if (contrast != 1.0) { 17512f86ba45SStephan Aßmus tintLight = B_NO_TINT + (tintLight - B_NO_TINT) * contrast; 17522f86ba45SStephan Aßmus tintShadow = B_NO_TINT + (tintShadow - B_NO_TINT) * contrast; 17532f86ba45SStephan Aßmus } 17542f86ba45SStephan Aßmus 17552f86ba45SStephan Aßmus rgb_color borderBevelShadow = tint_color(base, tintShadow); 17562f86ba45SStephan Aßmus rgb_color borderBevelLight = tint_color(base, tintLight); 17572f86ba45SStephan Aßmus 17582f86ba45SStephan Aßmus if (brightness < 1.0) { 17592f86ba45SStephan Aßmus borderBevelShadow.red = uint8(borderBevelShadow.red * brightness); 17602f86ba45SStephan Aßmus borderBevelShadow.green = uint8(borderBevelShadow.green * brightness); 17612f86ba45SStephan Aßmus borderBevelShadow.blue = uint8(borderBevelShadow.blue * brightness); 17622f86ba45SStephan Aßmus borderBevelLight.red = uint8(borderBevelLight.red * brightness); 17632f86ba45SStephan Aßmus borderBevelLight.green = uint8(borderBevelLight.green * brightness); 17642f86ba45SStephan Aßmus borderBevelLight.blue = uint8(borderBevelLight.blue * brightness); 17652f86ba45SStephan Aßmus } 17662f86ba45SStephan Aßmus 17672f86ba45SStephan Aßmus _DrawFrame(view, rect, borderBevelShadow, borderBevelShadow, 17682f86ba45SStephan Aßmus borderBevelLight, borderBevelLight, borders); 17692f86ba45SStephan Aßmus } 1770*4f579098SStephan Aßmus } 17712f86ba45SStephan Aßmus 17722f86ba45SStephan Aßmus 17732f86ba45SStephan Aßmus void 17742f86ba45SStephan Aßmus BControlLook::_DrawFrame(BView* view, BRect& rect, const rgb_color& left, 17752f86ba45SStephan Aßmus const rgb_color& top, const rgb_color& right, const rgb_color& bottom, 17762f86ba45SStephan Aßmus uint32 borders) 17772f86ba45SStephan Aßmus { 17782f86ba45SStephan Aßmus view->BeginLineArray(4); 17792f86ba45SStephan Aßmus 17802f86ba45SStephan Aßmus if (borders & B_LEFT_BORDER) { 17812f86ba45SStephan Aßmus view->AddLine( 17822f86ba45SStephan Aßmus BPoint(rect.left, rect.bottom), 17832f86ba45SStephan Aßmus BPoint(rect.left, rect.top), left); 17842f86ba45SStephan Aßmus rect.left++; 17852f86ba45SStephan Aßmus } 17862f86ba45SStephan Aßmus if (borders & B_TOP_BORDER) { 17872f86ba45SStephan Aßmus view->AddLine( 17882f86ba45SStephan Aßmus BPoint(rect.left, rect.top), 17892f86ba45SStephan Aßmus BPoint(rect.right, rect.top), top); 17902f86ba45SStephan Aßmus rect.top++; 17912f86ba45SStephan Aßmus } 17922f86ba45SStephan Aßmus if (borders & B_RIGHT_BORDER) { 17932f86ba45SStephan Aßmus view->AddLine( 17942f86ba45SStephan Aßmus BPoint(rect.right, rect.top), 17952f86ba45SStephan Aßmus BPoint(rect.right, rect.bottom), right); 17962f86ba45SStephan Aßmus rect.right--; 17972f86ba45SStephan Aßmus } 17982f86ba45SStephan Aßmus if (borders & B_BOTTOM_BORDER) { 17992f86ba45SStephan Aßmus view->AddLine( 18002f86ba45SStephan Aßmus BPoint(rect.left, rect.bottom), 18012f86ba45SStephan Aßmus BPoint(rect.right, rect.bottom), bottom); 18022f86ba45SStephan Aßmus rect.bottom--; 18032f86ba45SStephan Aßmus } 18042f86ba45SStephan Aßmus 18052f86ba45SStephan Aßmus view->EndLineArray(); 18062f86ba45SStephan Aßmus } 18072f86ba45SStephan Aßmus 18082f86ba45SStephan Aßmus 18092f86ba45SStephan Aßmus void 18102f86ba45SStephan Aßmus BControlLook::_DrawFrame(BView* view, BRect& rect, const rgb_color& left, 18112f86ba45SStephan Aßmus const rgb_color& top, const rgb_color& right, const rgb_color& bottom, 18122f86ba45SStephan Aßmus const rgb_color& rightTop, const rgb_color& leftBottom, uint32 borders) 18132f86ba45SStephan Aßmus { 18142f86ba45SStephan Aßmus view->BeginLineArray(6); 18152f86ba45SStephan Aßmus 18162f86ba45SStephan Aßmus if (borders & B_TOP_BORDER) { 18172f86ba45SStephan Aßmus if (borders & B_RIGHT_BORDER) { 18182f86ba45SStephan Aßmus view->AddLine( 18192f86ba45SStephan Aßmus BPoint(rect.left, rect.top), 18202f86ba45SStephan Aßmus BPoint(rect.right - 1, rect.top), top); 18212f86ba45SStephan Aßmus view->AddLine( 18222f86ba45SStephan Aßmus BPoint(rect.right, rect.top), 18232f86ba45SStephan Aßmus BPoint(rect.right, rect.top), rightTop); 18242f86ba45SStephan Aßmus } else { 18252f86ba45SStephan Aßmus view->AddLine( 18262f86ba45SStephan Aßmus BPoint(rect.left, rect.top), 18272f86ba45SStephan Aßmus BPoint(rect.right, rect.top), top); 18282f86ba45SStephan Aßmus } 18292f86ba45SStephan Aßmus rect.top++; 18302f86ba45SStephan Aßmus } 18312f86ba45SStephan Aßmus 18322f86ba45SStephan Aßmus if (borders & B_LEFT_BORDER) { 18332f86ba45SStephan Aßmus view->AddLine( 18342f86ba45SStephan Aßmus BPoint(rect.left, rect.top), 18352f86ba45SStephan Aßmus BPoint(rect.left, rect.bottom - 1), left); 18362f86ba45SStephan Aßmus view->AddLine( 18372f86ba45SStephan Aßmus BPoint(rect.left, rect.bottom), 18382f86ba45SStephan Aßmus BPoint(rect.left, rect.bottom), leftBottom); 18392f86ba45SStephan Aßmus rect.left++; 18402f86ba45SStephan Aßmus } 18412f86ba45SStephan Aßmus 18422f86ba45SStephan Aßmus if (borders & B_BOTTOM_BORDER) { 18432f86ba45SStephan Aßmus view->AddLine( 18442f86ba45SStephan Aßmus BPoint(rect.left, rect.bottom), 18452f86ba45SStephan Aßmus BPoint(rect.right, rect.bottom), bottom); 18462f86ba45SStephan Aßmus rect.bottom--; 18472f86ba45SStephan Aßmus } 18482f86ba45SStephan Aßmus 18492f86ba45SStephan Aßmus if (borders & B_RIGHT_BORDER) { 18502f86ba45SStephan Aßmus view->AddLine( 18512f86ba45SStephan Aßmus BPoint(rect.right, rect.bottom), 18522f86ba45SStephan Aßmus BPoint(rect.right, rect.top), right); 18532f86ba45SStephan Aßmus rect.right--; 18542f86ba45SStephan Aßmus } 18552f86ba45SStephan Aßmus 18562f86ba45SStephan Aßmus view->EndLineArray(); 18572f86ba45SStephan Aßmus } 18582f86ba45SStephan Aßmus 18592f86ba45SStephan Aßmus 18602f86ba45SStephan Aßmus //void 18612f86ba45SStephan Aßmus //BControlLook::_DrawShadowFrame(BView* view, BRect& rect, const rgb_color& base, 18622f86ba45SStephan Aßmus // uint32 borders) 18632f86ba45SStephan Aßmus //{ 18642f86ba45SStephan Aßmus // view->BeginLineArray(4); 18652f86ba45SStephan Aßmus // 18662f86ba45SStephan Aßmus // bevelColor1 = tint_color(base, 1.2); 18672f86ba45SStephan Aßmus // bevelColor2 = tint_color(base, 1.1); 18682f86ba45SStephan Aßmus // 18692f86ba45SStephan Aßmus // // shadow along left/top borders 18702f86ba45SStephan Aßmus // if (rect.Height() > 0 && borders & B_LEFT_BORDER) { 18712f86ba45SStephan Aßmus // view->AddLine(BPoint(rect.left, rect.top), 18722f86ba45SStephan Aßmus // BPoint(rect.left, rect.bottom), bevelColor1); 18732f86ba45SStephan Aßmus // rect.left++; 18742f86ba45SStephan Aßmus // } 18752f86ba45SStephan Aßmus // if (rect.Width() > 0 && borders & B_TOP_BORDER) { 18762f86ba45SStephan Aßmus // view->AddLine(BPoint(rect.left, rect.top), 18772f86ba45SStephan Aßmus // BPoint(rect.right, rect.top), bevelColor1); 18782f86ba45SStephan Aßmus // rect.top++; 18792f86ba45SStephan Aßmus // } 18802f86ba45SStephan Aßmus // 18812f86ba45SStephan Aßmus // // softer shadow along left/top borders 18822f86ba45SStephan Aßmus // if (rect.Height() > 0 && borders & B_LEFT_BORDER) { 18832f86ba45SStephan Aßmus // view->AddLine(BPoint(rect.left, rect.top), 18842f86ba45SStephan Aßmus // BPoint(rect.left, rect.bottom), bevelColor2); 18852f86ba45SStephan Aßmus // rect.left++; 18862f86ba45SStephan Aßmus // } 18872f86ba45SStephan Aßmus // if (rect.Width() > 0 && borders & B_TOP_BORDER) { 18882f86ba45SStephan Aßmus // view->AddLine(BPoint(rect.left, rect.top), 18892f86ba45SStephan Aßmus // BPoint(rect.right, rect.top), bevelColor2); 18902f86ba45SStephan Aßmus // rect.top++; 18912f86ba45SStephan Aßmus // } 18922f86ba45SStephan Aßmus // 18932f86ba45SStephan Aßmus // view->EndLineArray(); 18942f86ba45SStephan Aßmus //} 18952f86ba45SStephan Aßmus 18962f86ba45SStephan Aßmus 18972f86ba45SStephan Aßmus void 18982f86ba45SStephan Aßmus BControlLook::_FillGradient(BView* view, const BRect& rect, 18992f86ba45SStephan Aßmus const rgb_color& base, float topTint, float bottomTint, 19002f86ba45SStephan Aßmus enum orientation orientation) 19012f86ba45SStephan Aßmus { 19022f86ba45SStephan Aßmus BGradientLinear gradient; 19032f86ba45SStephan Aßmus _MakeGradient(gradient, rect, base, topTint, bottomTint, orientation); 19042f86ba45SStephan Aßmus view->FillRect(rect, gradient); 19052f86ba45SStephan Aßmus } 19062f86ba45SStephan Aßmus 19072f86ba45SStephan Aßmus 19082f86ba45SStephan Aßmus void 19092f86ba45SStephan Aßmus BControlLook::_FillGlossyGradient(BView* view, const BRect& rect, 19102f86ba45SStephan Aßmus const rgb_color& base, float topTint, float middle1Tint, 19112f86ba45SStephan Aßmus float middle2Tint, float bottomTint, enum orientation orientation) 19122f86ba45SStephan Aßmus { 19132f86ba45SStephan Aßmus BGradientLinear gradient; 19142f86ba45SStephan Aßmus _MakeGlossyGradient(gradient, rect, base, topTint, middle1Tint, 19152f86ba45SStephan Aßmus middle2Tint, bottomTint, orientation); 19162f86ba45SStephan Aßmus view->FillRect(rect, gradient); 19172f86ba45SStephan Aßmus } 19182f86ba45SStephan Aßmus 19192f86ba45SStephan Aßmus 19202f86ba45SStephan Aßmus void 19212f86ba45SStephan Aßmus BControlLook::_MakeGradient(BGradientLinear& gradient, const BRect& rect, 19222f86ba45SStephan Aßmus const rgb_color& base, float topTint, float bottomTint, 19232f86ba45SStephan Aßmus enum orientation orientation) const 19242f86ba45SStephan Aßmus { 19252f86ba45SStephan Aßmus gradient.AddColor(tint_color(base, topTint), 0); 19262f86ba45SStephan Aßmus gradient.AddColor(tint_color(base, bottomTint), 255); 19272f86ba45SStephan Aßmus gradient.SetStart(rect.LeftTop()); 19282f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) 19292f86ba45SStephan Aßmus gradient.SetEnd(rect.LeftBottom()); 19302f86ba45SStephan Aßmus else 19312f86ba45SStephan Aßmus gradient.SetEnd(rect.RightTop()); 19322f86ba45SStephan Aßmus } 19332f86ba45SStephan Aßmus 19342f86ba45SStephan Aßmus 19352f86ba45SStephan Aßmus void 19362f86ba45SStephan Aßmus BControlLook::_MakeGlossyGradient(BGradientLinear& gradient, const BRect& rect, 19372f86ba45SStephan Aßmus const rgb_color& base, float topTint, float middle1Tint, 19382f86ba45SStephan Aßmus float middle2Tint, float bottomTint, 19392f86ba45SStephan Aßmus enum orientation orientation) const 19402f86ba45SStephan Aßmus { 19412f86ba45SStephan Aßmus gradient.AddColor(tint_color(base, topTint), 0); 19422f86ba45SStephan Aßmus gradient.AddColor(tint_color(base, middle1Tint), 132); 19432f86ba45SStephan Aßmus gradient.AddColor(tint_color(base, middle2Tint), 136); 19442f86ba45SStephan Aßmus gradient.AddColor(tint_color(base, bottomTint), 255); 19452f86ba45SStephan Aßmus gradient.SetStart(rect.LeftTop()); 19462f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) 19472f86ba45SStephan Aßmus gradient.SetEnd(rect.LeftBottom()); 19482f86ba45SStephan Aßmus else 19492f86ba45SStephan Aßmus gradient.SetEnd(rect.RightTop()); 19502f86ba45SStephan Aßmus } 19512f86ba45SStephan Aßmus 19522f86ba45SStephan Aßmus 19532f86ba45SStephan Aßmus bool 19542f86ba45SStephan Aßmus BControlLook::_RadioButtonAndCheckBoxMarkColor(const rgb_color& base, 19552f86ba45SStephan Aßmus rgb_color& color, uint32 flags) const 19562f86ba45SStephan Aßmus { 19572f86ba45SStephan Aßmus if ((flags & (B_ACTIVATED | B_CLICKED)) == 0) { 19582f86ba45SStephan Aßmus // no mark to be drawn at all 19592f86ba45SStephan Aßmus return false; 19602f86ba45SStephan Aßmus } 19612f86ba45SStephan Aßmus 19622f86ba45SStephan Aßmus // TODO: Get from UI settings 19632f86ba45SStephan Aßmus color.red = 27; 19642f86ba45SStephan Aßmus color.green = 82; 19652f86ba45SStephan Aßmus color.blue = 140; 19662f86ba45SStephan Aßmus 19672f86ba45SStephan Aßmus float mix = 1.0; 19682f86ba45SStephan Aßmus 19692f86ba45SStephan Aßmus if (flags & B_DISABLED) { 19702f86ba45SStephan Aßmus // activated, but disabled 19712f86ba45SStephan Aßmus mix = 0.4; 19722f86ba45SStephan Aßmus } else if (flags & B_CLICKED) { 19732f86ba45SStephan Aßmus if (flags & B_ACTIVATED) { 19742f86ba45SStephan Aßmus // loosing activation 19752f86ba45SStephan Aßmus mix = 0.7; 19762f86ba45SStephan Aßmus } else { 19772f86ba45SStephan Aßmus // becoming activated 19782f86ba45SStephan Aßmus mix = 0.3; 19792f86ba45SStephan Aßmus } 19802f86ba45SStephan Aßmus } else { 19812f86ba45SStephan Aßmus // simply activated 19822f86ba45SStephan Aßmus } 19832f86ba45SStephan Aßmus 19842f86ba45SStephan Aßmus color.red = uint8(color.red * mix + base.red * (1.0 - mix)); 19852f86ba45SStephan Aßmus color.green = uint8(color.green * mix + base.green * (1.0 - mix)); 19862f86ba45SStephan Aßmus color.blue = uint8(color.blue * mix + base.blue * (1.0 - mix)); 19872f86ba45SStephan Aßmus 19882f86ba45SStephan Aßmus return true; 19892f86ba45SStephan Aßmus } 19902f86ba45SStephan Aßmus 19912f86ba45SStephan Aßmus 19922f86ba45SStephan Aßmus void 19932f86ba45SStephan Aßmus BControlLook::_DrawRoundBarCorner(BView* view, BRect& rect, 19942f86ba45SStephan Aßmus const BRect& updateRect, 19952f86ba45SStephan Aßmus const rgb_color& edgeLightColor, const rgb_color& edgeShadowColor, 19962f86ba45SStephan Aßmus const rgb_color& frameLightColor, const rgb_color& frameShadowColor, 19972f86ba45SStephan Aßmus const rgb_color& fillLightColor, const rgb_color& fillShadowColor, 19982f86ba45SStephan Aßmus float leftInset, float topInset, float rightInset, float bottomInset, 19992f86ba45SStephan Aßmus enum orientation orientation) 20002f86ba45SStephan Aßmus { 20012f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 20022f86ba45SStephan Aßmus return; 20032f86ba45SStephan Aßmus 20042f86ba45SStephan Aßmus BGradientLinear gradient; 20052f86ba45SStephan Aßmus gradient.AddColor(edgeShadowColor, 0); 20062f86ba45SStephan Aßmus gradient.AddColor(edgeLightColor, 255); 20072f86ba45SStephan Aßmus gradient.SetStart(rect.LeftTop()); 20082f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) 20092f86ba45SStephan Aßmus gradient.SetEnd(rect.LeftBottom()); 20102f86ba45SStephan Aßmus else 20112f86ba45SStephan Aßmus gradient.SetEnd(rect.RightTop()); 20122f86ba45SStephan Aßmus 20132f86ba45SStephan Aßmus view->FillEllipse(rect, gradient); 20142f86ba45SStephan Aßmus 20152f86ba45SStephan Aßmus rect.left += leftInset; 20162f86ba45SStephan Aßmus rect.top += topInset; 20172f86ba45SStephan Aßmus rect.right += rightInset; 20182f86ba45SStephan Aßmus rect.bottom += bottomInset; 20192f86ba45SStephan Aßmus 20202f86ba45SStephan Aßmus gradient.MakeEmpty(); 20212f86ba45SStephan Aßmus gradient.AddColor(frameShadowColor, 0); 20222f86ba45SStephan Aßmus gradient.AddColor(frameLightColor, 255); 20232f86ba45SStephan Aßmus gradient.SetStart(rect.LeftTop()); 20242f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) 20252f86ba45SStephan Aßmus gradient.SetEnd(rect.LeftBottom()); 20262f86ba45SStephan Aßmus else 20272f86ba45SStephan Aßmus gradient.SetEnd(rect.RightTop()); 20282f86ba45SStephan Aßmus 20292f86ba45SStephan Aßmus view->FillEllipse(rect, gradient); 20302f86ba45SStephan Aßmus 20312f86ba45SStephan Aßmus rect.left += leftInset; 20322f86ba45SStephan Aßmus rect.top += topInset; 20332f86ba45SStephan Aßmus rect.right += rightInset; 20342f86ba45SStephan Aßmus rect.bottom += bottomInset; 20352f86ba45SStephan Aßmus 20362f86ba45SStephan Aßmus gradient.MakeEmpty(); 20372f86ba45SStephan Aßmus gradient.AddColor(fillShadowColor, 0); 20382f86ba45SStephan Aßmus gradient.AddColor(fillLightColor, 255); 20392f86ba45SStephan Aßmus gradient.SetStart(rect.LeftTop()); 20402f86ba45SStephan Aßmus if (orientation == B_HORIZONTAL) 20412f86ba45SStephan Aßmus gradient.SetEnd(rect.LeftBottom()); 20422f86ba45SStephan Aßmus else 20432f86ba45SStephan Aßmus gradient.SetEnd(rect.RightTop()); 20442f86ba45SStephan Aßmus 20452f86ba45SStephan Aßmus view->FillEllipse(rect, gradient); 20462f86ba45SStephan Aßmus } 20472f86ba45SStephan Aßmus 20482f86ba45SStephan Aßmus 20492f86ba45SStephan Aßmus void 20502f86ba45SStephan Aßmus BControlLook::_DrawRoundCornerLeftTop(BView* view, BRect& rect, 20512f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, const rgb_color& edgeColor, 20522f86ba45SStephan Aßmus const rgb_color& frameColor, const rgb_color& bevelColor, 20532f86ba45SStephan Aßmus const BGradientLinear& fillGradient) 20542f86ba45SStephan Aßmus { 20552f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 20562f86ba45SStephan Aßmus return; 20572f86ba45SStephan Aßmus 20582f86ba45SStephan Aßmus BRegion clipping(rect); 20592f86ba45SStephan Aßmus view->ConstrainClippingRegion(&clipping); 20602f86ba45SStephan Aßmus 20612f86ba45SStephan Aßmus // background 20622f86ba45SStephan Aßmus view->SetHighColor(base); 20632f86ba45SStephan Aßmus view->FillRect(rect); 20642f86ba45SStephan Aßmus 20652f86ba45SStephan Aßmus // outer edge 20662f86ba45SStephan Aßmus BRect ellipseRect(rect); 20672f86ba45SStephan Aßmus ellipseRect.right = ellipseRect.left + ellipseRect.Width() * 2; 20682f86ba45SStephan Aßmus ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2; 20692f86ba45SStephan Aßmus 20702f86ba45SStephan Aßmus view->SetHighColor(edgeColor); 20712f86ba45SStephan Aßmus view->FillEllipse(ellipseRect); 20722f86ba45SStephan Aßmus 20732f86ba45SStephan Aßmus // frame 20742f86ba45SStephan Aßmus ellipseRect.InsetBy(1, 1); 20752f86ba45SStephan Aßmus view->SetHighColor(frameColor); 20762f86ba45SStephan Aßmus view->FillEllipse(ellipseRect); 20772f86ba45SStephan Aßmus 20782f86ba45SStephan Aßmus // bevel 20792f86ba45SStephan Aßmus ellipseRect.InsetBy(1, 1); 20802f86ba45SStephan Aßmus view->SetHighColor(bevelColor); 20812f86ba45SStephan Aßmus view->FillEllipse(ellipseRect); 20822f86ba45SStephan Aßmus 20832f86ba45SStephan Aßmus // fill 20842f86ba45SStephan Aßmus ellipseRect.InsetBy(1, 1); 20852f86ba45SStephan Aßmus view->FillEllipse(ellipseRect, fillGradient); 20862f86ba45SStephan Aßmus 20872f86ba45SStephan Aßmus view->ConstrainClippingRegion(NULL); 20882f86ba45SStephan Aßmus } 20892f86ba45SStephan Aßmus 20902f86ba45SStephan Aßmus void 20912f86ba45SStephan Aßmus BControlLook::_DrawRoundCornerRightTop(BView* view, BRect& rect, 20922f86ba45SStephan Aßmus const BRect& updateRect, const rgb_color& base, 20932f86ba45SStephan Aßmus const rgb_color& edgeTopColor, const rgb_color& edgeRightColor, 20942f86ba45SStephan Aßmus const rgb_color& frameTopColor, const rgb_color& frameRightColor, 20952f86ba45SStephan Aßmus const rgb_color& bevelTopColor, const rgb_color& bevelRightColor, 20962f86ba45SStephan Aßmus const BGradientLinear& fillGradient) 20972f86ba45SStephan Aßmus { 20982f86ba45SStephan Aßmus if (!rect.IsValid() || !rect.Intersects(updateRect)) 20992f86ba45SStephan Aßmus return; 21002f86ba45SStephan Aßmus 21012f86ba45SStephan Aßmus BRegion clipping(rect); 21022f86ba45SStephan Aßmus view->ConstrainClippingRegion(&clipping); 21032f86ba45SStephan Aßmus 21042f86ba45SStephan Aßmus // background 21052f86ba45SStephan Aßmus view->SetHighColor(base); 21062f86ba45SStephan Aßmus view->FillRect(rect); 21072f86ba45SStephan Aßmus 21082f86ba45SStephan Aßmus // outer edge 21092f86ba45SStephan Aßmus BRect ellipseRect(rect); 21102f86ba45SStephan Aßmus ellipseRect.left = ellipseRect.right - ellipseRect.Width() * 2; 21112f86ba45SStephan Aßmus ellipseRect.bottom = ellipseRect.top + ellipseRect.Height() * 2; 21122f86ba45SStephan Aßmus 21132f86ba45SStephan Aßmus BGradientLinear gradient; 21142f86ba45SStephan Aßmus gradient.AddColor(edgeTopColor, 0); 21152f86ba45SStephan Aßmus gradient.AddColor(edgeRightColor, 255); 21162f86ba45SStephan Aßmus gradient.SetStart(rect.LeftTop()); 21172f86ba45SStephan Aßmus gradient.SetEnd(rect.RightBottom()); 21182f86ba45SStephan Aßmus view->FillEllipse(ellipseRect, gradient); 21192f86ba45SStephan Aßmus 21202f86ba45SStephan Aßmus // frame 21212f86ba45SStephan Aßmus ellipseRect.InsetBy(1, 1); 21222f86ba45SStephan Aßmus rect.right--; 21232f86ba45SStephan Aßmus rect.top++; 21242f86ba45SStephan Aßmus if (frameTopColor == frameRightColor) { 21252f86ba45SStephan Aßmus view->SetHighColor(frameTopColor); 21262f86ba45SStephan Aßmus view->FillEllipse(ellipseRect); 21272f86ba45SStephan Aßmus } else { 21282f86ba45SStephan Aßmus gradient.SetColor(0, frameTopColor); 21292f86ba45SStephan Aßmus gradient.SetColor(1, frameRightColor); 21302f86ba45SStephan Aßmus gradient.SetStart(rect.LeftTop()); 21312f86ba45SStephan Aßmus gradient.SetEnd(rect.RightBottom()); 21322f86ba45SStephan Aßmus view->FillEllipse(ellipseRect, gradient); 21332f86ba45SStephan Aßmus } 21342f86ba45SStephan Aßmus 21352f86ba45SStephan Aßmus // bevel 21362f86ba45SStephan Aßmus ellipseRect.InsetBy(1, 1); 21372f86ba45SStephan Aßmus rect.right--; 21382f86ba45SStephan Aßmus rect.top++; 21392f86ba45SStephan Aßmus gradient.SetColor(0, bevelTopColor); 21402f86ba45SStephan Aßmus gradient.SetColor(1, bevelRightColor); 21412f86ba45SStephan Aßmus gradient.SetStart(rect.LeftTop()); 21422f86ba45SStephan Aßmus gradient.SetEnd(rect.RightBottom()); 21432f86ba45SStephan Aßmus view->FillEllipse(ellipseRect, gradient); 21442f86ba45SStephan Aßmus 21452f86ba45SStephan Aßmus // fill 21462f86ba45SStephan Aßmus ellipseRect.InsetBy(1, 1); 21472f86ba45SStephan Aßmus view->FillEllipse(ellipseRect, fillGradient); 21482f86ba45SStephan Aßmus 21492f86ba45SStephan Aßmus view->ConstrainClippingRegion(NULL); 21502f86ba45SStephan Aßmus } 21512f86ba45SStephan Aßmus 21522f86ba45SStephan Aßmus 21532f86ba45SStephan Aßmus // NOTE: May come from a add-on in the future. Initialized in 21542f86ba45SStephan Aßmus // InterfaceDefs.cpp 21552f86ba45SStephan Aßmus BControlLook* be_control_look = NULL; 21562f86ba45SStephan Aßmus 21572f86ba45SStephan Aßmus } // namespace BPrivate 2158