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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
|
unit TextBlock;
interface
uses KOL, windows;
const
ppLeft = 0;
ppRight = 1;
//effects
effCut = 0;
effWrap = 1;
effRoll = 2;
effPong = 3;
effCenter = $100;
type
pChunk = ^tChunk;
tChunk = record
_type:integer; // type
val :integer; // sign value or text length
txt :PWideChar; // text value pointer
add :integer; // offset for text effect
dir :integer; // ping-pong directon
end;
pChunkArray = ^tChunkArray;
tChunkArray = array [0..1000] of tChunk;
type
pTextData = ^tTextData;
tTextData = record
// runtime data
UpdTimer :cardinal;
TextFont :HFONT;
NeedResize :Boolean;
// working data
TextChunk :pChunkArray;
Text :PWideChar; // for text chunks
TextColor :TCOLORREF;
BkColor :TCOLORREF;
TextLF :TLOGFONTW;
// options
TextEffect :dword;
RollStep :integer;
RollGap :integer;
// RollTail :integer;
UpdInterval :cardinal;
end;
const
MaxTxtScrollSpeed = 20;
awkTextPad = 4; // text block pad from frame border
const
idx_effect = 0;
idx_rollstep = 1;
idx_rollgap = 2;
idx_timer = 3;
idx_txtcolor = 4;
idx_bkcolor = 5;
idx_font = 6;
type
pTextBlock = ^tTextBlock;
tTextBlock = object(TControl)
private
procedure myCtrlResize(Sender: PObj);
procedure myTextPaint(Sender: PControl; DC: HDC);
procedure myMouseDown(Sender:PControl;var Mouse:TMouseEventData);
procedure ClearText;
function Split(src:PWideChar):pChunkArray;
procedure DrawChunks(dc:HDC;Chunk:pChunk;rc:TRECT;justpaint:boolean);
procedure DrawLines (dc:HDC;Chunk:pChunk;rc:TRECT;justpaint:boolean);
function GetEffect(idx:integer):integer;
procedure SetEffect(idx:integer;value:integer);
function GetText:PWideChar;
procedure SetText(value:PWideChar);
function GetFontData:TLOGFONTW;
procedure SetFontData(const value:TLOGFONTW);
public
procedure DrawText(DC: HDC; justpaint:boolean);
property Effects :integer index idx_effect read GetEffect write SetEffect;
property RollStep :integer index idx_rollstep read GetEffect write SetEffect;
property RollGap :integer index idx_rollgap read GetEffect write SetEffect;
property UpdateTime:integer index idx_timer read GetEffect write SetEffect;
property TextColor :integer index idx_txtcolor read GetEffect write SetEffect;
property BkColor :integer index idx_bkcolor read GetEffect write SetEffect;
property Font :integer index idx_font read GetEffect write SetEffect;
property FontData :TLOGFONTW read GetFontData write SetFontData;
property BlockText:PWideChar read GetText write SetText;
end;
function MakeNewTextBlock(AOwner:PControl;BkColor:TCOLORREF):pTextBlock;
implementation
uses messages,common;
{$include tb_chunk.inc}
function tTextBlock.GetFontData:TLOGFONTW;
begin
result:=pTextData(CustomData).TextLF;
end;
procedure tTextBlock.SetFontData(const value:TLOGFONTW);
begin
move(value,pTextData(CustomData).TextLF,SizeOf(TLOGFONTW));
end;
function tTextBlock.GetEffect(idx:integer):integer;
begin
with pTextData(CustomData)^ do
case idx of
idx_effect : result:=TextEffect;
idx_rollstep: result:=RollStep;
idx_rollgap : result:=RollGap;
idx_txtcolor: result:=TextColor;
idx_bkcolor : result:=BkColor;
idx_font : result:=0;
idx_timer : result:=UpdInterval;
else // it can't be really
result:=0;
end;
end;
procedure TimerProc(wnd:HWND;uMsg:uint;TB:pTextBlock;dwTime:dword); stdcall;
var
DC:HDC;
begin
DC:=GetDC(wnd);
TB.DrawText(DC,false);
ReleaseDC(wnd,DC);
end;
procedure tTextBlock.SetEffect(idx:integer;value:integer);
var
DC:HDC;
OldFont:HFONT;
begin
with pTextData(CustomData)^ do
case idx of
idx_effect : TextEffect :=value;
idx_rollstep: RollStep :=value;
idx_rollgap : RollGap :=value;
idx_txtcolor: TextColor :=value;
idx_bkcolor : BkColor :=value;
idx_font : begin
DC:=GetDC(0);
OldFont:=SelectObject(DC,value);
GetObject(GetCurrentObject(dc,OBJ_FONT),SizeOf(TLOGFONT),@TextLF);
SelectObject(DC,OldFont);
ReleaseDC(0,DC);
end;
idx_timer : begin
// stoptimer
if UpdTimer<>0 then
begin
KillTimer(0,UpdTimer);
UpdTimer:=0;
end;
UpdInterval:=value;
// starttimer
if UpdInterval>0 then
UpdTimer:=SetTimer(Self.GetWindowHandle,integer(@Self),(MaxTxtScrollSpeed+1-UpdInterval)*100,@TimerProc);
end;
end;
end;
procedure tTextBlock.ClearText;
var
D:pTextData;
begin
D:=CustomData;
if D.Text<>nil then
begin
DeleteChunks(D.TextChunk);
FreeMem(D.Text);
D.Text:=nil;
end;
end;
function tTextBlock.GetText:PWideChar;
begin
result:=pTextData(CustomData)^.Text;
end;
procedure tTextBlock.SetText(value:PWideChar);
var
D:pTextData;
begin
D:=CustomData;
if (D.Text<>value) or
(StrCmpW(D.Text, value)<>0) then
begin
self.ClearText;
if (value<>nil) and (value^<>#0) then
begin
GetMem(D.Text,(StrLenW(value)+1)*SizeOf(WideChar));
WStrCopy(D.Text,value);
D.TextChunk:=Split(D.Text);
// start timer if was stopped
if (D.UpdTimer=0) and (D.UpdInterval>0) then
D.UpdTimer:=SetTimer(Self.GetWindowHandle,integer(@Self),
(MaxTxtScrollSpeed+1-D.UpdInterval)*100,@TimerProc);
end
else // stop timer for empty text
begin
if D.UpdTimer<>0 then
begin
KillTimer(0,D.UpdTimer);
D.UpdTimer:=0;
end;
end;
Invalidate;
end;
end;
procedure tTextBlock.DrawText(DC:HDC; justpaint:boolean);
var
dst:TRECT;
D:pTextData;
MemDC:HDC;
begin
D:=CustomData;
with D^ do
if TextChunk<>nil then
begin
CopyRect(dst,Self.BoundsRect);
MemDC:=CreateCompatibleDC(dc);
SetTextColor(MemDC,TextColor);
SelectObject(MemDC,CreateCompatibleBitmap(DC,dst.right,dst.bottom));
DeleteObject(SelectObject(MemDC,CreateFontIndirectW(D.TextLF)));
BitBlt(MemDC,dst.left,dst.top,dst.right-dst.left,dst.bottom-dst.top,
dc,dst.left,dst.top,SRCCOPY);
InflateRect(dst,-4,-2); // text padding from text block
DrawChunks(MemDC,@TextChunk[0],dst,justpaint); // i.e. only paint or roll
InflateRect(dst,4,2); // text padding from text block
BitBlt(dc,dst.left,dst.top,dst.right-dst.left,dst.bottom-dst.top,
MemDC,dst.left,dst.top,SRCCOPY);
DeleteDC(MemDC);
end;
end;
procedure tTextBlock.myTextPaint(Sender: PControl; DC: HDC);
begin
DrawText(DC,true);
end;
procedure tTextBlock.myMouseDown(Sender:PControl;var Mouse:TMouseEventData);
var
wnd:HWND;
begin
wnd:=GetParent(GetParent(Sender.GetWindowHandle));
SendMessage(wnd,WM_SYSCOMMAND,
SC_MOVE or HTCAPTION,MAKELPARAM(Mouse.x,Mouse.y));
end;
// avoiding anchors problems
procedure tTextBlock.myCtrlResize(Sender: PObj);
var
tmp:integer;
D:pTextData;
begin
D:=CustomData;
if D.NeedResize then
begin
D.NeedResize:=false;
tmp:=PControl(Sender).Parent.Width-2*awkTextPad;
if (PControl(Sender)^.Width)>tmp then
PControl(Sender)^.Width:=tmp;
D.NeedResize:=true;
end;
end;
procedure Destroy(dummy:PControl;sender:PObj);
var
D:pTextData;
begin
D:=PTextBlock(sender).CustomData;
if D.UpdTimer<>0 then
begin
KillTimer(0,D.UpdTimer);
D.UpdTimer:=0;
end;
PTextBlock(sender).ClearText;
end;
function MakeNewTextBlock(AOwner:PControl;BkColor:TCOLORREF):pTextBlock;
var
D:pTextData;
begin
result:=pTextBlock(NewPanel(AOwner,esNone));
// result:=NewLabel(AOwner,'');
// result:=NewLabelEffect(AOwner,'',0);
GetMem(D,SizeOf(tTextData));
FillChar(D^,SizeOf(tTextData),0);
result.CustomData :=D;
result.Transparent:=true;
result.SetSize(AOwner.Width-awkTextPad*2,40);
result.SetPosition(AOwner.Left+awkTextPad,awkTextPad);
result.Anchor(true,true,true,true);
result.OnResize :=result.myCtrlResize;
result.OnPaint :=result.myTextPaint;
result.OnMouseDown:=result.myMouseDown;
Result.OnDestroy:=TOnEvent(MakeMethod(nil,@Destroy));
// result..InitFrame;
D.BkColor :=BkColor;
D.TextChunk :=nil;
D.NeedResize:=true;
end;
end.
|