-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRender.cpp
96 lines (77 loc) · 2.08 KB
/
Render.cpp
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#include "Render.h"
#include "Render_Impl.h"
Render::Render(const cwt::Pen& pen, int width, int height, const wchar_t* caption)
: pRender_impl(new Render_Impl(pen, width, height, caption)) {}
Render::~Render()
{
delete pRender_impl;
pRender_impl = nullptr;
}
const cwt::Pen& Render::viewPen() const
{
return pRender_impl->viewPen();
}
cwt::Pen& Render::getPen()
{
return pRender_impl->getPen();
}
const cwt::Font& Render::viewFont() const
{
return pRender_impl->viewFont();
}
cwt::Font& Render::getFont()
{
return pRender_impl->getFont();
}
bool Render::isWindowOpen()
{
return pRender_impl->isWindowOpen();
}
void Render::drawLine(double x1, double y1, double x2, double y2)
{
pRender_impl->drawLine(x1, y1, x2, y2);
}
void Render::drawElipse(double x, double y, double width, double height)
{
pRender_impl->drawElipse(x, y, width, height);
}
void Render::fillElipse(double x, double y, double width, double height)
{
pRender_impl->fillElipse(x, y, width, height);
}
void Render::drawArc(double x, double y, double width, double height, double start, double sweep)
{
pRender_impl->drawArc(x, y, width, height, start, sweep);
}
void Render::drawRectangle(double x, double y, double width, double height)
{
pRender_impl->drawRectangle(x, y, width, height);
}
void Render::fillRectangle(double x, double y, double width, double height)
{
pRender_impl->fillRectangle(x, y, width, height);
}
void Render::drawPolygon(const std::vector<double>& x, const std::vector<double>& y)
{
pRender_impl->drawPolygon(x, y);
}
void Render::fillPolygon(const std::vector<double>& x, const std::vector<double>& y)
{
pRender_impl->fillPolygon(x, y);
}
void Render::drawString(const wchar_t* text, double x, double y)
{
pRender_impl->drawString(text, x, y);
}
void Render::show()
{
pRender_impl->show();
}
void Render::setCanvasSize(int canvasWidth, int canvasHeight)
{
pRender_impl->setCanvasSize(canvasWidth, canvasHeight);
}
void Render::GetTextExtent(const wchar_t* text, int len, int& w, int& h)
{
pRender_impl->GetTextExtent(text, len, w, h);
}