| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "ui/views/layout/grid_layout.h" | 8 #include "ui/views/layout/grid_layout.h" |
| 9 | 9 |
| 10 class LayoutDelegate { | 10 class LayoutDelegate { |
| 11 public: | 11 public: |
| 12 enum class Metric { | 12 enum class Metric { |
| 13 // Padding on the left and right side of a button's label. | 13 // Padding on the left and right side of a button's label. |
| 14 BUTTON_HORIZONTAL_PADDING, | 14 BUTTON_HORIZONTAL_PADDING, |
| 15 // Extra margin added on all sides of a button's content. This is only |
| 16 // used for certain button types. |
| 17 // TODO(pkasting): This should probably be touch-specific and needs to be |
| 18 // considered more holistically. |
| 19 BUTTON_MARGIN, |
| 15 // Default minimum width of a button. | 20 // Default minimum width of a button. |
| 16 BUTTON_MINIMUM_WIDTH, | 21 BUTTON_MINIMUM_WIDTH, |
| 17 // Margin between the edge of a dialog and the left, right, or bottom of a | 22 // Margin between the edge of a dialog and the left, right, or bottom of a |
| 18 // contained button. | 23 // contained button. |
| 19 DIALOG_BUTTON_MARGIN, | 24 DIALOG_BUTTON_MARGIN, |
| 20 // Minimum width of a dialog button. | 25 // Minimum width of a dialog button. |
| 21 DIALOG_BUTTON_MINIMUM_WIDTH, | 26 DIALOG_BUTTON_MINIMUM_WIDTH, |
| 22 // Spacing between a dialog button and the content above it. | 27 // Spacing between a dialog button and the content above it. |
| 23 DIALOG_BUTTON_TOP_SPACING, | 28 DIALOG_BUTTON_TOP_SPACING, |
| 24 // Horizontal or vertical margin between the edge of a dialog and the close | 29 // Horizontal or vertical margin between the edge of a dialog and the close |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 95 |
| 91 // Returns the preferred width in DIPs for a dialog of the specified |width|. | 96 // Returns the preferred width in DIPs for a dialog of the specified |width|. |
| 92 // May return 0 if the dialog has no preferred width. | 97 // May return 0 if the dialog has no preferred width. |
| 93 virtual int GetDialogPreferredWidth(DialogWidth width) const; | 98 virtual int GetDialogPreferredWidth(DialogWidth width) const; |
| 94 | 99 |
| 95 private: | 100 private: |
| 96 DISALLOW_COPY_AND_ASSIGN(LayoutDelegate); | 101 DISALLOW_COPY_AND_ASSIGN(LayoutDelegate); |
| 97 }; | 102 }; |
| 98 | 103 |
| 99 #endif // CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ | 104 #endif // CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ |
| OLD | NEW |