1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_VIEWS_ROUNDED_RECT_PAINTER_H_
6 #define UI_VIEWS_ROUNDED_RECT_PAINTER_H_
8 #include "ui/gfx/rect.h"
9 #include "ui/views/painter.h"
10 #include "ui/views/views_export.h"
20 // Painter to draw a border with rounded corners.
21 class VIEWS_EXPORT RoundRectPainter
: public Painter
{
23 RoundRectPainter(SkColor border_color
, int corner_radius
);
24 virtual ~RoundRectPainter();
27 virtual gfx::Size
GetMinimumSize() const OVERRIDE
;
28 virtual void Paint(gfx::Canvas
* canvas
, const gfx::Size
& size
) OVERRIDE
;
31 const SkColor border_color_
;
32 const int corner_radius_
;
34 DISALLOW_COPY_AND_ASSIGN(RoundRectPainter
);
39 #endif // UI_VIEWS_ROUNDED_RECT_PAINTER_H_