-
Notifications
You must be signed in to change notification settings - Fork 26
/
polygons.h
57 lines (45 loc) · 938 Bytes
/
polygons.h
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
#ifndef POLYGONS_H
#define POLYGONS_H
#include <QPolygon>
#include <QList>
#include "platefile.h"
class QPainter;
/*
* Class to hold static license plates polygons and draw them
*/
class Polygons
{
public:
Polygons();
/*
* QList proxy methods
*/
void append(const QPolygon &polygon);
void clear();
/*
* Scale the currently saved polygons
*/
void setZoom(double zoom);
/*
* Draw currently saved polygons with the given painter
*/
void draw(QPainter *painter);
/*
* Constructs a 'Polygons' object from saved license plates
*/
static Polygons fromPlates(const PlateFileList &plateFileList);
private:
QList<QPolygon> m_polygons;
QList<QPolygon> m_scaledPolygons;
};
inline
void Polygons::append(const QPolygon &polygon)
{
m_polygons.append(polygon);
}
inline
void Polygons::clear()
{
m_polygons.clear();
}
#endif // POLYGONS_H