blob: 94a0808763edd06e6533dcf6918ec77d1e83b8cf (
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
|
// Copyright (c) 2006-2008 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 CHROME_BROWSER_VIEWS_OLD_FRAMES_POINT_BUFFER_H__
#define CHROME_BROWSER_VIEWS_OLD_FRAMES_POINT_BUFFER_H__
#include <windows.h>
#include "base/basictypes.h"
////////////////////////////////////////////////////////////////////////////////
//
// PointBuffer class
//
// A facility to accumulate 2d points and produce polygon regions.
//
////////////////////////////////////////////////////////////////////////////////
class PointBuffer {
public:
//
// Create an empty path buffer
//
PointBuffer();
~PointBuffer();
//
// Add a point in the buffer
//
void AddPoint(const POINT &p);
void AddPoint(int x, int y);
//
// Return new polygon region matching the current points.
// It is the caller's responsability to delete the returned region by using
// ::DeleteObject()
//
HRGN GetCurrentPolygonRegion() const;
#if 0
void Log();
#endif
private:
//
// Grow the point buffer if we are out of space
//
void GrowPointBufferIfNeeded();
POINT *points_;
int next_;
int max_count_;
DISALLOW_EVIL_CONSTRUCTORS(PointBuffer);
};
#endif // CHROME_BROWSER_VIEWS_OLD_FRAMES_POINT_BUFFER_H__
|