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

Side by Side Diff: chrome/browser/ui/views/harmony/layout_delegate.h

Issue 2785683003: views: implement width snapping for DialogDelegateViews (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
OLDNEW
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 namespace views { 10 namespace views {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 virtual bool ShouldShowWindowIcon() const; 97 virtual bool ShouldShowWindowIcon() const;
98 98
99 // DEPRECATED. Returns whether Harmony mode is enabled. 99 // DEPRECATED. Returns whether Harmony mode is enabled.
100 // 100 //
101 // Instead of using this, create a generic solution that works for all UI 101 // Instead of using this, create a generic solution that works for all UI
102 // types, e.g. by adding a new LayoutDistance value that means what you need. 102 // types, e.g. by adding a new LayoutDistance value that means what you need.
103 // 103 //
104 // TODO(pkasting): Fix callers and remove this. 104 // TODO(pkasting): Fix callers and remove this.
105 virtual bool IsHarmonyMode() const; 105 virtual bool IsHarmonyMode() const;
106 106
107 // Returns the preferred width in DIPs for a dialog of the specified |width|. 107 // Returns the smallest allowable width for a dialog |width| points wide.
Peter Kasting 2017/03/30 00:35:35 Nit: "...for a dialog that wants a width of at lea
108 // May return 0 if the dialog has no preferred width. 108 virtual int GetSnappedDialogWidth(int width) const;
109 virtual int GetDialogPreferredWidth(DialogWidth width) const;
110 109
111 // Returns the class that maps views::style values (TextContext and TextStyle) 110 // Returns the class that maps views::style values (TextContext and TextStyle)
112 // to specific font properties (e.g. typeface, size, color, line spacing). 111 // to specific font properties (e.g. typeface, size, color, line spacing).
113 virtual const views::TypographyProvider& GetTypographyProvider() const; 112 virtual const views::TypographyProvider& GetTypographyProvider() const;
114 113
115 private: 114 private:
116 DISALLOW_COPY_AND_ASSIGN(LayoutDelegate); 115 DISALLOW_COPY_AND_ASSIGN(LayoutDelegate);
117 }; 116 };
118 117
119 #endif // CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_ 118 #endif // CHROME_BROWSER_UI_VIEWS_HARMONY_LAYOUT_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698