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

Side by Side Diff: ui/views/views_delegate.h

Issue 2702403010: Fix the absence of padding on some UI buttons. (Closed)
Patch Set: change switch 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 UI_VIEWS_VIEWS_DELEGATE_H_ 5 #ifndef UI_VIEWS_VIEWS_DELEGATE_H_
6 #define UI_VIEWS_VIEWS_DELEGATE_H_ 6 #define UI_VIEWS_VIEWS_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #if defined(OS_WIN) 10 #if defined(OS_WIN)
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 // Returns the spacing between a pair of related vertical controls, used for 212 // Returns the spacing between a pair of related vertical controls, used for
213 // dialog layout. 213 // dialog layout.
214 virtual int GetDialogRelatedControlVerticalSpacing() const; 214 virtual int GetDialogRelatedControlVerticalSpacing() const;
215 215
216 // Returns the insets that should be applied around a dialog's frame view. 216 // Returns the insets that should be applied around a dialog's frame view.
217 virtual gfx::Insets GetDialogFrameViewInsets() const; 217 virtual gfx::Insets GetDialogFrameViewInsets() const;
218 218
219 // Returns the margins that should be applied around a bubble dialog. 219 // Returns the margins that should be applied around a bubble dialog.
220 virtual gfx::Insets GetBubbleDialogMargins() const; 220 virtual gfx::Insets GetBubbleDialogMargins() const;
221 221
222 // Returns the default minimum width of a dialog button. 222 // Returns the default minimum width of a button.
223 virtual int GetButtonMinimumWidth() const;
224
225 // Returns the minimum width of a dialog button.
223 virtual int GetDialogButtonMinimumWidth() const; 226 virtual int GetDialogButtonMinimumWidth() const;
224 227
225 // Returns the default padding to add on each side of a button's label. 228 // Returns the default padding to add on each side of a button's label.
226 virtual int GetButtonHorizontalPadding() const; 229 virtual int GetButtonHorizontalPadding() const;
227 230
228 protected: 231 protected:
229 ViewsDelegate(); 232 ViewsDelegate();
230 233
231 private: 234 private:
232 std::unique_ptr<ViewsTouchEditingControllerFactory> views_tsc_factory_; 235 std::unique_ptr<ViewsTouchEditingControllerFactory> views_tsc_factory_;
233 236
234 #if defined(USE_AURA) 237 #if defined(USE_AURA)
235 std::unique_ptr<TouchSelectionMenuRunnerViews> touch_selection_menu_runner_; 238 std::unique_ptr<TouchSelectionMenuRunnerViews> touch_selection_menu_runner_;
236 #endif 239 #endif
237 240
238 NativeWidgetFactory native_widget_factory_; 241 NativeWidgetFactory native_widget_factory_;
239 242
240 DISALLOW_COPY_AND_ASSIGN(ViewsDelegate); 243 DISALLOW_COPY_AND_ASSIGN(ViewsDelegate);
241 }; 244 };
242 245
243 } // namespace views 246 } // namespace views
244 247
245 #endif // UI_VIEWS_VIEWS_DELEGATE_H_ 248 #endif // UI_VIEWS_VIEWS_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698