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 UI_VIEWS_CONTROLS_LINK_H_ | 5 #ifndef UI_VIEWS_CONTROLS_LINK_H_ |
6 #define UI_VIEWS_CONTROLS_LINK_H_ | 6 #define UI_VIEWS_CONTROLS_LINK_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "third_party/skia/include/core/SkColor.h" | 10 #include "third_party/skia/include/core/SkColor.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 virtual ~Link(); | 29 virtual ~Link(); |
30 | 30 |
31 static SkColor GetDefaultEnabledColor(); | 31 static SkColor GetDefaultEnabledColor(); |
32 | 32 |
33 const LinkListener* listener() { return listener_; } | 33 const LinkListener* listener() { return listener_; } |
34 void set_listener(LinkListener* listener) { listener_ = listener; } | 34 void set_listener(LinkListener* listener) { listener_ = listener; } |
35 | 35 |
36 // Label: | 36 // Label: |
37 virtual const char* GetClassName() const OVERRIDE; | 37 virtual const char* GetClassName() const OVERRIDE; |
38 virtual gfx::NativeCursor GetCursor(const ui::MouseEvent& event) OVERRIDE; | 38 virtual gfx::NativeCursor GetCursor(const ui::MouseEvent& event) OVERRIDE; |
39 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; | |
40 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; | 39 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; |
41 virtual bool OnMouseDragged(const ui::MouseEvent& event) OVERRIDE; | 40 virtual bool OnMouseDragged(const ui::MouseEvent& event) OVERRIDE; |
42 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; | 41 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; |
43 virtual void OnMouseCaptureLost() OVERRIDE; | 42 virtual void OnMouseCaptureLost() OVERRIDE; |
44 virtual bool OnKeyPressed(const ui::KeyEvent& event) OVERRIDE; | 43 virtual bool OnKeyPressed(const ui::KeyEvent& event) OVERRIDE; |
45 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; | 44 virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE; |
46 virtual bool SkipDefaultKeyEventProcessing( | 45 virtual bool SkipDefaultKeyEventProcessing( |
47 const ui::KeyEvent& event) OVERRIDE; | 46 const ui::KeyEvent& event) OVERRIDE; |
48 virtual void GetAccessibleState(ui::AXViewState* state) OVERRIDE; | 47 virtual void GetAccessibleState(ui::AXViewState* state) OVERRIDE; |
49 virtual void OnEnabledChanged() OVERRIDE; | 48 virtual void OnEnabledChanged() OVERRIDE; |
50 virtual void OnFocus() OVERRIDE; | 49 virtual void OnFocus() OVERRIDE; |
51 virtual void OnBlur() OVERRIDE; | 50 virtual void OnBlur() OVERRIDE; |
52 virtual void SetFontList(const gfx::FontList& font_list) OVERRIDE; | 51 virtual void SetFontList(const gfx::FontList& font_list) OVERRIDE; |
53 virtual void SetText(const base::string16& text) OVERRIDE; | 52 virtual void SetText(const base::string16& text) OVERRIDE; |
54 virtual void SetEnabledColor(SkColor color) OVERRIDE; | 53 virtual void SetEnabledColor(SkColor color) OVERRIDE; |
55 | 54 |
| 55 // ui::EventTarget: |
| 56 virtual bool CanAcceptEvent(const ui::Event& event) OVERRIDE; |
| 57 |
56 void SetPressedColor(SkColor color); | 58 void SetPressedColor(SkColor color); |
57 void SetUnderline(bool underline); | 59 void SetUnderline(bool underline); |
58 | 60 |
59 static const char kViewClassName[]; | 61 static const char kViewClassName[]; |
60 | 62 |
61 private: | 63 private: |
62 void Init(); | 64 void Init(); |
63 | 65 |
64 void SetPressed(bool pressed); | 66 void SetPressed(bool pressed); |
65 | 67 |
(...skipping 12 matching lines...) Expand all Loading... |
78 | 80 |
79 // The color when the link is pressed. | 81 // The color when the link is pressed. |
80 SkColor requested_pressed_color_; | 82 SkColor requested_pressed_color_; |
81 | 83 |
82 DISALLOW_COPY_AND_ASSIGN(Link); | 84 DISALLOW_COPY_AND_ASSIGN(Link); |
83 }; | 85 }; |
84 | 86 |
85 } // namespace views | 87 } // namespace views |
86 | 88 |
87 #endif // UI_VIEWS_CONTROLS_LINK_H_ | 89 #endif // UI_VIEWS_CONTROLS_LINK_H_ |
OLD | NEW |