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

1 2

  /external/chromium/chrome/browser/ui/views/bubble/
bubble.cc 5 #include "chrome/browser/ui/views/bubble/bubble.h"
9 #include "chrome/browser/ui/views/bubble/border_contents.h"
26 #include "chrome/browser/ui/views/bubble/border_widget_win.h"
34 // Background color of the bubble.
36 const SkColor Bubble::kBackgroundColor =
40 const SkColor Bubble::kBackgroundColor = SK_ColorWHITE;
49 // Bubble -----------------------------------------------------------------
52 Bubble* Bubble::Show(views::Widget* parent
57 Bubble* bubble = new Bubble; local
72 Bubble* bubble = new Bubble(views::WidgetGtk::TYPE_POPUP, local
    [all...]
bubble.h 9 #include "chrome/browser/ui/views/bubble/bubble_border.h"
20 // Bubble is used to display an arbitrary view above all other windows.
21 // Think of Bubble as a tooltip that allows you to embed an arbitrary view
22 // in the tooltip. Additionally the Bubble renders an arrow pointing at
23 // the region the info bubble is providing the information about.
25 // To use an Bubble, invoke Show() and it'll take care of the rest. The Bubble
33 class Bubble;
49 // Called when the Bubble is closing and is about to be deleted.
52 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) = 0
    [all...]
  /external/chromium/chrome/browser/ui/views/
page_info_bubble_view.h 10 #include "chrome/browser/ui/views/bubble/bubble.h"
36 void set_bubble(Bubble* bubble) { bubble_ = bubble; }
45 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape);
58 // Layout the sections within the bubble.
61 // Global pointer to the bubble that is hosting our view.
62 static Bubble* bubble_
    [all...]
first_run_bubble.h 12 #include "chrome/browser/ui/views/bubble/bubble.h"
17 class FirstRunBubble : public Bubble,
35 // Overridden from Bubble:
40 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape);
content_setting_bubble_contents.h 20 // were blocked, and the user can click one to get a bubble hosting a few
21 // controls. This class provides the content of that bubble. In general,
27 class Bubble;
47 // Sets |bubble_|, so we can close the bubble if needed. The caller owns
48 // the bubble and must keep it alive.
49 void set_bubble(Bubble* bubble) { bubble_ = bubble; }
75 // Provides data for this bubble.
87 // The Bubble holding us
    [all...]
pinned_contents_info_bubble.h 9 #include "chrome/browser/ui/views/bubble/border_contents.h"
10 #include "chrome/browser/ui/views/bubble/bubble.h"
13 // an Bubble that has its contents pinned to a specific location. See
36 // A specialization of the Bubble. Used to draw an Bubble which, in
38 // the bubble horizontally to fix it to a specific location. See base class
40 class PinnedContentsInfoBubble : public Bubble {
42 // Shows the Bubble (see base class function for details).
43 // |bubble_anchor| specifies how far horizontally to shift the bubble i
    [all...]
page_info_bubble_view.cc 11 #include "chrome/browser/ui/views/bubble/bubble.h"
40 // The duration of the animation that resizes the bubble once the async
85 Bubble* PageInfoBubbleView::bubble_ = NULL;
213 void PageInfoBubbleView::BubbleClosing(Bubble* bubble, bool closed_by_escape) {
231 // We want to make sure the info bubble closes once the link is activated. So
356 // Find where to point the bubble at.
371 // Show the bubble. If the bubble already exist - it will be closed first
374 Bubble* bubble = local
    [all...]
  /external/chromium/chrome/browser/chromeos/
setting_level_bubble.h 11 #include "chrome/browser/ui/views/bubble/bubble.h"
21 // Singleton class controlling a bubble displaying a level-based setting like
29 // Update the bubble's current level without showing the bubble onscreen.
30 // We _do_ still animate the level moving to |percent| in case the bubble is
35 // time that the bubble is shown. For example:
42 // displayed in response to 3) would show the bubble animating from 50% down
56 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape)
    [all...]
setting_level_bubble.cc 17 #include "chrome/browser/ui/views/bubble/bubble.h"
46 // TODO(glotov): remove this in favor of enabling Bubble class act
109 // Calculate position of the bubble.
112 // Note that (x, y) is the point of the center of the bubble.
116 bubble_ = Bubble::ShowFocusless(widget, // parent
161 void SettingLevelBubble::BubbleClosing(Bubble* bubble, bool) {
162 DCHECK(bubble == bubble_);
  /external/chromium/chrome/browser/ui/views/location_bar/
star_view.h 9 #include "chrome/browser/ui/views/bubble/bubble.h"
13 class Bubble;
38 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) OVERRIDE;
content_setting_image_view.h 11 #include "chrome/browser/ui/views/bubble/bubble.h"
17 class Bubble;
52 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) OVERRIDE;
67 // The currently shown info bubble if any.
68 Bubble* bubble_;
star_view.cc 49 // We want to show the bubble on mouse release; that is the standard behavior
68 void StarView::BubbleClosing(Bubble* bubble, bool closed_by_escape) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
TutorialJAJP.java 60 private List<Bubble> mBubbles = new ArrayList<Bubble>();
76 Bubble bubba = (Bubble) msg.obj;
83 class Bubble {
96 Bubble(Context context, View inputView,
103 Bubble(Context context, View inputView, int backgroundResource, int bx, int by,
221 Bubble button;
227 button = new Bubble(context, inputView,
236 button = new Bubble(context, inputView,
    [all...]
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bubble_view.h 11 #include "chrome/browser/ui/views/bubble/bubble.h"
30 // Bubble. BookmarkBubbleView provides views for unstarring and editing the
52 void set_bubble(Bubble* bubble) { bubble_ = bubble; }
54 // Invoked after the bubble has been shown.
80 // ButtonListener method, closes the bubble or opens the edit dialog.
90 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape)
    [all...]
bookmark_bubble_view.cc 18 #include "chrome/browser/ui/views/bubble/bubble.h"
47 // Minimum width for the fields - they will push out the size of the bubble if
49 // of the bubble far enough so that the edit button's left edge is to the right
53 // Bubble close image.
97 Bubble* bubble = Bubble::Show( local
100 // |bubble_| can be set to NULL in BubbleClosing when we close the bubble
102 // window loses activation while we are getting to ready to show the bubble,
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
TutorialEN.java 60 private List<Bubble> mBubbles = new ArrayList<Bubble>();
74 Bubble bubba = (Bubble) msg.obj;
81 class Bubble {
94 Bubble(Context context, View inputView,
101 Bubble(Context context, View inputView, int backgroundResource, int bx, int by,
217 Bubble button;
221 button = new Bubble(context, inputView,
231 button = new Bubble(context, inputView,
    [all...]
  /external/chromium/chrome/browser/ui/views/extensions/
extension_installed_bubble.h 10 #include "chrome/browser/ui/views/bubble/bubble.h"
21 // extension. Depending on the type of extension, the Bubble will
26 // bar which is shown while the Bubble is shown.
36 // The behavior and content of this Bubble comes in these varieties:
46 // is the browser window which will host the bubble. |icon| is the install
60 // Shows the bubble. Called internally via PostTask.
69 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape);
extension_installed_bubble.cc 40 // The Bubble uses a BubbleBorder which adds about 6 pixels of whitespace
147 void set_bubble(Bubble* bubble) { bubble_ = bubble; }
219 // title text and bubble arrow.
223 // The Bubble showing us.
224 Bubble* bubble_;
263 // to wait on showing the Bubble until not only the EXTENSION_LOADED gets
316 // install bubble to the chevron instead. If this is an incognito window,
356 Bubble* bubble = Bubble::Show(browser_view->GetWidget(), bounds local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
message_bubble.h 9 #include "chrome/browser/ui/views/bubble/bubble.h"
32 class MessageBubble : public Bubble,
36 // Create and show bubble. position_relative_to must be in screen coordinates.
45 // Create and show bubble which does not grab pointer. This creates
network_screen.h 65 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) {
109 // Pointer to shown message bubble. We don't need to delete it because
110 // it will be deleted on bubble closing.
views_login_display.h 62 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) {
74 // Pointer to shown message bubble. We don't need to delete it because
75 // it will be deleted on bubble closing.
message_bubble.cc 30 : Bubble(type, false), // don't show while screen is locked
114 // The bubble will be destroyed when it is closed.
115 MessageBubble* bubble = new MessageBubble( local
117 bubble->InitBubble(parent, position_relative_to, arrow_location,
118 bubble->text_->parent(), delegate);
119 return bubble;
131 // The bubble will be destroyed when it is closed.
132 MessageBubble* bubble = new MessageBubble( local
134 bubble->InitBubble(parent, position_relative_to, arrow_location,
135 bubble->text_->parent(), delegate)
    [all...]
eula_view.h 118 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) {
144 // Pointer to shown message bubble. We don't need to delete it because
145 // it will be deleted on bubble closing.
  /external/chromium/chrome/browser/chromeos/status/
network_menu_button.h 89 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) {
135 // Notification bubble for 3G promo.
  /external/chromium/chrome/browser/speech/
speech_input_bubble_views.cc 12 #include "chrome/browser/ui/views/bubble/bubble.h"
266 // Returns the screen rectangle to use as the info bubble's target.
271 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape);
277 Bubble* bubble_;
314 void SpeechInputBubbleImpl::BubbleClosing(Bubble* bubble,
341 bubble_ = Bubble::Show(toplevel_widget->GetWidget(),
348 // destroy the bubble immediately instead of waiting for the fade animatio
    [all...]

Completed in 1661 milliseconds

1 2