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 "ui/views/controls/label.h" | 10 #include "ui/views/controls/label.h" |
(...skipping 16 matching lines...) Expand all Loading... |
27 explicit Link(const string16& title); | 27 explicit Link(const string16& title); |
28 virtual ~Link(); | 28 virtual ~Link(); |
29 | 29 |
30 const LinkListener* listener() { return listener_; } | 30 const LinkListener* listener() { return listener_; } |
31 void set_listener(LinkListener* listener) { listener_ = listener; } | 31 void set_listener(LinkListener* listener) { listener_ = listener; } |
32 | 32 |
33 // Overridden from View: | 33 // Overridden from View: |
34 virtual void OnEnabledChanged() OVERRIDE; | 34 virtual void OnEnabledChanged() OVERRIDE; |
35 virtual std::string GetClassName() const OVERRIDE; | 35 virtual std::string GetClassName() const OVERRIDE; |
36 virtual gfx::NativeCursor GetCursor(const MouseEvent& event) OVERRIDE; | 36 virtual gfx::NativeCursor GetCursor(const MouseEvent& event) OVERRIDE; |
37 virtual bool HitTest(const gfx::Point& l) const OVERRIDE; | 37 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; |
38 virtual bool OnMousePressed(const MouseEvent& event) OVERRIDE; | 38 virtual bool OnMousePressed(const MouseEvent& event) OVERRIDE; |
39 virtual bool OnMouseDragged(const MouseEvent& event) OVERRIDE; | 39 virtual bool OnMouseDragged(const MouseEvent& event) OVERRIDE; |
40 virtual void OnMouseReleased(const MouseEvent& event) OVERRIDE; | 40 virtual void OnMouseReleased(const MouseEvent& event) OVERRIDE; |
41 virtual void OnMouseCaptureLost() OVERRIDE; | 41 virtual void OnMouseCaptureLost() OVERRIDE; |
42 virtual ui::GestureStatus OnGestureEvent(const GestureEvent& event) OVERRIDE; | 42 virtual ui::GestureStatus OnGestureEvent(const GestureEvent& event) OVERRIDE; |
43 virtual bool OnKeyPressed(const KeyEvent& event) OVERRIDE; | 43 virtual bool OnKeyPressed(const KeyEvent& event) OVERRIDE; |
44 virtual bool SkipDefaultKeyEventProcessing(const KeyEvent& event) OVERRIDE; | 44 virtual bool SkipDefaultKeyEventProcessing(const KeyEvent& event) OVERRIDE; |
45 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; | 45 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; |
46 | 46 |
47 // Overridden from Label: | 47 // Overridden from Label: |
(...skipping 21 matching lines...) Expand all Loading... |
69 | 69 |
70 // The color when the link is pressed. | 70 // The color when the link is pressed. |
71 SkColor requested_pressed_color_; | 71 SkColor requested_pressed_color_; |
72 | 72 |
73 DISALLOW_COPY_AND_ASSIGN(Link); | 73 DISALLOW_COPY_AND_ASSIGN(Link); |
74 }; | 74 }; |
75 | 75 |
76 } // namespace views | 76 } // namespace views |
77 | 77 |
78 #endif // UI_VIEWS_CONTROLS_LINK_H_ | 78 #endif // UI_VIEWS_CONTROLS_LINK_H_ |
OLD | NEW |