blob: 0aea4b86b450ec7f53e5d2d468ea62917f344032 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_WM_PANELS_PANEL_FRAME_VIEW_H_
#define ASH_WM_PANELS_PANEL_FRAME_VIEW_H_
#include "ash/ash_export.h"
#include "base/macros.h"
#include "ui/views/window/non_client_view.h"
namespace views {
class ImageView;
}
namespace ash {
class DefaultHeaderPainter;
class FrameCaptionButtonContainerView;
class FrameBorderHitTestController;
class ASH_EXPORT PanelFrameView : public views::NonClientFrameView {
public:
// Internal class name.
static const char kViewClassName[];
enum FrameType {
FRAME_NONE,
FRAME_ASH
};
PanelFrameView(views::Widget* frame, FrameType frame_type);
~PanelFrameView() override;
// Sets the active and inactive frame colors. Note the inactive frame color
// will have some transparency added when the frame is drawn.
void SetFrameColors(SkColor active_frame_color, SkColor inactive_frame_color);
// Overridden from views::View:
const char* GetClassName() const override;
private:
void InitHeaderPainter();
// Height from top of window to top of client area.
int NonClientTopBorderHeight() const;
// Overridden from views::NonClientFrameView:
gfx::Rect GetBoundsForClientView() const override;
gfx::Rect GetWindowBoundsForClientBounds(
const gfx::Rect& client_bounds) const override;
int NonClientHitTest(const gfx::Point& point) override;
void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask) override;
void ResetWindowControls() override;
void UpdateWindowIcon() override;
void UpdateWindowTitle() override;
void SizeConstraintsChanged() override;
// Overridden from views::View:
gfx::Size GetMinimumSize() const override;
void Layout() override;
void OnPaint(gfx::Canvas* canvas) override;
// Child View class describing the panel's title bar behavior
// and buttons, owned by the view hierarchy
views::Widget* frame_;
FrameCaptionButtonContainerView* caption_button_container_;
views::ImageView* window_icon_;
gfx::Rect client_view_bounds_;
// Helper class for painting the header.
scoped_ptr<DefaultHeaderPainter> header_painter_;
// Updates the hittest bounds overrides based on the window state type.
scoped_ptr<FrameBorderHitTestController> frame_border_hit_test_controller_;
DISALLOW_COPY_AND_ASSIGN(PanelFrameView);
};
}
#endif // ASH_WM_PANELS_PANEL_FRAME_VIEW_H_
|