Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / ash / frame / custom_frame_view_ash.h
blob92d6f61a146894c72b0d4367d494e27871bb5a25
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
3 // found in the LICENSE file.
5 #ifndef ASH_FRAME_CUSTOM_FRAME_VIEW_ASH_H_
6 #define ASH_FRAME_CUSTOM_FRAME_VIEW_ASH_H_
8 #include "ash/ash_export.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "ui/views/window/non_client_view.h"
12 namespace ash {
13 class FrameBorderHitTestController;
14 class FrameCaptionButtonContainerView;
15 class ImmersiveFullscreenController;
17 namespace views {
18 class Widget;
21 namespace ash {
23 // A NonClientFrameView used for packaged apps, dialogs and other non-browser
24 // windows. It supports immersive fullscreen. When in immersive fullscreen, the
25 // client view takes up the entire widget and the window header is an overlay.
26 // The window header overlay slides onscreen when the user hovers the mouse at
27 // the top of the screen. See also views::CustomFrameView and
28 // BrowserNonClientFrameViewAsh.
29 class ASH_EXPORT CustomFrameViewAsh : public views::NonClientFrameView {
30 public:
31 // Internal class name.
32 static const char kViewClassName[];
34 explicit CustomFrameViewAsh(views::Widget* frame);
35 virtual ~CustomFrameViewAsh();
37 // Inits |immersive_fullscreen_controller| so that the controller reveals
38 // and hides |header_view_| in immersive fullscreen.
39 // CustomFrameViewAsh does not take ownership of
40 // |immersive_fullscreen_controller|.
41 void InitImmersiveFullscreenControllerForView(
42 ImmersiveFullscreenController* immersive_fullscreen_controller);
44 // views::NonClientFrameView:
45 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE;
46 virtual gfx::Rect GetWindowBoundsForClientBounds(
47 const gfx::Rect& client_bounds) const OVERRIDE;
48 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
49 virtual void GetWindowMask(const gfx::Size& size,
50 gfx::Path* window_mask) OVERRIDE;
51 virtual void ResetWindowControls() OVERRIDE;
52 virtual void UpdateWindowIcon() OVERRIDE;
53 virtual void UpdateWindowTitle() OVERRIDE;
55 // views::View:
56 virtual gfx::Size GetPreferredSize() const OVERRIDE;
57 virtual const char* GetClassName() const OVERRIDE;
58 virtual gfx::Size GetMinimumSize() const OVERRIDE;
59 virtual gfx::Size GetMaximumSize() const OVERRIDE;
60 virtual void SchedulePaintInRect(const gfx::Rect& r) OVERRIDE;
61 virtual void VisibilityChanged(views::View* starting_from,
62 bool is_visible) OVERRIDE;
64 // Get the view of the header.
65 views::View* GetHeaderView();
67 const views::View* GetAvatarIconViewForTest() const;
69 private:
70 class OverlayView;
71 friend class TestWidgetConstraintsDelegate;
73 // views::NonClientFrameView:
74 virtual bool DoesIntersectRect(const views::View* target,
75 const gfx::Rect& rect) const OVERRIDE;
77 // Returns the container for the minimize/maximize/close buttons that is held
78 // by the HeaderView. Used in testing.
79 FrameCaptionButtonContainerView* GetFrameCaptionButtonContainerViewForTest();
81 // Height from top of window to top of client area.
82 int NonClientTopBorderHeight() const;
84 // Not owned.
85 views::Widget* frame_;
87 // View which contains the title and window controls.
88 class HeaderView;
89 HeaderView* header_view_;
91 // Updates the hittest bounds overrides based on the window state type.
92 scoped_ptr<FrameBorderHitTestController> frame_border_hit_test_controller_;
94 DISALLOW_COPY_AND_ASSIGN(CustomFrameViewAsh);
97 } // namespace ash
99 #endif // ASH_FRAME_CUSTOM_FRAME_VIEW_ASH_H_