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

1 2 3 4 5

  /external/chromium_org/ui/views/bubble/
bubble_border_unittest.cc 15 EXPECT_EQ(BubbleBorder::TOP_RIGHT,
16 BubbleBorder::horizontal_mirror(BubbleBorder::TOP_LEFT));
17 EXPECT_EQ(BubbleBorder::TOP_LEFT,
18 BubbleBorder::horizontal_mirror(BubbleBorder::TOP_RIGHT));
20 EXPECT_EQ(BubbleBorder::BOTTOM_RIGHT,
21 BubbleBorder::horizontal_mirror(BubbleBorder::BOTTOM_LEFT));
22 EXPECT_EQ(BubbleBorder::BOTTOM_LEFT
    [all...]
bubble_frame_view_unittest.cc 17 const BubbleBorder::Arrow kArrow = BubbleBorder::TOP_LEFT;
26 SetBubbleBorder(new BubbleBorder(kArrow, BubbleBorder::NO_SHADOW, kColor));
64 frame.bubble_border()->set_arrow(BubbleBorder::TOP_LEFT);
69 EXPECT_EQ(BubbleBorder::TOP_LEFT, frame.bubble_border()->arrow());
75 frame.bubble_border()->set_arrow(BubbleBorder::TOP_RIGHT);
80 EXPECT_EQ(BubbleBorder::TOP_LEFT, frame.bubble_border()->arrow());
86 frame.bubble_border()->set_arrow(BubbleBorder::BOTTOM_RIGHT);
91 EXPECT_EQ(BubbleBorder::TOP_LEFT, frame.bubble_border()->arrow())
    [all...]
bubble_delegate.h 35 BubbleDelegateView(View* anchor_view, BubbleBorder::Arrow arrow);
67 BubbleBorder::Arrow arrow() const { return arrow_; }
68 void set_arrow(BubbleBorder::Arrow arrow) { arrow_ = arrow; }
70 BubbleBorder::Shadow shadow() const { return shadow_; }
71 void set_shadow(BubbleBorder::Shadow shadow) { shadow_ = shadow; }
115 void SetAlignment(BubbleBorder::BubbleAlignment alignment);
118 void SetArrowPaintType(BubbleBorder::ArrowPaintType paint_type);
182 BubbleBorder::Arrow arrow_;
185 BubbleBorder::Shadow shadow_;
bubble_border.cc 99 BorderImages* GetBorderImages(BubbleBorder::Shadow shadow) {
101 static BorderImages* kBorderImages[BubbleBorder::SHADOW_COUNT] = { NULL };
103 CHECK_LT(shadow, BubbleBorder::SHADOW_COUNT);
109 case BubbleBorder::SHADOW:
114 case BubbleBorder::NO_SHADOW:
115 case BubbleBorder::NO_SHADOW_OPAQUE_BORDER:
118 case BubbleBorder::BIG_SHADOW:
121 case BubbleBorder::SMALL_SHADOW:
124 case BubbleBorder::SHADOW_COUNT:
134 BubbleBorder::BubbleBorder(Arrow arrow, Shadow shadow, SkColor color
    [all...]
bubble_frame_view.h 19 class BubbleBorder;
57 BubbleBorder* bubble_border() const { return bubble_border_; }
58 void SetBubbleBorder(BubbleBorder* border);
91 BubbleBorder* bubble_border_;
tray_bubble_view.cc 49 class TrayBubbleBorder : public BubbleBorder {
54 : BubbleBorder(params.arrow, params.shadow, params.arrow_color),
66 // Overridden from BubbleBorder.
72 BubbleBorder::GetBounds(position_relative_to, contents_size);
74 if (arrow() == BubbleBorder::BOTTOM_RIGHT ||
75 arrow() == BubbleBorder::BOTTOM_LEFT) {
80 } else if (arrow() == BubbleBorder::LEFT_BOTTOM) {
82 } else if (arrow() == BubbleBorder::RIGHT_BOTTOM) {
102 if (arrow() == BubbleBorder::BOTTOM_RIGHT ||
103 arrow() == BubbleBorder::BOTTOM_LEFT)
    [all...]
tray_bubble_view.h 102 views::BubbleBorder::Arrow arrow;
104 views::BubbleBorder::ArrowPaintType arrow_paint_type;
105 views::BubbleBorder::Shadow shadow;
106 views::BubbleBorder::BubbleAlignment arrow_alignment;
131 void SetArrowPaintType(views::BubbleBorder::ArrowPaintType arrow_paint_type);
bubble_border.h 25 class VIEWS_EXPORT BubbleBorder : public Border {
83 BubbleBorder(Arrow arrow, Shadow shadow, SkColor color);
84 virtual ~BubbleBorder();
188 DISALLOW_COPY_AND_ASSIGN(BubbleBorder);
191 // A Background that clips itself to the specified BubbleBorder and uses
192 // the background color of the BubbleBorder.
195 explicit BubbleBackground(BubbleBorder* border) : border_(border) {}
201 BubbleBorder* border_;
  /external/chromium_org/ui/views/examples/
bubble_example.cc 21 BubbleBorder::Arrow arrows[] = {
22 BubbleBorder::TOP_LEFT, BubbleBorder::TOP_CENTER,
23 BubbleBorder::TOP_RIGHT, BubbleBorder::RIGHT_TOP,
24 BubbleBorder::RIGHT_CENTER, BubbleBorder::RIGHT_BOTTOM,
25 BubbleBorder::BOTTOM_RIGHT, BubbleBorder::BOTTOM_CENTER,
26 BubbleBorder::BOTTOM_LEFT, BubbleBorder::LEFT_BOTTOM
    [all...]
  /external/chromium/chrome/browser/ui/views/bubble/
border_contents_unittest.cc 18 BubbleBorder* bubble_border() const { return bubble_border_; }
43 BubbleBorder::TOP_LEFT,
48 BubbleBorder::ArrowLocation arrow_location =
50 EXPECT_TRUE(BubbleBorder::has_arrow(arrow_location));
51 EXPECT_TRUE(BubbleBorder::is_arrow_on_top(arrow_location));
52 EXPECT_TRUE(BubbleBorder::is_arrow_on_left(arrow_location));
60 BubbleBorder::TOP_RIGHT,
66 EXPECT_TRUE(BubbleBorder::has_arrow(arrow_location));
67 EXPECT_TRUE(BubbleBorder::is_arrow_on_top(arrow_location));
68 EXPECT_TRUE(BubbleBorder::is_arrow_on_left(arrow_location))
    [all...]
border_contents.h 33 BubbleBorder::ArrowLocation arrow_location,
52 BubbleBorder* bubble_border_;
62 BubbleBorder::ArrowLocation* arrow_location,
border_contents.cc 15 BubbleBorder::ArrowLocation arrow_location = BubbleBorder::TOP_LEFT;
17 arrow_location = BubbleBorder::horizontal_mirror(arrow_location);
20 bubble_border_ = new BubbleBorder(arrow_location);
31 BubbleBorder::ArrowLocation arrow_location,
37 arrow_location = BubbleBorder::horizontal_mirror(arrow_location);
86 BubbleBorder::ArrowLocation* arrow_location,
94 BubbleBorder::ArrowLocation original_arrow_location = *arrow_location;
96 vertical ? BubbleBorder::vertical_mirror(*arrow_location) :
97 BubbleBorder::horizontal_mirror(*arrow_location)
    [all...]
bubble_border.h 17 class BubbleBorder : public views::Border {
36 explicit BubbleBorder(ArrowLocation arrow_location)
109 virtual ~BubbleBorder() { }
154 DISALLOW_COPY_AND_ASSIGN(BubbleBorder);
157 // A Background that clips itself to the specified BubbleBorder and uses
158 // the background color of the BubbleBorder.
161 explicit BubbleBackground(BubbleBorder* border) : border_(border) {}
167 BubbleBorder* border_;
bubble_border.cc 15 SkBitmap* BubbleBorder::left_ = NULL;
16 SkBitmap* BubbleBorder::top_left_ = NULL;
17 SkBitmap* BubbleBorder::top_ = NULL;
18 SkBitmap* BubbleBorder::top_right_ = NULL;
19 SkBitmap* BubbleBorder::right_ = NULL;
20 SkBitmap* BubbleBorder::bottom_right_ = NULL;
21 SkBitmap* BubbleBorder::bottom_ = NULL;
22 SkBitmap* BubbleBorder::bottom_left_ = NULL;
23 SkBitmap* BubbleBorder::top_arrow_ = NULL;
24 SkBitmap* BubbleBorder::bottom_arrow_ = NULL
    [all...]
border_widget_win.h 34 BubbleBorder::ArrowLocation arrow_location,
bubble.h 96 BubbleBorder::ArrowLocation arrow_location,
108 BubbleBorder::ArrowLocation arrow_location,
145 BubbleBorder::ArrowLocation arrow_location,
210 BubbleBorder::ArrowLocation arrow_location_;
  /external/chromium_org/ui/views/controls/menu/
menu_scroll_view_container.h 50 BubbleBorder::Arrow BubbleBorderTypeFromAnchor(
66 BubbleBorder::Arrow arrow_;
69 BubbleBorder* bubble_border_;
menu_scroll_view_container.cc 184 arrow_(BubbleBorder::NONE),
197 if (arrow_ != BubbleBorder::NONE)
204 return arrow_ != BubbleBorder::NONE;
281 arrow_ = BubbleBorder::NONE;
317 bubble_border_ = new BubbleBorder(arrow_,
318 BubbleBorder::SMALL_SHADOW,
324 BubbleBorder::Arrow
329 return BubbleBorder::RIGHT_CENTER;
331 return BubbleBorder::LEFT_CENTER;
333 return BubbleBorder::BOTTOM_CENTER
    [all...]
  /external/chromium_org/ash/
popup_message.h 53 views::BubbleBorder::Arrow arrow,
76 views::BubbleBorder::Arrow arrow_orientation_;
  /external/chromium/chrome/browser/ui/views/
pinned_contents_info_bubble.h 23 BubbleBorder::ArrowLocation arrow_location,
50 BubbleBorder::ArrowLocation arrow_location,
  /external/chromium_org/ash/shell/
bubble.cc 18 views::BubbleBorder::Arrow arrow;
41 config.arrow = views::BubbleBorder::TOP_LEFT;
  /external/chromium_org/chrome/browser/ui/views/
avatar_menu_button.cc 101 this, views::BubbleBorder::TOP_LEFT,
102 views::BubbleBorder::ALIGN_ARROW_TO_MID_ANCHOR, bounds, browser_);
105 this, views::BubbleBorder::TOP_LEFT,
106 views::BubbleBorder::ALIGN_ARROW_TO_MID_ANCHOR, bounds, browser_);
avatar_menu_bubble_view.h 52 views::BubbleBorder::Arrow arrow,
53 views::BubbleBorder::BubbleAlignment border_alignment,
91 views::BubbleBorder::Arrow arrow,
profile_chooser_view.h 39 views::BubbleBorder::Arrow arrow,
40 views::BubbleBorder::BubbleAlignment border_alignment,
62 views::BubbleBorder::Arrow arrow,
  /external/chromium_org/ui/views/window/
dialog_delegate.cc 185 frame->SetBubbleBorder(new BubbleBorder(
186 BubbleBorder::NONE,
187 BubbleBorder::NO_SHADOW_OPAQUE_BORDER,
190 frame->SetBubbleBorder(new BubbleBorder(BubbleBorder::FLOAT,
191 BubbleBorder::SMALL_SHADOW,

Completed in 768 milliseconds

1 2 3 4 5