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

Unified Diff: ui/views/controls/separator.cc

Issue 2675983003: views::Separator cleanup. (Closed)
Patch Set: Created 3 years, 10 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
Index: ui/views/controls/separator.cc
diff --git a/ui/views/controls/separator.cc b/ui/views/controls/separator.cc
index 5ec611832bd1aa7758a4d86702fb74c4a781b7a9..4c28e5165c6cfd052e4a5ffaa28edb60e0dd24bb 100644
--- a/ui/views/controls/separator.cc
+++ b/ui/views/controls/separator.cc
@@ -13,43 +13,31 @@ namespace views {
// static
const char Separator::kViewClassName[] = "Separator";
-// The separator size in pixels.
-const int kSeparatorSize = 1;
-
-Separator::Separator(Orientation orientation)
- : orientation_(orientation),
- color_overridden_(false),
- size_(kSeparatorSize) {
- SetColorFromNativeTheme();
-}
+// static
+const int Separator::kThickness = 1;
-Separator::~Separator() {
-}
+Separator::Separator(Orientation orientation) : orientation_(orientation) {}
+
+Separator::~Separator() {}
void Separator::SetColor(SkColor color) {
- color_ = color;
- color_overridden_ = true;
+ overridden_color_ = color;
SchedulePaint();
}
-void Separator::SetPreferredSize(int size) {
- if (size != size_) {
- size_ = size;
+void Separator::SetPreferredLength(int length) {
+ if (length != length_) {
+ length_ = length;
PreferredSizeChanged();
}
}
-void Separator::SetColorFromNativeTheme() {
- color_ = GetNativeTheme()->GetSystemColor(
- ui::NativeTheme::kColorId_SeparatorColor);
-}
-
////////////////////////////////////////////////////////////////////////////////
// Separator, View overrides:
gfx::Size Separator::GetPreferredSize() const {
- gfx::Size size =
- orientation_ == HORIZONTAL ? gfx::Size(1, size_) : gfx::Size(size_, 1);
+ gfx::Size size = orientation_ == HORIZONTAL ? gfx::Size(length_, kThickness)
+ : gfx::Size(kThickness, length_);
gfx::Insets insets = GetInsets();
size.Enlarge(insets.width(), insets.height());
return size;
@@ -60,12 +48,15 @@ void Separator::GetAccessibleNodeData(ui::AXNodeData* node_data) {
}
void Separator::OnPaint(gfx::Canvas* canvas) {
- canvas->FillRect(GetContentsBounds(), color_);
-}
-
-void Separator::OnNativeThemeChanged(const ui::NativeTheme* theme) {
- if (!color_overridden_)
- SetColorFromNativeTheme();
+ SkColor color = overridden_color_
+ ? *overridden_color_
+ : GetNativeTheme()->GetSystemColor(
+ ui::NativeTheme::kColorId_SeparatorColor);
+
+ // The separator fills its bounds, but avoid filling partial pixels.
+ float dsf = canvas->UndoDeviceScaleFactor();
+ gfx::RectF contents = gfx::ScaleRect(gfx::RectF(GetContentsBounds()), dsf);
+ canvas->FillRect(gfx::ToEnclosedRect(contents), color);
}
const char* Separator::GetClassName() const {
« ash/common/system/tray/tray_popup_utils.cc ('K') | « ui/views/controls/separator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698