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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#include <test/outputdevice.hxx>
namespace vcl::test {
namespace
{
void drawRectOffset(OutputDevice& rDevice, tools::Rectangle const & rRect, int nOffset)
{
rDevice.DrawRect(tools::Rectangle(rRect.Left() + nOffset, rRect.Top() + nOffset,
rRect.Right() - nOffset, rRect.Bottom() - nOffset));
}
void drawInvertOffset(OutputDevice& rDevice, tools::Rectangle const & rRect, int nOffset, InvertFlags eFlags)
{
tools::Rectangle aRectangle(rRect.Left() + nOffset, rRect.Top() + nOffset,
rRect.Right() - nOffset, rRect.Bottom() - nOffset);
rDevice.Invert(aRectangle, eFlags);
}
} // end anonymous namespace
Bitmap OutputDeviceTestRect::setupFilledRectangle(bool useLineColor)
{
initialSetup(13, 13, constBackgroundColor);
if(useLineColor)
mpVirtualDevice->SetLineColor(constLineColor);
else
mpVirtualDevice->SetLineColor();
mpVirtualDevice->SetFillColor(constFillColor);
drawRectOffset(*mpVirtualDevice, maVDRectangle, 2);
return mpVirtualDevice->GetBitmap(maVDRectangle.TopLeft(), maVDRectangle.GetSize());
}
Bitmap OutputDeviceTestRect::setupRectangle(bool bEnableAA)
{
initialSetup(13, 13, constBackgroundColor, bEnableAA);
mpVirtualDevice->SetLineColor(constLineColor);
mpVirtualDevice->SetFillColor();
drawRectOffset(*mpVirtualDevice, maVDRectangle, 2);
drawRectOffset(*mpVirtualDevice, maVDRectangle, 5);
return mpVirtualDevice->GetBitmap(maVDRectangle.TopLeft(), maVDRectangle.GetSize());
}
Bitmap OutputDeviceTestRect::setupInvert_NONE()
{
initialSetup(20, 20, COL_WHITE);
mpVirtualDevice->SetLineColor();
mpVirtualDevice->SetFillColor(COL_LIGHTRED);
mpVirtualDevice->DrawRect(tools::Rectangle(Point(2, 2), Size(8, 8)));
mpVirtualDevice->SetFillColor(COL_LIGHTGREEN);
mpVirtualDevice->DrawRect(tools::Rectangle(Point(10, 2), Size(8, 8)));
mpVirtualDevice->SetFillColor(COL_LIGHTBLUE);
mpVirtualDevice->DrawRect(tools::Rectangle(Point(2, 10), Size(8, 8)));
drawInvertOffset(*mpVirtualDevice, maVDRectangle, 2, InvertFlags::NONE);
return mpVirtualDevice->GetBitmap(maVDRectangle.TopLeft(), maVDRectangle.GetSize());
}
Bitmap OutputDeviceTestRect::setupInvert_N50()
{
initialSetup(20, 20, COL_WHITE);
mpVirtualDevice->SetLineColor();
mpVirtualDevice->SetFillColor(COL_LIGHTRED);
mpVirtualDevice->DrawRect(tools::Rectangle(Point(2, 2), Size(8, 8)));
mpVirtualDevice->SetFillColor(COL_LIGHTGREEN);
mpVirtualDevice->DrawRect(tools::Rectangle(Point(10, 2), Size(8, 8)));
mpVirtualDevice->SetFillColor(COL_LIGHTBLUE);
mpVirtualDevice->DrawRect(tools::Rectangle(Point(2, 10), Size(8, 8)));
drawInvertOffset(*mpVirtualDevice, maVDRectangle, 2, InvertFlags::N50);
return mpVirtualDevice->GetBitmap(maVDRectangle.TopLeft(), maVDRectangle.GetSize());
}
Bitmap OutputDeviceTestRect::setupInvert_TrackFrame()
{
initialSetup(20, 20, COL_WHITE);
mpVirtualDevice->SetLineColor();
mpVirtualDevice->SetFillColor(COL_LIGHTRED);
mpVirtualDevice->DrawRect(tools::Rectangle(Point(2, 2), Size(8, 8)));
mpVirtualDevice->SetFillColor(COL_LIGHTGREEN);
mpVirtualDevice->DrawRect(tools::Rectangle(Point(10, 2), Size(8, 8)));
mpVirtualDevice->SetFillColor(COL_LIGHTBLUE);
mpVirtualDevice->DrawRect(tools::Rectangle(Point(2, 10), Size(8, 8)));
drawInvertOffset(*mpVirtualDevice, maVDRectangle, 2, InvertFlags::TrackFrame);
return mpVirtualDevice->GetBitmap(maVDRectangle.TopLeft(), maVDRectangle.GetSize());
}
} // end namespace vcl::test
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|