| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "views/controls/single_split_view.h" | 5 #include "views/controls/single_split_view.h" |
| 6 | 6 |
| 7 #if defined(OS_LINUX) | 7 #if defined(OS_LINUX) |
| 8 #include <gdk/gdk.h> | 8 #include <gdk/gdk.h> |
| 9 #endif | 9 #endif |
| 10 | 10 |
| 11 #include "app/gfx/canvas.h" | 11 #include "gfx/canvas.h" |
| 12 #include "skia/ext/skia_utils_win.h" | 12 #include "skia/ext/skia_utils_win.h" |
| 13 #include "views/background.h" | 13 #include "views/background.h" |
| 14 | 14 |
| 15 namespace views { | 15 namespace views { |
| 16 | 16 |
| 17 // Size of the divider in pixels. | 17 // Size of the divider in pixels. |
| 18 static const int kDividerSize = 4; | 18 static const int kDividerSize = 4; |
| 19 | 19 |
| 20 SingleSplitView::SingleSplitView(View* leading, | 20 SingleSplitView::SingleSplitView(View* leading, |
| 21 View* trailing, | 21 View* trailing, |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 divider_relative_offset = | 202 divider_relative_offset = |
| 203 p.x() - GetChildViewAt(UILayoutIsRightToLeft() ? 1 : 0)->width(); | 203 p.x() - GetChildViewAt(UILayoutIsRightToLeft() ? 1 : 0)->width(); |
| 204 } else { | 204 } else { |
| 205 divider_relative_offset = p.y() - GetChildViewAt(0)->height(); | 205 divider_relative_offset = p.y() - GetChildViewAt(0)->height(); |
| 206 } | 206 } |
| 207 return (divider_relative_offset >= 0 && | 207 return (divider_relative_offset >= 0 && |
| 208 divider_relative_offset < kDividerSize); | 208 divider_relative_offset < kDividerSize); |
| 209 } | 209 } |
| 210 | 210 |
| 211 } // namespace views | 211 } // namespace views |
| OLD | NEW |