summaryrefslogtreecommitdiffstats
path: root/views/controls/link.cc
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-12 23:08:10 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-12 23:08:10 +0000
commit9b0e63e553262024ffa72deaa8a650ee93e17e7d (patch)
tree7087b906a4335c72c45dc1491a15e7505904e9f5 /views/controls/link.cc
parentdac271e105147a82477735f261a0b224db1f4e30 (diff)
downloadchromium_src-9b0e63e553262024ffa72deaa8a650ee93e17e7d.zip
chromium_src-9b0e63e553262024ffa72deaa8a650ee93e17e7d.tar.gz
chromium_src-9b0e63e553262024ffa72deaa8a650ee93e17e7d.tar.bz2
Make views::Label and views::Link auto-color themselves to be readable over their background color. Unfortunately since they can't automatically determine what that backgruond color is it has to be manually set. (I suppose I could try to add some crazy hierarchy-walking code looking for views::Background objects, but that seems like a bad move.) There is also a disable switch, which I use in a few places where I couldn't figure out what the background color actually is, or where updating it is really annoying.
In theory, we might want to apply this to other controls like text buttons, but since those are usually rendered with explicit background images there's probably not a ton of win there. This also makes some other cleanup changes like converting a few wstrings to string16s, de-inlining some class member functions, etc. Some of these were mandated by the presubmitter :/ BUG=92 TEST=Things still look OK Review URL: http://codereview.chromium.org/8221027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105189 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/link.cc')
-rw-r--r--views/controls/link.cc147
1 files changed, 56 insertions, 91 deletions
diff --git a/views/controls/link.cc b/views/controls/link.cc
index 2131ed1..08f2447 100644
--- a/views/controls/link.cc
+++ b/views/controls/link.cc
@@ -23,74 +23,23 @@
#include "ui/gfx/gtk_util.h"
#endif
-namespace {
-
-void GetColors(const SkColor* background_color, // NULL means "use default"
- SkColor* highlighted_color,
- SkColor* disabled_color,
- SkColor* normal_color) {
- static SkColor kHighlightedColor, kDisabledColor, kNormalColor;
- static bool initialized = false;
- if (!initialized) {
-#if defined(OS_WIN)
- kHighlightedColor = color_utils::GetReadableColor(
- SkColorSetRGB(200, 0, 0), color_utils::GetSysSkColor(COLOR_WINDOW));
- kDisabledColor = color_utils::GetSysSkColor(COLOR_WINDOWTEXT);
- kNormalColor = color_utils::GetSysSkColor(COLOR_HOTLIGHT);
-#else
- // TODO(beng): source from theme provider.
- kHighlightedColor = SK_ColorRED;
- kDisabledColor = SK_ColorBLACK;
- kNormalColor = SkColorSetRGB(0, 51, 153);
-#endif
-
- initialized = true;
- }
-
- if (background_color) {
- *highlighted_color = color_utils::GetReadableColor(kHighlightedColor,
- *background_color);
- *disabled_color = color_utils::GetReadableColor(kDisabledColor,
- *background_color);
- *normal_color = color_utils::GetReadableColor(kNormalColor,
- *background_color);
- } else {
- *highlighted_color = kHighlightedColor;
- *disabled_color = kDisabledColor;
- *normal_color = kNormalColor;
- }
-}
-}
-
namespace views {
const char Link::kViewClassName[] = "views/Link";
-Link::Link() : Label(string16()),
- listener_(NULL),
- highlighted_(false) {
+Link::Link() : Label(string16()) {
Init();
- set_focusable(true);
}
-Link::Link(const string16& title) : Label(title),
- listener_(NULL),
- highlighted_(false) {
+Link::Link(const string16& title) : Label(title) {
Init();
- set_focusable(true);
-}
-
-void Link::Init() {
- GetColors(NULL, &highlighted_color_, &disabled_color_, &normal_color_);
- SetColor(normal_color_);
- ValidateStyle();
}
Link::~Link() {
}
void Link::OnEnabledChanged() {
- ValidateStyle();
+ RecalculateFont();
View::OnEnabledChanged();
}
@@ -122,14 +71,14 @@ bool Link::OnMousePressed(const MouseEvent& event) {
if (!IsEnabled() ||
(!event.IsLeftMouseButton() && !event.IsMiddleMouseButton()))
return false;
- SetHighlighted(true);
+ SetPressed(true);
return true;
}
bool Link::OnMouseDragged(const MouseEvent& event) {
- SetHighlighted(IsEnabled() &&
- (event.IsLeftMouseButton() || event.IsMiddleMouseButton()) &&
- HitTest(event.location()));
+ SetPressed(IsEnabled() &&
+ (event.IsLeftMouseButton() || event.IsMiddleMouseButton()) &&
+ HitTest(event.location()));
return true;
}
@@ -149,7 +98,7 @@ void Link::OnMouseReleased(const MouseEvent& event) {
}
void Link::OnMouseCaptureLost() {
- SetHighlighted(false);
+ SetPressed(false);
}
bool Link::OnKeyPressed(const KeyEvent& event) {
@@ -158,7 +107,7 @@ bool Link::OnKeyPressed(const KeyEvent& event) {
if (!activate)
return false;
- SetHighlighted(false);
+ SetPressed(false);
// Focus the link on key pressed.
RequestFocus();
@@ -182,50 +131,66 @@ void Link::GetAccessibleState(ui::AccessibleViewState* state) {
void Link::SetFont(const gfx::Font& font) {
Label::SetFont(font);
- ValidateStyle();
+ RecalculateFont();
}
-void Link::SetHighlightedColor(const SkColor& color) {
- highlighted_color_ = color;
- ValidateStyle();
+void Link::SetEnabledColor(const SkColor& color) {
+ requested_enabled_color_ = color;
+ if (!pressed_)
+ Label::SetEnabledColor(requested_enabled_color_);
}
-void Link::SetDisabledColor(const SkColor& color) {
- disabled_color_ = color;
- ValidateStyle();
+void Link::SetPressedColor(const SkColor& color) {
+ requested_pressed_color_ = color;
+ if (pressed_)
+ Label::SetEnabledColor(requested_pressed_color_);
}
-void Link::SetNormalColor(const SkColor& color) {
- normal_color_ = color;
- ValidateStyle();
-}
+void Link::Init() {
+ static bool initialized = false;
+ static SkColor kDefaultEnabledColor;
+ static SkColor kDefaultDisabledColor;
+ static SkColor kDefaultPressedColor;
+ if (!initialized) {
+#if defined(OS_WIN)
+ kDefaultEnabledColor = color_utils::GetSysSkColor(COLOR_HOTLIGHT);
+ kDefaultDisabledColor = color_utils::GetSysSkColor(COLOR_WINDOWTEXT);
+ kDefaultPressedColor = SkColorSetRGB(200, 0, 0);
+#else
+ // TODO(beng): source from theme provider.
+ kDefaultEnabledColor = SkColorSetRGB(0, 51, 153);
+ kDefaultDisabledColor = SK_ColorBLACK;
+ kDefaultPressedColor = SK_ColorRED;
+#endif
-void Link::MakeReadableOverBackgroundColor(const SkColor& color) {
- GetColors(&color, &highlighted_color_, &disabled_color_, &normal_color_);
- ValidateStyle();
+ initialized = true;
+ }
+
+ listener_ = NULL;
+ pressed_ = false;
+ SetEnabledColor(kDefaultEnabledColor);
+ SetDisabledColor(kDefaultDisabledColor);
+ SetPressedColor(kDefaultPressedColor);
+ RecalculateFont();
+ set_focusable(true);
}
-void Link::SetHighlighted(bool f) {
- if (f != highlighted_) {
- highlighted_ = f;
- ValidateStyle();
+void Link::SetPressed(bool pressed) {
+ if (pressed_ != pressed) {
+ pressed_ = pressed;
+ Label::SetEnabledColor(pressed_ ?
+ requested_pressed_color_ : requested_enabled_color_);
+ RecalculateFont();
SchedulePaint();
}
}
-void Link::ValidateStyle() {
- if (IsEnabled()) {
- if (!(font().GetStyle() & gfx::Font::UNDERLINED)) {
- Label::SetFont(
- font().DeriveFont(0, font().GetStyle() | gfx::Font::UNDERLINED));
- }
- Label::SetColor(highlighted_ ? highlighted_color_ : normal_color_);
- } else {
- if (font().GetStyle() & gfx::Font::UNDERLINED) {
- Label::SetFont(
- font().DeriveFont(0, font().GetStyle() & ~gfx::Font::UNDERLINED));
- }
- Label::SetColor(disabled_color_);
+void Link::RecalculateFont() {
+ // The font should be underlined iff the link is enabled.
+ if (IsEnabled() == !(font().GetStyle() & gfx::Font::UNDERLINED)) {
+ Label::SetFont(font().DeriveFont(0, IsEnabled() ?
+ (font().GetStyle() | gfx::Font::UNDERLINED) :
+ (font().GetStyle() & ~gfx::Font::UNDERLINED)));
}
}