| 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 // Default minimum width of a button. |
| 16 BUTTON_MINIMUM_WIDTH, |
| 15 // Margin between the edge of a dialog and the left, right, or bottom of a | 17 // Margin between the edge of a dialog and the left, right, or bottom of a |
| 16 // contained button. | 18 // contained button. |
| 17 DIALOG_BUTTON_MARGIN, | 19 DIALOG_BUTTON_MARGIN, |
| 18 // Minimum width of a dialog button. | 20 // Minimum width of a dialog button. |
| 19 DIALOG_BUTTON_MINIMUM_WIDTH, | 21 DIALOG_BUTTON_MINIMUM_WIDTH, |
| 20 // Spacing between a dialog button and the content above it. | 22 // Spacing between a dialog button and the content above it. |
| 21 DIALOG_BUTTON_TOP_SPACING, | 23 DIALOG_BUTTON_TOP_SPACING, |
| 22 // Horizontal or vertical margin between the edge of a dialog and the close | 24 // Horizontal or vertical margin between the edge of a dialog and the close |
| 23 // button in the upper trailing corner. | 25 // button in the upper trailing corner. |
| 24 DIALOG_CLOSE_BUTTON_MARGIN, | 26 DIALOG_CLOSE_BUTTON_MARGIN, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 | 90 |
| 89 // Returns the preferred width in DIPs for a dialog of the specified |width|. | 91 // Returns the preferred width in DIPs for a dialog of the specified |width|. |
| 90 // May return 0 if the dialog has no preferred width. | 92 // May return 0 if the dialog has no preferred width. |
| 91 virtual int GetDialogPreferredWidth(DialogWidth width) const; | 93 virtual int GetDialogPreferredWidth(DialogWidth width) const; |
| 92 | 94 |
| 93 private: | 95 private: |
| 94 DISALLOW_COPY_AND_ASSIGN(LayoutDelegate); | 96 DISALLOW_COPY_AND_ASSIGN(LayoutDelegate); |
| 95 }; | 97 }; |
| 96 | 98 |
| 97 #endif // CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ | 99 #endif // CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ |
| OLD | NEW |