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 pathD2DTextBlock.cpp
153 lines (128 loc) · 3.18 KB
/
D2DTextBlock.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
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
#include "pch.h"
#include "D2DTextBlock.h"
#include "D2DBrush.h"
#include "Extensions.h"
namespace Telerik
{
namespace UI
{
namespace Drawing
{
D2DTextBlock::D2DTextBlock(void)
{
this->isValid = false;
this->style = ref new D2DTextStyle();
this->size = Size(0, 0);
}
void D2DTextBlock::InitRender(D2DRenderContext^ context)
{
if(this->isValid || this->text == nullptr || this->style == nullptr)
{
return;
}
if(this->style->Foreground != nullptr)
{
this->style->Foreground->InitRender(context);
}
if(this->textLayout == nullptr)
{
HRESULT hr;
ComPtr<IDWriteTextFormat> format;
hr = context->WriteFactory->CreateTextFormat(
this->style->FontName->Begin(),
nullptr,
DWRITE_FONT_WEIGHT_NORMAL,
DWRITE_FONT_STYLE_NORMAL,
DWRITE_FONT_STRETCH_NORMAL,
42.0f,
this->style->FontLocale->Begin(),
&format
);
if(!SUCCEEDED(hr))
{
throw;
}
hr = context->WriteFactory->CreateTextLayout(
this->text->Begin(),
this->text->Length(),
format.Get(),
1000, // TODO: MaxWidth - do we need larger size?
1000, // TODO: MaxHeight - do we need larger size?
&this->textLayout
);
if(!SUCCEEDED(hr))
{
throw;
}
}
// TODO: Possible optimization - set each property explicitly in the Setter rather than updating everything
DWRITE_TEXT_RANGE range;
range.length = this->text->Length();
range.startPosition = 0;
this->textLayout->SetFontFamilyName(this->style->FontName->Begin(), range);
this->textLayout->SetFontSize(this->style->FontSizeAsFloat, range);
this->textLayout->SetFontWeight(Extensions::ToDWriteFontWeight(this->style->FontWeight), range);
this->textLayout->SetFontStyle((DWRITE_FONT_STYLE)this->style->FontStyle, range);
this->isValid = true;
}
void D2DTextBlock::Render(ComPtr<ID2D1RenderTarget> renderTarget, D2DBrush^ stateBrush, Point location)
{
if(!this->isValid)
{
return;
}
ComPtr<ID2D1Brush> foreground;
if(stateBrush != nullptr)
{
foreground = stateBrush->NativeBrush;
}
else if(this->style->Foreground != nullptr)
{
foreground = this->style->Foreground->NativeBrush;
}
if(foreground == nullptr)
{
return;
}
renderTarget->DrawTextLayout(
Extensions::ToPoint(location),
this->textLayout.Get(),
foreground.Get(),
D2D1_DRAW_TEXT_OPTIONS_CLIP
);
}
Size D2DTextBlock::GetSize()
{
if(this->size.Width == 0 || this->size.Height == 0)
{
this->size = this->Measure();
}
return this->size;
}
Size D2DTextBlock::Measure()
{
if(!this->isValid)
{
return Size(0, 0);
}
DWRITE_TEXT_METRICS metrics;
this->textLayout->GetMetrics(&metrics);
return Size(metrics.left + metrics.width, metrics.top + metrics.height);
}
void D2DTextBlock::Invalidate(bool reset)
{
this->isValid = false;
this->size = Size(0, 0);
if(reset)
{
this->textLayout.Reset();
this->textLayout = nullptr;
if(this->style != nullptr)
{
this->style->Reset();
}
}
}
}
}
}