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 CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_ |
7 | 7 |
8 #include "chrome/browser/ui/views/location_bar/page_info_helper.h" | 8 #include "chrome/browser/ui/views/location_bar/page_info_helper.h" |
9 #include "ui/views/controls/image_view.h" | 9 #include "ui/views/controls/image_view.h" |
10 | 10 |
11 class LocationBarView; | 11 class LocationBarView; |
12 | 12 |
13 // LocationIconView is used to display an icon to the left of the edit field. | 13 // LocationIconView is used to display an icon to the left of the edit field. |
14 // This shows the user's current action while editing, the page security | 14 // This shows the user's current action while editing, the page security |
15 // status on https pages, or a globe for other URLs. | 15 // status on https pages, or a globe for other URLs. |
16 class LocationIconView : public views::ImageView { | 16 class LocationIconView : public views::ImageView { |
17 public: | 17 public: |
18 explicit LocationIconView(LocationBarView* location_bar); | 18 explicit LocationIconView(LocationBarView* location_bar); |
19 virtual ~LocationIconView(); | 19 virtual ~LocationIconView(); |
20 | 20 |
21 // views::ImageView: | 21 // views::ImageView: |
22 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; | 22 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; |
23 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; | 23 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; |
24 | 24 |
25 // ui::EventHandler: | 25 // ui::EventHandler: |
26 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; | 26 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; |
27 | 27 |
28 // Handles both click and gesture events by delegating to the page info | |
29 // helper in the appropriate circumstances. | |
30 void OnClickOrTap(const ui::LocatedEvent& event); | |
Peter Kasting
2014/03/18 18:37:46
Nit: This can be private, no?
Justin Donnelly
2014/03/21 20:07:46
Done.
| |
31 | |
28 // Whether we should show the tooltip for this icon or not. | 32 // Whether we should show the tooltip for this icon or not. |
29 void ShowTooltip(bool show); | 33 void ShowTooltip(bool show); |
30 | 34 |
31 PageInfoHelper* page_info_helper() { return &page_info_helper_; } | 35 PageInfoHelper* page_info_helper() { return &page_info_helper_; } |
32 | 36 |
33 private: | 37 private: |
34 PageInfoHelper page_info_helper_; | 38 PageInfoHelper page_info_helper_; |
39 LocationBarView* location_bar_; | |
35 | 40 |
36 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationIconView); | 41 DISALLOW_IMPLICIT_CONSTRUCTORS(LocationIconView); |
37 }; | 42 }; |
38 | 43 |
39 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_ | 44 #endif // CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_LOCATION_ICON_VIEW_H_ |
OLD | NEW |