Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 <vector> | |
| 9 | |
| 8 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 10 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 11 #include "ui/views/controls/button/button.h" | 13 #include "ui/views/controls/button/button.h" |
| 14 #include "ui/views/window/frame_buttons.h" | |
| 12 #include "ui/views/window/non_client_view.h" | 15 #include "ui/views/window/non_client_view.h" |
| 13 | 16 |
| 17 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | |
| 18 #include "ui/views/linux_ui/window_button_order_observer.h" | |
| 19 #endif | |
| 20 | |
| 14 namespace gfx { | 21 namespace gfx { |
| 15 class ImageSkia; | 22 class ImageSkia; |
| 16 } | 23 } |
| 17 | 24 |
| 18 namespace views { | 25 namespace views { |
| 19 | 26 |
| 20 class FrameBackground; | 27 class FrameBackground; |
| 21 class ImageButton; | 28 class ImageButton; |
| 22 class Widget; | 29 class Widget; |
| 23 | 30 |
| 24 /////////////////////////////////////////////////////////////////////////////// | 31 /////////////////////////////////////////////////////////////////////////////// |
| 25 // | 32 // |
| 26 // CustomFrameView | 33 // CustomFrameView |
| 27 // | 34 // |
| 28 // A view that provides the non client frame for Windows. This means | 35 // A view that provides the non client frame for Windows. This means |
| 29 // rendering the non-standard window caption, border, and controls. | 36 // rendering the non-standard window caption, border, and controls. |
| 30 // | 37 // |
| 31 //////////////////////////////////////////////////////////////////////////////// | 38 //////////////////////////////////////////////////////////////////////////////// |
| 32 class CustomFrameView : public NonClientFrameView, | 39 class VIEWS_EXPORT CustomFrameView : public NonClientFrameView, |
| 33 public ButtonListener { | 40 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 41 public WindowButtonOrderObserver, | |
|
sadrul
2014/04/30 15:46:54
Instead of making the CustomFrameView a WindowButt
| |
| 42 #endif | |
| 43 public ButtonListener { | |
| 34 public: | 44 public: |
| 35 CustomFrameView(); | 45 CustomFrameView(); |
| 36 virtual ~CustomFrameView(); | 46 virtual ~CustomFrameView(); |
| 37 | 47 |
| 38 void Init(Widget* frame); | 48 void Init(Widget* frame); |
| 39 | 49 |
| 40 // Overridden from NonClientFrameView: | 50 // NonClientFrameView: |
| 41 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; | 51 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; |
| 42 virtual gfx::Rect GetWindowBoundsForClientBounds( | 52 virtual gfx::Rect GetWindowBoundsForClientBounds( |
| 43 const gfx::Rect& client_bounds) const OVERRIDE; | 53 const gfx::Rect& client_bounds) const OVERRIDE; |
| 44 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; | 54 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; |
| 45 virtual void GetWindowMask(const gfx::Size& size, | 55 virtual void GetWindowMask(const gfx::Size& size, |
| 46 gfx::Path* window_mask) OVERRIDE; | 56 gfx::Path* window_mask) OVERRIDE; |
| 47 virtual void ResetWindowControls() OVERRIDE; | 57 virtual void ResetWindowControls() OVERRIDE; |
| 48 virtual void UpdateWindowIcon() OVERRIDE; | 58 virtual void UpdateWindowIcon() OVERRIDE; |
| 49 virtual void UpdateWindowTitle() OVERRIDE; | 59 virtual void UpdateWindowTitle() OVERRIDE; |
| 50 | 60 |
| 51 // Overridden from View: | 61 // View: |
| 52 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | 62 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
| 53 virtual void Layout() OVERRIDE; | 63 virtual void Layout() OVERRIDE; |
| 54 virtual gfx::Size GetPreferredSize() OVERRIDE; | 64 virtual gfx::Size GetPreferredSize() OVERRIDE; |
| 55 virtual gfx::Size GetMinimumSize() OVERRIDE; | 65 virtual gfx::Size GetMinimumSize() OVERRIDE; |
| 56 virtual gfx::Size GetMaximumSize() OVERRIDE; | 66 virtual gfx::Size GetMaximumSize() OVERRIDE; |
| 57 | 67 |
| 58 // Overridden from ButtonListener: | 68 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 69 // WindowButtonOrderObserver: | |
| 70 virtual void OnWindowButtonOrderingChange( | |
| 71 const std::vector<views::FrameButton>& leading_buttons, | |
| 72 const std::vector<views::FrameButton>& trailing_buttons) OVERRIDE; | |
| 73 #endif | |
| 74 | |
| 75 // ButtonListener: | |
| 59 virtual void ButtonPressed(Button* sender, const ui::Event& event) OVERRIDE; | 76 virtual void ButtonPressed(Button* sender, const ui::Event& event) OVERRIDE; |
| 60 | 77 |
| 61 private: | 78 private: |
| 79 friend class CustomFrameViewTest; | |
| 80 | |
| 62 // Returns the thickness of the border that makes up the window frame edges. | 81 // Returns the thickness of the border that makes up the window frame edges. |
| 63 // This does not include any client edge. | 82 // This does not include any client edge. |
| 64 int FrameBorderThickness() const; | 83 int FrameBorderThickness() const; |
| 65 | 84 |
| 66 // Returns the thickness of the entire nonclient left, right, and bottom | 85 // Returns the thickness of the entire nonclient left, right, and bottom |
| 67 // borders, including both the window frame and any client edge. | 86 // borders, including both the window frame and any client edge. |
| 68 int NonClientBorderThickness() const; | 87 int NonClientBorderThickness() const; |
| 69 | 88 |
| 70 // Returns the height of the entire nonclient top border, including the window | 89 // Returns the height of the entire nonclient top border, including the window |
| 71 // frame, any title area, and any connected client edge. | 90 // frame, any title area, and any connected client edge. |
| (...skipping 25 matching lines...) Expand all Loading... | |
| 97 // Paint various sub-components of this view. | 116 // Paint various sub-components of this view. |
| 98 void PaintRestoredFrameBorder(gfx::Canvas* canvas); | 117 void PaintRestoredFrameBorder(gfx::Canvas* canvas); |
| 99 void PaintMaximizedFrameBorder(gfx::Canvas* canvas); | 118 void PaintMaximizedFrameBorder(gfx::Canvas* canvas); |
| 100 void PaintTitleBar(gfx::Canvas* canvas); | 119 void PaintTitleBar(gfx::Canvas* canvas); |
| 101 void PaintRestoredClientEdge(gfx::Canvas* canvas); | 120 void PaintRestoredClientEdge(gfx::Canvas* canvas); |
| 102 | 121 |
| 103 // Compute aspects of the frame needed to paint the frame background. | 122 // Compute aspects of the frame needed to paint the frame background. |
| 104 SkColor GetFrameColor() const; | 123 SkColor GetFrameColor() const; |
| 105 const gfx::ImageSkia* GetFrameImage() const; | 124 const gfx::ImageSkia* GetFrameImage() const; |
| 106 | 125 |
| 107 // Layout various sub-components of this view. | 126 // Sets visibility, sizing, and position of an individual button. The value |
| 127 // of |x| and |y| will be the origin for the button. | |
| 128 void LayoutButton(ImageButton* button, int x, int y); | |
| 129 | |
| 130 // Performs the layout for the window control buttons based on the | |
| 131 // configuration specified in |leading_buttons_| and |trailing_buttons_|. | |
| 132 // The sizing and positions of the buttons affects LayoutTitleBar, call | |
| 133 // this beforehand. | |
| 108 void LayoutWindowControls(); | 134 void LayoutWindowControls(); |
| 135 | |
| 136 // Calculations depend on the positions of the window controls. Always call | |
| 137 // LayoutWindowControls beforehand. | |
| 109 void LayoutTitleBar(); | 138 void LayoutTitleBar(); |
| 110 void LayoutClientView(); | 139 void LayoutClientView(); |
| 111 | 140 |
| 112 // Creates, adds and returns a new window caption button (e.g, minimize, | 141 // Creates, adds and returns a new window caption button (e.g, minimize, |
| 113 // maximize, restore). | 142 // maximize, restore). |
| 114 ImageButton* InitWindowCaptionButton(int accessibility_string_id, | 143 ImageButton* InitWindowCaptionButton(int accessibility_string_id, |
| 115 int normal_image_id, | 144 int normal_image_id, |
| 116 int hot_image_id, | 145 int hot_image_id, |
| 117 int pushed_image_id); | 146 int pushed_image_id); |
| 118 | 147 |
| 148 // Returns the window caption button for the given FrameButton type, if it | |
| 149 // should be visible. Otherwise NULL. | |
| 150 ImageButton* GetImageButton(views::FrameButton button); | |
| 151 | |
| 119 // The bounds of the client view, in this view's coordinates. | 152 // The bounds of the client view, in this view's coordinates. |
| 120 gfx::Rect client_view_bounds_; | 153 gfx::Rect client_view_bounds_; |
| 121 | 154 |
| 122 // The layout rect of the title, if visible. | 155 // The layout rect of the title, if visible. |
| 123 gfx::Rect title_bounds_; | 156 gfx::Rect title_bounds_; |
| 124 | 157 |
| 125 // Not owned. | 158 // Not owned. |
| 126 Widget* frame_; | 159 Widget* frame_; |
| 127 | 160 |
| 128 // The icon of this window. May be NULL. | 161 // The icon of this window. May be NULL. |
| 129 ImageButton* window_icon_; | 162 ImageButton* window_icon_; |
| 130 | 163 |
| 131 // Window caption buttons. | 164 // Window caption buttons. |
| 132 ImageButton* minimize_button_; | 165 ImageButton* minimize_button_; |
| 133 ImageButton* maximize_button_; | 166 ImageButton* maximize_button_; |
| 134 ImageButton* restore_button_; | 167 ImageButton* restore_button_; |
| 135 ImageButton* close_button_; | 168 ImageButton* close_button_; |
| 136 | 169 |
| 137 // Should maximize button be shown? | 170 // Should maximize button be shown? |
| 138 bool should_show_maximize_button_; | 171 bool should_show_maximize_button_; |
| 139 | 172 |
| 140 // Background painter for the window frame. | 173 // Background painter for the window frame. |
| 141 scoped_ptr<FrameBackground> frame_background_; | 174 scoped_ptr<FrameBackground> frame_background_; |
| 142 | 175 |
| 176 // Layout arrangement of the window caption buttons. On linux these will be | |
| 177 // set via OnWindowButtonOrderingChange. On other platforms a default | |
| 178 // arrangement of a trailing minimize, maximize, close, will be set. | |
| 179 std::vector<views::FrameButton> leading_buttons_; | |
| 180 std::vector<views::FrameButton> trailing_buttons_; | |
|
flackr
2014/04/29 15:58:28
It's unfortunate to have a copy of these button or
jonross
2014/04/30 15:50:51
Added a TODO
On 2014/04/29 15:58:28, flackr wrote
| |
| 181 | |
| 182 // The horizontal boundaries for the title bar to layout within. Restricted | |
| 183 // by the space used by the leading and trailing buttons. | |
| 184 int minimum_title_bar_x_; | |
| 185 int maximum_title_bar_x_; | |
| 186 | |
| 143 DISALLOW_COPY_AND_ASSIGN(CustomFrameView); | 187 DISALLOW_COPY_AND_ASSIGN(CustomFrameView); |
| 144 }; | 188 }; |
| 145 | 189 |
| 146 } // namespace views | 190 } // namespace views |
| 147 | 191 |
| 148 #endif // UI_VIEWS_WINDOW_CUSTOM_FRAME_VIEW_H_ | 192 #endif // UI_VIEWS_WINDOW_CUSTOM_FRAME_VIEW_H_ |
| OLD | NEW |