This repository was archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathExtensions.h
153 lines (130 loc) · 3.51 KB
/
Extensions.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#pragma once
#include "Enumerations.h"
using namespace Windows::UI;
using namespace Windows::Foundation;
using namespace Windows::UI::Text;
using namespace Telerik::UI::Drawing;
const float DefaultDPI = 96.0f;
class Extensions
{
public:
static D2D1::ColorF ToColor(Color color)
{
float r = color.R / 255.0f;
float g = color.G / 255.0f;
float b = color.B / 255.0f;
float a = color.A / 255.0f;
return D2D1::ColorF(r, g, b, a);
}
static D2D1_POINT_2F ToPoint(DoublePoint pt)
{
D2D1_POINT_2F d2dPoint =
{
d2dPoint.x = static_cast<float>(pt.X),
d2dPoint.y = static_cast<float>(pt.Y)
};
return d2dPoint;
}
static D2D1_POINT_2F ToPoint(Point pt)
{
return D2D1::Point2F(pt.X, pt.Y);
}
static D2D1_RECT_F ToRect(Rect rect)
{
return D2D1::RectF(rect.X, rect.Y, rect.Right, rect.Bottom);
}
static RECT ToRectL(Rect rect)
{
RECT rectL;
rectL.left = static_cast<LONG>(rect.Left);
rectL.top = static_cast<LONG>(rect.Top);
rectL.right = static_cast<LONG>(rect.Left + rect.Width);
rectL.bottom = static_cast<LONG>(rect.Left + rect.Height);
return rectL;
}
static Point ConvertPointToPixels(Point pt, float dpi)
{
Point point;
point.X = RoundFloat(pt.X * dpi / DefaultDPI);
point.Y = RoundFloat(pt.Y * dpi / DefaultDPI);
return point;
}
static DoublePoint ConvertPointToPixels(DoublePoint pt, float dpi)
{
DoublePoint dblPt;
dblPt.X = RoundDouble(pt.X * dpi / DefaultDPI);
dblPt.Y = RoundDouble(pt.Y * dpi / DefaultDPI);
return dblPt;
}
static double RoundDouble(double num)
{
if (num >= 0)
{
return (double)(int)(num + 0.5f);
}
auto round = (double)(int)num;
double fraction = fmod(num, 1);
if (fraction < -0.5)
{
round--;
}
return round;
}
static float RoundFloat(float num)
{
if (num >= 0)
{
return (float)(int)(num + 0.5f);
}
auto round = (float)(int)num;
auto fraction = fmod(num, 1);
if (fraction < -0.5)
{
round--;
}
return round;
}
static Color ToXAMLColor(D2D1::ColorF color)
{
Color xamlColor;
xamlColor.A = static_cast<unsigned char>(color.a * 255.0f);
xamlColor.B = static_cast<unsigned char>(color.b * 255.0f);
xamlColor.G = static_cast<unsigned char>(color.g * 255.0f);
xamlColor.R = static_cast<unsigned char>(color.r * 255.0f);
return xamlColor;
}
static DWRITE_FONT_WEIGHT ToDWriteFontWeight(Telerik::UI::Drawing::FontWeightName name)
{
return (DWRITE_FONT_WEIGHT)FontWeightFromName(name).Weight;
}
static FontWeight FontWeightFromName(Telerik::UI::Drawing::FontWeightName name)
{
switch (name)
{
case Telerik::UI::Drawing::FontWeightName::Black:
return FontWeights::Black;
case Telerik::UI::Drawing::FontWeightName::Bold:
return FontWeights::Bold;
case Telerik::UI::Drawing::FontWeightName::ExtraBlack:
return FontWeights::ExtraBlack;
case Telerik::UI::Drawing::FontWeightName::ExtraBold:
return FontWeights::ExtraBold;
case Telerik::UI::Drawing::FontWeightName::ExtraLight:
return FontWeights::ExtraLight;
case Telerik::UI::Drawing::FontWeightName::Light:
return FontWeights::Light;
case Telerik::UI::Drawing::FontWeightName::Medium:
return FontWeights::Medium;
case Telerik::UI::Drawing::FontWeightName::Normal:
return FontWeights::Normal;
case Telerik::UI::Drawing::FontWeightName::SemiBold:
return FontWeights::SemiBold;
case Telerik::UI::Drawing::FontWeightName::SemiLight:
return FontWeights::SemiLight;
case Telerik::UI::Drawing::FontWeightName::Thin:
return FontWeights::Thin;
default:
return FontWeights::Normal;
}
}
};