HomeSort by relevance Sort by last modified time
    Searched refs:Painter (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/chromium_org/ui/v2/public/
painter.h 16 class V2_EXPORT Painter {
18 virtual ~Painter() {}
view.h 15 #include "ui/v2/public/painter.h"
25 class Painter;
43 void SetPainter(Painter* painter);
95 scoped_ptr<Painter> painter_;
  /external/chromium_org/ui/views/
painter.h 27 // Painter, as the name implies, is responsible for painting in a particular
28 // region. Think of Painter as a Border or Background that can be painted
30 class VIEWS_EXPORT Painter {
32 Painter();
33 virtual ~Painter();
35 // A convenience method for painting a Painter in a particular region.
36 // This translates the canvas to x/y and paints the painter.
38 Painter* painter,
45 Painter* focus_painter)
    [all...]
painter.cc 5 #include "ui/views/painter.h"
27 class DashedFocusPainter : public Painter {
32 // Painter:
61 class SolidFocusPainter : public Painter {
66 // Painter:
98 class GradientPainter : public Painter {
106 // Painter:
166 class ImagePainter : public Painter {
177 // Painter:
210 // Painter -------------------------------------------------------------------
    [all...]
background.cc 12 #include "ui/views/painter.h"
37 BackgroundPainter(bool owns_painter, Painter* painter)
38 : owns_painter_(owns_painter), painter_(painter) {
39 DCHECK(painter);
49 Painter::PaintPainterAt(canvas, painter_, view->GetLocalBounds());
54 Painter* painter_;
104 true, Painter::CreateVerticalGradient(color1, color2));
117 true, Painter::CreateVerticalMultiColorGradient(colors, pos, count));
126 Painter* painter)
    [all...]
round_rect_painter.h 9 #include "ui/views/painter.h"
20 // Painter to draw a border with rounded corners.
21 class VIEWS_EXPORT RoundRectPainter : public Painter {
26 // Painter:
border.h 21 class Painter;
67 // Creates a Border from the specified Painter. The border owns the painter,
68 // thus the painter is deleted when the Border is deleted.
70 static scoped_ptr<Border> CreateBorderPainter(Painter* painter,
background.h 24 class Painter;
74 // Creates a Background from the specified Painter. If owns_painter is
75 // true, the Painter is deleted when the Border is deleted.
77 Painter* painter);
88 // gradient backgrounds, it's the midpoint of the gradient; for painter
border.cc 10 #include "ui/views/painter.h"
99 explicit BorderPainter(Painter* painter, const gfx::Insets& insets)
100 : painter_(painter),
102 DCHECK(painter);
109 Painter::PaintPainterAt(canvas, painter_.get(), view.GetLocalBounds());
121 scoped_ptr<Painter> painter_;
164 scoped_ptr<Border> Border::CreateBorderPainter(Painter* painter,
166 return scoped_ptr<Border>(new BorderPainter(painter, insets))
    [all...]
  /external/chromium_org/ui/app_list/views/
progress_bar_view.h 13 class Painter;
29 scoped_ptr<views::Painter> background_painter_;
30 scoped_ptr<views::Painter> bar_painter_;
progress_bar_view.cc 13 #include "ui/views/painter.h"
29 : background_painter_(views::Painter::CreateImagePainter(
  /external/chromium_org/ui/views/controls/button/
blue_button.cc 57 button_border->SetPainter(false, STATE_NORMAL, Painter::CreateImagePainter(
59 button_border->SetPainter(false, STATE_HOVERED, Painter::CreateImagePainter(
61 button_border->SetPainter(false, STATE_PRESSED, Painter::CreateImagePainter(
63 button_border->SetPainter(false, STATE_DISABLED, Painter::CreateImagePainter(
65 button_border->SetPainter(true, STATE_NORMAL, Painter::CreateImagePainter(
67 button_border->SetPainter(true, STATE_HOVERED, Painter::CreateImagePainter(
69 button_border->SetPainter(true, STATE_PRESSED, Painter::CreateImagePainter(
71 button_border->SetPainter(true, STATE_DISABLED, Painter::CreateImagePainter(
label_button_border.cc 40 Painter* painter = local
43 // Paint any corresponding unfocused painter if there is no focused painter.
44 if (!painter && extra.button.is_focused)
45 painter = border->GetPainter(false, Button::GetButtonStateFrom(state));
46 if (painter)
47 Painter::PaintPainterAt(canvas, painter, rect);
63 Painter::CreateImagePainter
    [all...]
label_button_border.h 14 #include "ui/views/painter.h"
33 // Get or set the painter used for the specified |focused| button |state|.
34 // LabelButtonBorder takes and retains ownership of |painter|.
35 Painter* GetPainter(bool focused, Button::ButtonState state);
36 void SetPainter(bool focused, Button::ButtonState state, Painter* painter);
40 scoped_ptr<Painter> painters_[2][Button::STATE_COUNT];
image_button.h 16 class Painter;
58 void SetFocusPainter(scoped_ptr<Painter> focus_painter);
88 Painter* focus_painter() { return focus_painter_.get(); }
115 scoped_ptr<Painter> focus_painter_;
label_button.h 20 class Painter;
85 void SetFocusPainter(scoped_ptr<Painter> focus_painter);
86 Painter* focus_painter() { return focus_painter_.get(); }
194 scoped_ptr<Painter> focus_painter_;
  /external/chromium_org/ash/system/tray/
tray_popup_label_button.cc 11 #include "ui/views/painter.h"
23 SetFocusPainter(views::Painter::CreateSolidFocusPainter(
tray_popup_label_button_border.cc 31 views::Painter::CreateImageGridPainter(
34 views::Painter::CreateImageGridPainter(
49 views::Painter::CreateImageGridPainter(
52 views::Painter::CreateImageGridPainter(
  /external/chromium_org/chrome/browser/ui/views/location_bar/
icon_label_bubble_view.h 24 class Painter;
74 scoped_ptr<views::Painter> background_painter_;
75 scoped_ptr<views::Painter> hover_background_painter_;
search_button.cc 25 views::Painter::CreateImageGridPainter(kSearchButtonNormalImages));
30 views::Painter::CreateImageGridPainter(kSearchButtonHoveredImages));
35 views::Painter::CreateImageGridPainter(kSearchButtonPressedImages));
icon_label_bubble_view.cc 13 #include "ui/views/painter.h"
24 views::Painter::CreateImageGridPainter(background_images)),
40 views::Painter::CreateImageGridPainter(hover_background_images));
120 views::Painter* painter = (in_hover_ && hover_background_painter_) ? local
122 painter->Paint(canvas, size());
  /external/chromium_org/ui/views/controls/
image_view.h 17 class Painter;
80 void SetFocusPainter(scoped_ptr<Painter> focus_painter);
132 scoped_ptr<views::Painter> focus_painter_;
  /external/chromium_org/ui/message_center/views/
notification_button.h 10 #include "ui/views/painter.h"
44 scoped_ptr<views::Painter> focus_painter_;
  /external/chromium_org/chrome/browser/ui/views/toolbar/
back_button.cc 9 #include "ui/views/painter.h"
33 SetFocusPainter(views::Painter::CreateDashedFocusPainterWithInsets(
  /external/chromium_org/chrome/browser/ui/views/
find_bar_view.h 23 class Painter;
125 scoped_ptr<views::Painter> find_text_border_;

Completed in 187 milliseconds

1 2 3