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

Unified Diff: chrome/browser/chromeos/login/username_view.h

Issue 5966008: Show hand cursor only on small user pods and labels (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use_small_shape is a constructor argument Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/login/user_view.cc ('k') | chrome/browser/chromeos/login/username_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/username_view.h
diff --git a/chrome/browser/chromeos/login/username_view.h b/chrome/browser/chromeos/login/username_view.h
index 3ea81aac6aebea5be968147454bcc434e049f5ef..b2acd5a150d199c7496e3a5b25e415f474d12915 100644
--- a/chrome/browser/chromeos/login/username_view.h
+++ b/chrome/browser/chromeos/login/username_view.h
@@ -35,9 +35,17 @@ class UsernameView : public views::Label {
protected:
// Constructs username view for the given |username|. Consider using
// |CreateShapedUsernameView| to match the login page style.
- explicit UsernameView(const std::wstring& username);
+ UsernameView(const std::wstring& username, bool use_small_shape);
+
+ // True indicates that this UsernameView is used for a user pod not
+ // currently selected.
+ bool use_small_shape() const { return use_small_shape_; }
private:
+ // Overriden from View.
+ gfx::NativeCursor GetCursorForPoint(
+ views::Event::EventType event_type,
+ const gfx::Point& p);
// Paints username to the bitmap with the bounds given.
void PaintUsername(const gfx::Rect& bounds);
@@ -48,6 +56,9 @@ class UsernameView : public views::Label {
// Holds margins width (depends on the height).
int margin_width_;
+ // Whether the shape for the smaller view should be used.
+ bool use_small_shape_;
+
DISALLOW_COPY_AND_ASSIGN(UsernameView);
};
« no previous file with comments | « chrome/browser/chromeos/login/user_view.cc ('k') | chrome/browser/chromeos/login/username_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698