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

Unified Diff: ui/views/layout/layout_delegate.h

Issue 2485083003: views: add layout delegates (Closed)
Patch Set: Created 4 years, 1 month 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/layout/layout_delegate.h
diff --git a/ui/views/layout/layout_delegate.h b/ui/views/layout/layout_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..e42c9385d2af873898b551cd5ddcf3b395d9d961
--- /dev/null
+++ b/ui/views/layout/layout_delegate.h
@@ -0,0 +1,45 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_VIEWS_LAYOUT_LAYOUT_DELEGATE_H_
+#define UI_VIEWS_LAYOUT_LAYOUT_DELEGATE_H_
+
+#include "ui/views/layout/grid_layout.h"
+
+namespace views {
+
+class VIEWS_EXPORT LayoutDelegate {
sky 2016/11/08 23:34:00 Layout spacing and alignment are best left to clie
+ public:
+ enum LayoutDistanceType {
+ PANEL_VERT_MARGIN,
+ RELATED_CONTROL_HORIZONTAL_SPACING,
+ RELATED_CONTROL_VERTICAL_SPACING,
+ RELATED_BUTTON_HORIZONTAL_SPACING,
+ UNRELATED_CONTROL_VERTICAL_SPACING,
+ UNRELATED_CONTROL_LARGE_VERTICAL_SPACING,
+ BUTTON_HEDGE_MARGIN_NEW,
+ BUTTON_VEDGE_MARGIN_NEW,
+ };
+
+ // Returns a layout distance, indexed by |type|. These distances are in
+ // device-independent units.
+ virtual int GetLayoutDistance(LayoutDistanceType type) const;
+
+ // Returns the alignment used for control labels in a GridLayout; for example,
+ // in this GridLayout:
+ // ---------------------------
+ // | Label 1 Checkbox 1 |
+ // | Label 2 Checkbox 2 |
+ // ---------------------------
+ // This value controls the alignment used for "Label 1" and "Label 2".
+ virtual GridLayout::Alignment GetControlLabelGridAlignment() const;
+
+ // Returns whether to use extra padding on dialogs. If this is false, content
+ // Views for dialogs should not insert extra padding at their own edges.
+ virtual bool UseExtraDialogPadding() const;
+};
+
+} // namespace views
+
+#endif // UI_VIEWS_LAYOUT_LAYOUT_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698