forked from academiadocodigo/TBGWebCharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Generic.Title.pas
167 lines (137 loc) · 3.85 KB
/
Generic.Title.pas
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
unit Generic.Title;
interface
uses
Interfaces;
type
TModelGenericTitle<T : IInterface> = class(TInterfacedObject, iModelGenericTitle<T>)
private
[weak]
FParent : T;
FText : string;
FFontSize : string;
FTextAlignment : string;
FFontColor : string;
FFontFamily : string;
public
constructor Create(Parent : T);
destructor Destroy; override;
class function New(Parent : T) : iModelGenericTitle<T>;
function Text(Value : string) : iModelGenericTitle<T>; overload;
function FontSize(Value : Integer) : iModelGenericTitle<T>; overload;
function FontSize(Value : String) : iModelGenericTitle<T>; overload;
function TextAlignment(Value : string) : iModelGenericTitle<T>; overload;
function FontColor(Value : string) : iModelGenericTitle<T>; overload;
function FontColorHEX(Value : string) : iModelGenericTitle<T>; overload;
function FontFamily(Value : string) : iModelGenericTitle<T>; overload;
function Text : string; overload;
function FontSize : string; overload;
function TextAlignment : string; overload;
function FontColor : string; overload;
function FontColorHEX : string; overload;
function FontFamily : string; overload;
function Result : string;
function &End : T;
end;
implementation
uses
Injection, System.SysUtils;
{ TModelGenericTitle<T> }
constructor TModelGenericTitle<T>.Create(Parent: T);
begin
{$IF RTLVERSION > 27 }
TInjection.Weak(@FParent, Parent);
{$ELSE}
FParent := Parent;
{$IFEND}
FFontSize := '30px';
FTextAlignment := 'left';
FFontColor := '#000000';
end;
destructor TModelGenericTitle<T>.Destroy;
begin
inherited;
end;
function TModelGenericTitle<T>.&End: T;
begin
Result := FParent;
end;
function TModelGenericTitle<T>.FontColorHEX(
Value: string): iModelGenericTitle<T>;
begin
Result := Self;
FFontColor := Value;
end;
function TModelGenericTitle<T>.FontColor: string;
begin
Result := FFontColor;
end;
function TModelGenericTitle<T>.FontColor(Value: string): iModelGenericTitle<T>;
begin
Result := Self;
FFontColor := format('rgb(%s)', [Value]);
end;
function TModelGenericTitle<T>.FontColorHEX: string;
begin
Result := FFontColor;
end;
function TModelGenericTitle<T>.FontFamily: string;
begin
Result := FFontFamily;
end;
function TModelGenericTitle<T>.FontSize(Value: String): iModelGenericTitle<T>;
begin
Result := Self;
FFontSize := Value;
end;
function TModelGenericTitle<T>.FontFamily(Value: string): iModelGenericTitle<T>;
begin
Result := Self;
FFontFamily := Value;
end;
function TModelGenericTitle<T>.FontSize(Value: Integer): iModelGenericTitle<T>;
begin
Result := Self;
FFontSize := IntToStr(Value) + 'px';
end;
function TModelGenericTitle<T>.FontSize: String;
begin
Result := FFontSize;
end;
class function TModelGenericTitle<T>.New(
Parent: T): iModelGenericTitle<T>;
begin
Result := Self.Create(Parent);
end;
function TModelGenericTitle<T>.Result: string;
var
fontFamily : string;
begin
if FFontFamily <> '' then
FontFamily := 'font-family:' + FFontFamily + ';';
Result := '<h1 style="' +
'color:' + FFontColor + ';' +
FontFamily +
'font-size:' + FFontSize + ';' +
'text-align:' + FTextAlignment + ';' +
'">' + FText + '</h1>';
end;
function TModelGenericTitle<T>.Text: string;
begin
Result := FText;
end;
function TModelGenericTitle<T>.Text(Value: string): iModelGenericTitle<T>;
begin
Result := Self;
FText := Value;
end;
function TModelGenericTitle<T>.TextAlignment: string;
begin
Result := FTextAlignment;
end;
function TModelGenericTitle<T>.TextAlignment(
Value: string): iModelGenericTitle<T>;
begin
Result := Self;
FTextAlignment := Value;
end;
end.