| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BUTTON_TEXT_BUTTON_H_ | 5 #ifndef UI_VIEWS_CONTROLS_BUTTON_TEXT_BUTTON_H_ |
| 6 #define UI_VIEWS_CONTROLS_BUTTON_TEXT_BUTTON_H_ | 6 #define UI_VIEWS_CONTROLS_BUTTON_TEXT_BUTTON_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 enum PaintButtonMode { PB_NORMAL, PB_FOR_DRAG }; | 200 enum PaintButtonMode { PB_NORMAL, PB_FOR_DRAG }; |
| 201 virtual void PaintButton(gfx::Canvas* canvas, PaintButtonMode mode); | 201 virtual void PaintButton(gfx::Canvas* canvas, PaintButtonMode mode); |
| 202 | 202 |
| 203 // Overridden from View: | 203 // Overridden from View: |
| 204 virtual gfx::Size GetPreferredSize() OVERRIDE; | 204 virtual gfx::Size GetPreferredSize() OVERRIDE; |
| 205 virtual gfx::Size GetMinimumSize() OVERRIDE; | 205 virtual gfx::Size GetMinimumSize() OVERRIDE; |
| 206 virtual int GetHeightForWidth(int w) OVERRIDE; | 206 virtual int GetHeightForWidth(int w) OVERRIDE; |
| 207 virtual void OnEnabledChanged() OVERRIDE; | 207 virtual void OnEnabledChanged() OVERRIDE; |
| 208 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | 208 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
| 209 | 209 |
| 210 // Text colors. |
| 211 static const SkColor kEnabledColor; |
| 212 static const SkColor kHighlightColor; |
| 213 static const SkColor kDisabledColor; |
| 214 static const SkColor kHoverColor; |
| 215 |
| 210 // Returns views/TextButton. | 216 // Returns views/TextButton. |
| 211 virtual std::string GetClassName() const OVERRIDE; | 217 virtual std::string GetClassName() const OVERRIDE; |
| 212 | 218 |
| 213 protected: | 219 protected: |
| 214 TextButtonBase(ButtonListener* listener, const string16& text); | 220 TextButtonBase(ButtonListener* listener, const string16& text); |
| 215 | 221 |
| 216 // Called when enabled or disabled state changes, or the colors for those | 222 // Called when enabled or disabled state changes, or the colors for those |
| 217 // states change. | 223 // states change. |
| 218 virtual void UpdateColor(); | 224 virtual void UpdateColor(); |
| 219 | 225 |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 // Overridden from TextButton: | 422 // Overridden from TextButton: |
| 417 virtual void GetExtraParams( | 423 virtual void GetExtraParams( |
| 418 gfx::NativeTheme::ExtraParams* params) const OVERRIDE; | 424 gfx::NativeTheme::ExtraParams* params) const OVERRIDE; |
| 419 | 425 |
| 420 DISALLOW_COPY_AND_ASSIGN(NativeTextButton); | 426 DISALLOW_COPY_AND_ASSIGN(NativeTextButton); |
| 421 }; | 427 }; |
| 422 | 428 |
| 423 } // namespace views | 429 } // namespace views |
| 424 | 430 |
| 425 #endif // UI_VIEWS_CONTROLS_BUTTON_TEXT_BUTTON_H_ | 431 #endif // UI_VIEWS_CONTROLS_BUTTON_TEXT_BUTTON_H_ |
| OLD | NEW |