blob: c6ec085b149ca7b01d0a358de7ca650dc1014ae5 (
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
|
// Copyright (c) 2011 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 VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_
#define VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_
#pragma once
#include "views/bubble/bubble_border.h"
#include "views/widget/widget.h"
#include "views/window/client_view.h"
#include "views/window/window_resources.h"
namespace gfx {
class Canvas;
class Font;
class Size;
class Path;
class Point;
}
namespace views {
// BubbleFrameView to render BubbleBorder.
//
////////////////////////////////////////////////////////////////////////////////
class VIEWS_EXPORT BubbleFrameView : public NonClientFrameView {
public:
BubbleFrameView(Widget* frame,
const gfx::Rect& bounds,
SkColor color,
BubbleBorder::ArrowLocation location);
virtual ~BubbleFrameView();
// NonClientFrameView overrides:
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 EnableClose(bool enable) OVERRIDE;
virtual void ResetWindowControls() OVERRIDE;
virtual void UpdateWindowIcon() OVERRIDE;
// View overrides:
virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
virtual gfx::Size GetPreferredSize() OVERRIDE;
private:
// Not owned.
Widget* frame_;
// Window bounds in screen coordinates.
gfx::Rect frame_bounds_;
// The bubble border object owned by this view.
BubbleBorder* bubble_border_;
// The bubble background object owned by this view.
BubbleBackground* bubble_background_;
DISALLOW_COPY_AND_ASSIGN(BubbleFrameView);
};
} // namespace views
#endif // VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_
|