blob: a0b410e845739c6b9525300775ed8642518e06c3 (
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
|
// 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_PANEL_FRAME_VIEW_H_
#define ASH_WM_PANEL_FRAME_VIEW_H_
#include "ash/ash_export.h"
#include "base/basictypes.h"
#include "ui/aura/aura_export.h"
#include "ui/views/window/non_client_view.h"
#include "ui/views/controls/button/button.h" // ButtonListener
namespace views {
class ImageButton;
}
namespace ash {
class FramePainter;
class ASH_EXPORT PanelFrameView : public views::NonClientFrameView,
public views::ButtonListener {
public:
explicit PanelFrameView(views::Widget* frame);
virtual ~PanelFrameView();
private:
// Overridden from views::NonClientFrameView:
virtual gfx::Rect GetBoundsForClientView() const OVERRIDE;
virtual gfx::Rect GetWindowBoundsForClientBounds(
const gfx::Rect& client_bounds) const OVERRIDE;
virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
virtual void GetWindowMask(const gfx::Size& size,
gfx::Path* window_mask) OVERRIDE;
virtual void ResetWindowControls() OVERRIDE;
virtual void UpdateWindowIcon() OVERRIDE;
// Overridden from views::View:
virtual void Layout() OVERRIDE;
virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
// Overridden from views::ButtonListener:
virtual void ButtonPressed(views::Button* sender,
const views::Event& event) OVERRIDE;
// Child View class describing the panel's title bar behavior
// and buttons, owned by the view hierarchy
scoped_ptr<FramePainter> frame_painter_;
views::ImageButton* close_button_;
views::ImageButton* minimize_button_;
gfx::Rect client_view_bounds_;
DISALLOW_COPY_AND_ASSIGN(PanelFrameView);
};
}
#endif // ASH_WM_PANEL_FRAME_VIEW_H_
|