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

Side by Side Diff: ui/views/window/custom_frame_view.h

Issue 296283003: Re-Reland Linux Window Control Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Build Error Created 6 years, 7 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
« no previous file with comments | « ui/views/views.gyp ('k') | ui/views/window/custom_frame_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_WINDOW_CUSTOM_FRAME_VIEW_H_ 5 #ifndef UI_VIEWS_WINDOW_CUSTOM_FRAME_VIEW_H_
6 #define UI_VIEWS_WINDOW_CUSTOM_FRAME_VIEW_H_ 6 #define UI_VIEWS_WINDOW_CUSTOM_FRAME_VIEW_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "ui/views/controls/button/button.h" 11 #include "ui/views/controls/button/button.h"
12 #include "ui/views/window/frame_buttons.h"
12 #include "ui/views/window/non_client_view.h" 13 #include "ui/views/window/non_client_view.h"
13 14
14 namespace gfx { 15 namespace gfx {
15 class ImageSkia; 16 class ImageSkia;
16 } 17 }
17 18
18 namespace views { 19 namespace views {
19 20
20 class FrameBackground; 21 class FrameBackground;
21 class ImageButton; 22 class ImageButton;
22 class Widget; 23 class Widget;
23 24
24 /////////////////////////////////////////////////////////////////////////////// 25 ///////////////////////////////////////////////////////////////////////////////
25 // 26 //
26 // CustomFrameView 27 // CustomFrameView
27 // 28 //
28 // A view that provides the non client frame for Windows. This means 29 // A view that provides the non client frame for Windows. This means
29 // rendering the non-standard window caption, border, and controls. 30 // rendering the non-standard window caption, border, and controls.
30 // 31 //
31 //////////////////////////////////////////////////////////////////////////////// 32 ////////////////////////////////////////////////////////////////////////////////
32 class CustomFrameView : public NonClientFrameView, 33 class VIEWS_EXPORT CustomFrameView : public NonClientFrameView,
33 public ButtonListener { 34 public ButtonListener {
34 public: 35 public:
35 CustomFrameView(); 36 CustomFrameView();
36 virtual ~CustomFrameView(); 37 virtual ~CustomFrameView();
37 38
38 void Init(Widget* frame); 39 void Init(Widget* frame);
39 40
40 // Overridden from NonClientFrameView: 41 // Overridden from NonClientFrameView:
41 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; 42 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE;
42 virtual gfx::Rect GetWindowBoundsForClientBounds( 43 virtual gfx::Rect GetWindowBoundsForClientBounds(
43 const gfx::Rect& client_bounds) const OVERRIDE; 44 const gfx::Rect& client_bounds) const OVERRIDE;
44 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; 45 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
45 virtual void GetWindowMask(const gfx::Size& size, 46 virtual void GetWindowMask(const gfx::Size& size,
46 gfx::Path* window_mask) OVERRIDE; 47 gfx::Path* window_mask) OVERRIDE;
47 virtual void ResetWindowControls() OVERRIDE; 48 virtual void ResetWindowControls() OVERRIDE;
48 virtual void UpdateWindowIcon() OVERRIDE; 49 virtual void UpdateWindowIcon() OVERRIDE;
49 virtual void UpdateWindowTitle() OVERRIDE; 50 virtual void UpdateWindowTitle() OVERRIDE;
50 51
51 // Overridden from View: 52 // Overridden from View:
52 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; 53 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
53 virtual void Layout() OVERRIDE; 54 virtual void Layout() OVERRIDE;
54 virtual gfx::Size GetPreferredSize() const OVERRIDE; 55 virtual gfx::Size GetPreferredSize() const OVERRIDE;
55 virtual gfx::Size GetMinimumSize() const OVERRIDE; 56 virtual gfx::Size GetMinimumSize() const OVERRIDE;
56 virtual gfx::Size GetMaximumSize() const OVERRIDE; 57 virtual gfx::Size GetMaximumSize() const OVERRIDE;
57 58
58 // Overridden from ButtonListener: 59 // Overridden from ButtonListener:
59 virtual void ButtonPressed(Button* sender, const ui::Event& event) OVERRIDE; 60 virtual void ButtonPressed(Button* sender, const ui::Event& event) OVERRIDE;
60 61
61 private: 62 private:
63 friend class CustomFrameViewTest;
64
62 // Returns the thickness of the border that makes up the window frame edges. 65 // Returns the thickness of the border that makes up the window frame edges.
63 // This does not include any client edge. 66 // This does not include any client edge.
64 int FrameBorderThickness() const; 67 int FrameBorderThickness() const;
65 68
66 // Returns the thickness of the entire nonclient left, right, and bottom 69 // Returns the thickness of the entire nonclient left, right, and bottom
67 // borders, including both the window frame and any client edge. 70 // borders, including both the window frame and any client edge.
68 int NonClientBorderThickness() const; 71 int NonClientBorderThickness() const;
69 72
70 // Returns the height of the entire nonclient top border, including the window 73 // Returns the height of the entire nonclient top border, including the window
71 // frame, any title area, and any connected client edge. 74 // frame, any title area, and any connected client edge.
(...skipping 25 matching lines...) Expand all
97 // Paint various sub-components of this view. 100 // Paint various sub-components of this view.
98 void PaintRestoredFrameBorder(gfx::Canvas* canvas); 101 void PaintRestoredFrameBorder(gfx::Canvas* canvas);
99 void PaintMaximizedFrameBorder(gfx::Canvas* canvas); 102 void PaintMaximizedFrameBorder(gfx::Canvas* canvas);
100 void PaintTitleBar(gfx::Canvas* canvas); 103 void PaintTitleBar(gfx::Canvas* canvas);
101 void PaintRestoredClientEdge(gfx::Canvas* canvas); 104 void PaintRestoredClientEdge(gfx::Canvas* canvas);
102 105
103 // Compute aspects of the frame needed to paint the frame background. 106 // Compute aspects of the frame needed to paint the frame background.
104 SkColor GetFrameColor() const; 107 SkColor GetFrameColor() const;
105 const gfx::ImageSkia* GetFrameImage() const; 108 const gfx::ImageSkia* GetFrameImage() const;
106 109
107 // Layout various sub-components of this view. 110 // Performs the layout for the window control buttons based on the
111 // configuration specified in WindowButtonOrderProvider. The sizing and
112 // positions of the buttons affects LayoutTitleBar, call this beforehand.
108 void LayoutWindowControls(); 113 void LayoutWindowControls();
114
115 // Calculations depend on the positions of the window controls. Always call
116 // LayoutWindowControls beforehand.
109 void LayoutTitleBar(); 117 void LayoutTitleBar();
110 void LayoutClientView(); 118 void LayoutClientView();
111 119
112 // Creates, adds and returns a new window caption button (e.g, minimize, 120 // Creates, adds and returns a new window caption button (e.g, minimize,
113 // maximize, restore). 121 // maximize, restore).
114 ImageButton* InitWindowCaptionButton(int accessibility_string_id, 122 ImageButton* InitWindowCaptionButton(int accessibility_string_id,
115 int normal_image_id, 123 int normal_image_id,
116 int hot_image_id, 124 int hot_image_id,
117 int pushed_image_id); 125 int pushed_image_id);
118 126
127 // Returns the window caption button for the given FrameButton type, if it
128 // should be visible. Otherwise NULL.
129 ImageButton* GetImageButton(views::FrameButton button);
130
119 // The bounds of the client view, in this view's coordinates. 131 // The bounds of the client view, in this view's coordinates.
120 gfx::Rect client_view_bounds_; 132 gfx::Rect client_view_bounds_;
121 133
122 // The layout rect of the title, if visible. 134 // The layout rect of the title, if visible.
123 gfx::Rect title_bounds_; 135 gfx::Rect title_bounds_;
124 136
125 // Not owned. 137 // Not owned.
126 Widget* frame_; 138 Widget* frame_;
127 139
128 // The icon of this window. May be NULL. 140 // The icon of this window. May be NULL.
129 ImageButton* window_icon_; 141 ImageButton* window_icon_;
130 142
131 // Window caption buttons. 143 // Window caption buttons.
132 ImageButton* minimize_button_; 144 ImageButton* minimize_button_;
133 ImageButton* maximize_button_; 145 ImageButton* maximize_button_;
134 ImageButton* restore_button_; 146 ImageButton* restore_button_;
135 ImageButton* close_button_; 147 ImageButton* close_button_;
136 148
137 // Should maximize button be shown? 149 // Should maximize button be shown?
138 bool should_show_maximize_button_; 150 bool should_show_maximize_button_;
139 151
140 // Background painter for the window frame. 152 // Background painter for the window frame.
141 scoped_ptr<FrameBackground> frame_background_; 153 scoped_ptr<FrameBackground> frame_background_;
142 154
155 // The horizontal boundaries for the title bar to layout within. Restricted
156 // by the space used by the leading and trailing buttons.
157 int minimum_title_bar_x_;
158 int maximum_title_bar_x_;
159
143 DISALLOW_COPY_AND_ASSIGN(CustomFrameView); 160 DISALLOW_COPY_AND_ASSIGN(CustomFrameView);
144 }; 161 };
145 162
146 } // namespace views 163 } // namespace views
147 164
148 #endif // UI_VIEWS_WINDOW_CUSTOM_FRAME_VIEW_H_ 165 #endif // UI_VIEWS_WINDOW_CUSTOM_FRAME_VIEW_H_
OLDNEW
« no previous file with comments | « ui/views/views.gyp ('k') | ui/views/window/custom_frame_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698