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 ASH_WM_PANELS_PANEL_FRAME_VIEW_H_ | 5 #ifndef ASH_WM_PANELS_PANEL_FRAME_VIEW_H_ |
6 #define ASH_WM_PANELS_PANEL_FRAME_VIEW_H_ | 6 #define ASH_WM_PANELS_PANEL_FRAME_VIEW_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "ui/views/window/non_client_view.h" | 10 #include "ui/views/window/non_client_view.h" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 // Overridden from views::NonClientFrameView: | 43 // Overridden from views::NonClientFrameView: |
44 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; | 44 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; |
45 virtual gfx::Rect GetWindowBoundsForClientBounds( | 45 virtual gfx::Rect GetWindowBoundsForClientBounds( |
46 const gfx::Rect& client_bounds) const OVERRIDE; | 46 const gfx::Rect& client_bounds) const OVERRIDE; |
47 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; | 47 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; |
48 virtual void GetWindowMask(const gfx::Size& size, | 48 virtual void GetWindowMask(const gfx::Size& size, |
49 gfx::Path* window_mask) OVERRIDE; | 49 gfx::Path* window_mask) OVERRIDE; |
50 virtual void ResetWindowControls() OVERRIDE; | 50 virtual void ResetWindowControls() OVERRIDE; |
51 virtual void UpdateWindowIcon() OVERRIDE; | 51 virtual void UpdateWindowIcon() OVERRIDE; |
52 virtual void UpdateWindowTitle() OVERRIDE; | 52 virtual void UpdateWindowTitle() OVERRIDE; |
| 53 virtual void SizeConstraintsChanged() OVERRIDE; |
53 | 54 |
54 // Overridden from views::View: | 55 // Overridden from views::View: |
55 virtual gfx::Size GetMinimumSize() const OVERRIDE; | 56 virtual gfx::Size GetMinimumSize() const OVERRIDE; |
56 virtual void Layout() OVERRIDE; | 57 virtual void Layout() OVERRIDE; |
57 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | 58 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
58 | 59 |
59 // Child View class describing the panel's title bar behavior | 60 // Child View class describing the panel's title bar behavior |
60 // and buttons, owned by the view hierarchy | 61 // and buttons, owned by the view hierarchy |
61 views::Widget* frame_; | 62 views::Widget* frame_; |
62 FrameCaptionButtonContainerView* caption_button_container_; | 63 FrameCaptionButtonContainerView* caption_button_container_; |
63 views::ImageView* window_icon_; | 64 views::ImageView* window_icon_; |
64 gfx::Rect client_view_bounds_; | 65 gfx::Rect client_view_bounds_; |
65 | 66 |
66 // Helper class for painting the header. | 67 // Helper class for painting the header. |
67 scoped_ptr<DefaultHeaderPainter> header_painter_; | 68 scoped_ptr<DefaultHeaderPainter> header_painter_; |
68 | 69 |
69 // Updates the hittest bounds overrides based on the window state type. | 70 // Updates the hittest bounds overrides based on the window state type. |
70 scoped_ptr<FrameBorderHitTestController> frame_border_hit_test_controller_; | 71 scoped_ptr<FrameBorderHitTestController> frame_border_hit_test_controller_; |
71 | 72 |
72 DISALLOW_COPY_AND_ASSIGN(PanelFrameView); | 73 DISALLOW_COPY_AND_ASSIGN(PanelFrameView); |
73 }; | 74 }; |
74 | 75 |
75 } | 76 } |
76 | 77 |
77 #endif // ASH_WM_PANELS_PANEL_FRAME_VIEW_H_ | 78 #endif // ASH_WM_PANELS_PANEL_FRAME_VIEW_H_ |
OLD | NEW |