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

Unified Diff: ui/views/views_delegate.h

Issue 2696263002: Refactor ViewsDelegate and MD-ify the icon-to-text spacing for checkbox and radiobutton (Closed)
Patch Set: Merged with latest changes. 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/views_delegate.h
diff --git a/ui/views/views_delegate.h b/ui/views/views_delegate.h
index 7b3960f5c7c0a5be23772d6cc4b7d72f7064d5c2..e6e6344b7adbe7179cd5b04b5ceace9d4380da87 100644
--- a/ui/views/views_delegate.h
+++ b/ui/views/views_delegate.h
@@ -58,6 +58,36 @@ namespace internal {
class NativeWidgetDelegate;
}
+enum class InsetsMetric {
+ // The insets that should be applied around a DialogClientView. Note that
+ // the top inset is used for the distance between the buttons and the
+ // DialogClientView's content view.
+ DIALOG_BUTTON,
+ // The insets that should be applied around a dialog's frame view.
+ DIALOG_FRAME_VIEW,
+ // The margins that should be applied around a bubble dialog.
+ BUBBLE_DIALOG,
+};
+
+enum class SpacingMetric {
+ // The distance between a dialog's edge and the close button in the upper
+ // trailing corner.
+ CLOSE_BUTTON_MARGIN,
+ // The spacing between the image on a label button and its associated
+ // text.
+ ICON_TO_TEXT,
+ // The spacing between a pair of related horizontal buttons, used for
+ // dialog layout.
+ RELATED_HORIZONTAL_BUTTON,
+ // The spacing between a pair of related vertical controls, used for
+ // dialog layout.
+ RELATED_VERTICAL_CONTROL,
+ // The default minimum width of a dialog button.
+ DIALOG_BUTTON_MINIMUM_WIDTH,
+ // The default padding to add on each side of a button's label.
+ BUTTON_HORIZONTAL_PADDING,
+};
+
// ViewsDelegate is an interface implemented by an object using the views
// framework. It is used to obtain various high level application utilities
// and perform some actions such as window placement saving.
@@ -196,37 +226,11 @@ class VIEWS_EXPORT ViewsDelegate {
// Returns a blocking pool task runner given a TaskRunnerType.
virtual scoped_refptr<base::TaskRunner> GetBlockingPoolTaskRunner();
- // Returns the insets that should be applied around a DialogClientView. Note
- // that the top inset is used for the distance between the buttons and the
- // DialogClientView's content view.
- virtual gfx::Insets GetDialogButtonInsets() const;
-
- // Returns the distance between a dialog's edge and the close button in the
- // upper trailing corner.
- virtual int GetDialogCloseButtonMargin() const;
-
- // Returns the spacing between a pair of related horizontal buttons, used for
- // dialog layout.
- virtual int GetDialogRelatedButtonHorizontalSpacing() const;
-
- // Returns the spacing between a pair of related vertical controls, used for
- // dialog layout.
- virtual int GetDialogRelatedControlVerticalSpacing() const;
-
- // Returns the insets that should be applied around a dialog's frame view.
- virtual gfx::Insets GetDialogFrameViewInsets() const;
-
- // Returns the margins that should be applied around a bubble dialog.
- virtual gfx::Insets GetBubbleDialogMargins() const;
-
- // Returns the default minimum width of a button.
- virtual int GetButtonMinimumWidth() const;
-
- // Returns the minimum width of a dialog button.
- virtual int GetDialogButtonMinimumWidth() const;
+ // Returns the insets metric according to the given enumeration element.
+ virtual gfx::Insets GetInsetsMetric(InsetsMetric metric) const;
- // Returns the default padding to add on each side of a button's label.
- virtual int GetButtonHorizontalPadding() const;
+ // Returns the spacing metric according to the given enumeration element.
+ virtual int GetSpacingMetric(SpacingMetric metric) const;
protected:
ViewsDelegate();

Powered by Google App Engine
This is Rietveld 408576698