| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BORDER_H_ | 5 #ifndef UI_VIEWS_BORDER_H_ |
| 6 #define UI_VIEWS_BORDER_H_ | 6 #define UI_VIEWS_BORDER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 int right); | 66 int right); |
| 67 | 67 |
| 68 // Creates a border of the specified color, and specified thickness on each | 68 // Creates a border of the specified color, and specified thickness on each |
| 69 // side. | 69 // side. |
| 70 static std::unique_ptr<Border> CreateSolidSidedBorder(int top, | 70 static std::unique_ptr<Border> CreateSolidSidedBorder(int top, |
| 71 int left, | 71 int left, |
| 72 int bottom, | 72 int bottom, |
| 73 int right, | 73 int right, |
| 74 SkColor color); | 74 SkColor color); |
| 75 | 75 |
| 76 // Creates a new border that draws |border| and adds additional padding. This |
| 77 // is equivalent to changing the insets of |border| without changing how or |
| 78 // what it paints. Example: |
| 79 // |
| 80 // view->SetBorder(Border::CreatePaddedBorder( |
| 81 // Border::CreateSolidBorder(1, SK_ColorRED), |
| 82 // gfx::Insets(2, 0, 0, 0))); |
| 83 // |
| 84 // yields a single dip red border and an additional 2dip of unpainted padding |
| 85 // above the view content (below the border). |
| 86 static std::unique_ptr<Border> CreatePaddedBorder( |
| 87 std::unique_ptr<Border> border, |
| 88 const gfx::Insets& insets); |
| 89 |
| 76 // Creates a Border from the specified Painter. | 90 // Creates a Border from the specified Painter. |
| 77 // |insets| define size of an area allocated for a Border. | 91 // |insets| define size of an area allocated for a Border. |
| 78 static std::unique_ptr<Border> CreateBorderPainter( | 92 static std::unique_ptr<Border> CreateBorderPainter( |
| 79 std::unique_ptr<Painter> painter, | 93 std::unique_ptr<Painter> painter, |
| 80 const gfx::Insets& insets); | 94 const gfx::Insets& insets); |
| 81 | 95 |
| 82 // Renders the border for the specified view. | 96 // Renders the border for the specified view. |
| 83 virtual void Paint(const View& view, gfx::Canvas* canvas) = 0; | 97 virtual void Paint(const View& view, gfx::Canvas* canvas) = 0; |
| 84 | 98 |
| 85 // Returns the border insets. | 99 // Returns the border insets. |
| 86 virtual gfx::Insets GetInsets() const = 0; | 100 virtual gfx::Insets GetInsets() const = 0; |
| 87 | 101 |
| 88 // Returns the minimum size this border requires. Note that this may not be | 102 // Returns the minimum size this border requires. Note that this may not be |
| 89 // the same as the insets. For example, a Border may paint images to draw | 103 // the same as the insets. For example, a Border may paint images to draw |
| 90 // some graphical border around a view, and this would return the minimum size | 104 // some graphical border around a view, and this would return the minimum size |
| 91 // such that these images would not be clipped or overlapping -- but the | 105 // such that these images would not be clipped or overlapping -- but the |
| 92 // insets may be larger or smaller, depending on how the view wanted its | 106 // insets may be larger or smaller, depending on how the view wanted its |
| 93 // content laid out relative to these images. | 107 // content laid out relative to these images. |
| 94 virtual gfx::Size GetMinimumSize() const = 0; | 108 virtual gfx::Size GetMinimumSize() const = 0; |
| 95 | 109 |
| 96 private: | 110 private: |
| 97 DISALLOW_COPY_AND_ASSIGN(Border); | 111 DISALLOW_COPY_AND_ASSIGN(Border); |
| 98 }; | 112 }; |
| 99 | 113 |
| 100 } // namespace views | 114 } // namespace views |
| 101 | 115 |
| 102 #endif // UI_VIEWS_BORDER_H_ | 116 #endif // UI_VIEWS_BORDER_H_ |
| OLD | NEW |