-
Notifications
You must be signed in to change notification settings - Fork 261
/
Copy pathVirtualTrees.AncestorFMX.pas
309 lines (253 loc) · 9.49 KB
/
VirtualTrees.AncestorFMX.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
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
unit VirtualTrees.AncestorFMX;
{$SCOPEDENUMS ON}
{****************************************************************************************************************}
{ Project : VirtualTrees }
{ }
{ author : Karol Bieniaszewski }
{ year : 2022 }
{ contibutors : }
{****************************************************************************************************************}
interface
uses
System.Classes, System.UITypes,
FMX.Graphics,
VirtualTrees.FMX, VirtualTrees.BaseTree;
const
EVENT_OBJECT_STATECHANGE = $800A;
type
TVTAncestorFMX = class abstract(TBaseVirtualTree)
protected
procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X: Single; Y: Single); override;
procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X: Single; Y: Single); override;
procedure MouseWheel(Shift: TShiftState; WheelDelta: Integer; var Handled: Boolean); override;
function PrepareDottedBrush(CurrentDottedBrush: TBrush; Bits: Pointer; const BitsLinesCount: Word): TBrush; override;
function GetClientHeight: Single; override;
function GetClientWidth: Single; override;
function GetClientRect: TRect; override;
procedure NotifyAccessibleEvent(pEvent: Uint32 = EVENT_OBJECT_STATECHANGE); virtual;
procedure HScrollChangeProc(Sender: TObject); override;
procedure VScrollChangeProc(Sender: TObject); override;
procedure Resize; override;
//TODO: CopyCutPaste - need to be implemented
{
function PasteFromClipboard(): Boolean; override;
procedure CopyToClipboard(); override;
procedure CutToClipboard(); override;
}
public
constructor Create(AOwner: TComponent); override;
end;
implementation
uses
System.SysUtils,
FMX.Forms,
VirtualTrees.Header,
VirtualTrees.Types;
type
TVTHeaderCracker = class(TVTHeader);
//----------------------------------------------------------------------------------------------------------------------
procedure TVTAncestorFMX.MouseDown(Button: TMouseButton; Shift: TShiftState; X: Single; Y: Single); //wymaga BaseTree
Var MM: TWMMouse;
hInfo: THitInfo;
P: TPoint;
isNC: Boolean;
begin
P.X:= X;
P.Y:= Y;
if ClientRect.Contains(P) then
begin
isNc:= false;
end else
begin
isNC:= true;
P:= ClientToScreen(P);
end;
FillTWMMouse(MM, Button, Shift, P.X, P.Y, isNC, false);
if TVTHeaderCracker(Header).HandleMessage(TMessage(MM)) then
exit;//!!!
FillTWMMouse(MM, Button, Shift, X, Y, isNC, false);
// get information about the hit
GetHitTestInfoAt(X, Y, True, hInfo);
HandleMouseDown(MM, hInfo);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TVTAncestorFMX.MouseUp(Button: TMouseButton; Shift: TShiftState; X: Single; Y: Single); //wymaga BaseTree
Var MM: TWMMouse;
hInfo: THitInfo;
P: TPoint;
isNC: Boolean;
begin
P.X:= X;
P.Y:= Y;
if ClientRect.Contains(P) then
begin
isNc:= false;
end else
begin
isNC:= true;
P:= ClientToScreen(P);
end;
FillTWMMouse(MM, Button, Shift, P.X, P.Y, isNC, true);
if TVTHeaderCracker(Header).HandleMessage(TMessage(MM)) then
exit;//!!!
FillTWMMouse(MM, Button, Shift, X, Y, isNC, true);
// get information about the hit
GetHitTestInfoAt(X, Y, True, hInfo);
HandleMouseUp(MM, hInfo);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TVTAncestorFMX.MouseWheel(Shift: TShiftState; WheelDelta: Integer; var Handled: Boolean); //wymaga BaseTree
Var M: TCMMouseWheel;
P: TPoint;
begin
P:= Screen.MousePos;
if not ClientRect.Contains(P) then
P:= ClientToScreen(P);
M.Msg:= CM_MOUSEWHEEL;
M.ShiftState:= Shift;
M.WheelDelta:= WheelDelta;
M.XPos:= P.X;
M.YPos:= P.Y;
M.Result:= 0;
CMMouseWheel(M);
Handled:= M.Result<>0;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TVTAncestorFMX.NotifyAccessibleEvent(pEvent: Uint32);
begin
// Currently empty by intention as highly platfrom depedant
end;
//----------------------------------------------------------------------------------------------------------------------
function TVTAncestorFMX.PrepareDottedBrush(CurrentDottedBrush: TBrush; Bits: Pointer; const BitsLinesCount: Word): TBrush;
Var PatternBitmap: TBitmap;
i_bmp, line, bit: Integer;
begin
//FMX pattern brush is different then VCL. Where color is derived from current one...
//We should have 2 brushes 1 for Tree lines 1 for grid lines
//and recreate it every time when color is changing
CurrentDottedBrush.Free;
FDottedBrushGridLines.Free;
Result := nil;
for i_bmp:= 1 to 2 do
begin
PatternBitmap := TBitmap.Create(8, BitsLinesCount);
PatternBitmap.Clear(TAlphaColorRec.Null); //fully transparent
PatternBitmap.Canvas.BeginScene;
PatternBitmap.Map(TMapAccess.Write, BitmapData);
try
{
DestPitch := PixelFormatBytes[PatternBitmap.PixelFormat];
System.Move(PAlphaColorArray(BitmapData.Data)[0], PAlphaColorArray(Bits)[0], 8 * 4);
}
for line:= 0 to BitsLinesCount-1 do
begin
for bit:= 0 to 7 do
begin
if PWordArray(Bits)^[line] and (1 shl bit)=0 then
BitmapData.SetPixel(bit, line, clWhite) else
begin
if i_bmp=1 then
BitmapData.SetPixel(bit, line, TreeColors.TreeLineColor) else
BitmapData.SetPixel(bit, line, TreeColors.GridLineColor);
end;
end;
end;
finally
PatternBitmap.UnMap(BitmapData);
end;
PatternBitmap.Canvas.EndScene;
if i_bmp=1 then
begin
Result := TStrokeBrush.Create(TBrushKind.Bitmap, clWhite);
Result.Bitmap.Bitmap.Assign(PatternBitmap);
end else
begin
FDottedBrushGridLines := TStrokeBrush.Create(TBrushKind.Bitmap, clWhite);
FDottedBrushGridLines.Bitmap.Bitmap.Assign(PatternBitmap);
end;
FreeAndNil(PatternBitmap);
end;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TVTAncestorFMX.Resize;
Var M: TWMSize;
begin
inherited;
if FInCreate then
exit; //!!
M.Msg:= WM_SIZE;
M.SizeType:= SIZE_RESTORED;
M.Width:= Width;
M.Height:= Height;
M.Result:= 0;
WMSize(M);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TVTAncestorFMX.VScrollChangeProc(Sender: TObject);
Var M: TWMHScroll;
begin
M.Msg:= WM_VSCROLL;
M.ScrollCode:= SB_THUMBPOSITION;
M.Pos:= GetScrollPos(SB_VERT);
M.ScrollBar:= SB_VERT;
M.Result:= 0;
WMVScroll(M);
Repaint;
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TVTAncestorFMX.HScrollChangeProc(Sender: TObject);
Var M: TWMHScroll;
begin
M.Msg:= WM_HSCROLL;
M.ScrollCode:= SB_THUMBPOSITION;
M.Pos:= GetScrollPos(SB_HORZ);
M.ScrollBar:= SB_HORZ;
M.Result:= 0;
WMHScroll(M);
Repaint;
end;
//----------------------------------------------------------------------------------------------------------------------
constructor TVTAncestorFMX.Create(AOwner: TComponent);
begin
FInCreate:= true;
inherited;
BackgroundOffsetX:= 0;
BackgroundOffsetY:= 0;
Margin:= 4;
TextMargin:= 4;
DefaultNodeHeight:= 18; //???
Indent:= 18; //???
FInCreate:= false;
end;
//----------------------------------------------------------------------------------------------------------------------
function TVTAncestorFMX.GetClientHeight: Single;
begin
Result:= ClientRect.Height;
end;
//----------------------------------------------------------------------------------------------------------------------
function TVTAncestorFMX.GetClientWidth: Single;
begin
Result:= ClientRect.Width;
end;
//----------------------------------------------------------------------------------------------------------------------
function TVTAncestorFMX.GetClientRect: TRect;
begin
Result:= ClipRect;
if Assigned(Header) then
begin
if TVTHeaderOption.hoVisible in Header.Options then
Inc(Result.Top, Header.Height);
end;
if FVScrollBar.Visible then
Dec(Result.Right, VScrollBar.Width);
if HScrollBar.Visible then
Dec(Result.Bottom, HScrollBar.Height);
if Result.Left>Result.Right then
Result.Left:= Result.Right;
if Result.Top>Result.Bottom then
Result.Top:= Result.Bottom;
//OffsetRect(Result, OffsetX, OffsetY);
//Dec(Result.Left, -OffsetX); //increase width
//Dec(Result.Top, -OffsetY); //increase height
end;
end.