Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Side by Side Diff: ui/views/controls/link.h

Issue 10824295: Rid the world of the last of views::Event types: TouchEvent, GestureEvent, MouseWheelEvent, ScrollE… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/views/controls/combobox/native_combobox_views.cc ('k') | ui/views/controls/link.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 21 matching lines...) Expand all
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 ui::MouseEvent& event) OVERRIDE; 36 virtual gfx::NativeCursor GetCursor(const ui::MouseEvent& event) OVERRIDE;
37 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE; 37 virtual bool HitTestRect(const gfx::Rect& rect) const OVERRIDE;
38 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; 38 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE;
39 virtual bool OnMouseDragged(const ui::MouseEvent& event) OVERRIDE; 39 virtual bool OnMouseDragged(const ui::MouseEvent& event) OVERRIDE;
40 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; 40 virtual void OnMouseReleased(const ui::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(
43 const ui::GestureEvent& event) OVERRIDE;
43 virtual bool OnKeyPressed(const ui::KeyEvent& event) OVERRIDE; 44 virtual bool OnKeyPressed(const ui::KeyEvent& event) OVERRIDE;
44 virtual bool SkipDefaultKeyEventProcessing( 45 virtual bool SkipDefaultKeyEventProcessing(
45 const ui::KeyEvent& event) OVERRIDE; 46 const ui::KeyEvent& event) OVERRIDE;
46 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE; 47 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
47 48
48 // Overridden from Label: 49 // Overridden from Label:
49 virtual void SetFont(const gfx::Font& font) OVERRIDE; 50 virtual void SetFont(const gfx::Font& font) OVERRIDE;
50 51
51 virtual void SetEnabledColor(SkColor color) OVERRIDE; 52 virtual void SetEnabledColor(SkColor color) OVERRIDE;
52 void SetPressedColor(SkColor color); 53 void SetPressedColor(SkColor color);
(...skipping 17 matching lines...) Expand all
70 71
71 // The color when the link is pressed. 72 // The color when the link is pressed.
72 SkColor requested_pressed_color_; 73 SkColor requested_pressed_color_;
73 74
74 DISALLOW_COPY_AND_ASSIGN(Link); 75 DISALLOW_COPY_AND_ASSIGN(Link);
75 }; 76 };
76 77
77 } // namespace views 78 } // namespace views
78 79
79 #endif // UI_VIEWS_CONTROLS_LINK_H_ 80 #endif // UI_VIEWS_CONTROLS_LINK_H_
OLDNEW
« no previous file with comments | « ui/views/controls/combobox/native_combobox_views.cc ('k') | ui/views/controls/link.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698