OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ASH_SYSTEM_TRAY_TRAY_BUBBLE_VIEW_H_ | 5 #ifndef ASH_SYSTEM_TRAY_TRAY_BUBBLE_VIEW_H_ |
6 #define ASH_SYSTEM_TRAY_TRAY_BUBBLE_VIEW_H_ | 6 #define ASH_SYSTEM_TRAY_TRAY_BUBBLE_VIEW_H_ |
7 | 7 |
8 #include "ash/wm/shelf_types.h" | 8 #include "ash/wm/shelf_types.h" |
9 #include "ui/aura/event_filter.h" | 9 #include "ui/aura/event_filter.h" |
10 #include "ui/views/bubble/bubble_delegate.h" | 10 #include "ui/views/bubble/bubble_delegate.h" |
(...skipping 27 matching lines...) Expand all Loading... |
38 // Set widget_ and tray_view_, set up animations, and show the bubble. | 38 // Set widget_ and tray_view_, set up animations, and show the bubble. |
39 // Must occur after bubble_view->CreateBubble() is called. | 39 // Must occur after bubble_view->CreateBubble() is called. |
40 void InitializeAndShowBubble(views::Widget* widget, | 40 void InitializeAndShowBubble(views::Widget* widget, |
41 TrayBubbleView* bubble_view, | 41 TrayBubbleView* bubble_view, |
42 views::View* tray_view); | 42 views::View* tray_view); |
43 | 43 |
44 virtual void BubbleViewDestroyed() = 0; | 44 virtual void BubbleViewDestroyed() = 0; |
45 virtual void OnMouseEnteredView() = 0; | 45 virtual void OnMouseEnteredView() = 0; |
46 virtual void OnMouseExitedView() = 0; | 46 virtual void OnMouseExitedView() = 0; |
47 virtual void OnClickedOutsideView() = 0; | 47 virtual void OnClickedOutsideView() = 0; |
48 virtual string16 GetAccessibleName() = 0; | |
49 | 48 |
50 // Overridden from aura::EventFilter. | 49 // Overridden from aura::EventFilter. |
51 virtual bool PreHandleKeyEvent(aura::Window* target, | 50 virtual bool PreHandleKeyEvent(aura::Window* target, |
52 ui::KeyEvent* event) OVERRIDE; | 51 ui::KeyEvent* event) OVERRIDE; |
53 virtual bool PreHandleMouseEvent(aura::Window* target, | 52 virtual bool PreHandleMouseEvent(aura::Window* target, |
54 ui::MouseEvent* event) OVERRIDE; | 53 ui::MouseEvent* event) OVERRIDE; |
55 virtual ui::TouchStatus PreHandleTouchEvent( | 54 virtual ui::TouchStatus PreHandleTouchEvent( |
56 aura::Window* target, | 55 aura::Window* target, |
57 ui::TouchEvent* event) OVERRIDE; | 56 ui::TouchEvent* event) OVERRIDE; |
58 virtual ui::GestureStatus PreHandleGestureEvent( | 57 virtual ui::GestureStatus PreHandleGestureEvent( |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 InitParams params_; | 132 InitParams params_; |
134 Host* host_; | 133 Host* host_; |
135 | 134 |
136 DISALLOW_COPY_AND_ASSIGN(TrayBubbleView); | 135 DISALLOW_COPY_AND_ASSIGN(TrayBubbleView); |
137 }; | 136 }; |
138 | 137 |
139 } // namespace internal | 138 } // namespace internal |
140 } // namespace ash | 139 } // namespace ash |
141 | 140 |
142 #endif // ASH_SYSTEM_TRAY_TRAY_BUBBLE_VIEW_H_ | 141 #endif // ASH_SYSTEM_TRAY_TRAY_BUBBLE_VIEW_H_ |
OLD | NEW |