-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCEF_LCL_ViewComponent.inc
512 lines (447 loc) · 14.2 KB
/
CEF_LCL_ViewComponent.inc
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
//----------------------------------------
// Copyright © yanghy. All Rights Reserved.
//
// Licensed under Lazarus.modifiedLGPL
//----------------------------------------
procedure ViewComponent_Create(const AOwner: TComponent; out Result: TCEFViewComponent); extdecl;
begin
handleExceptionBegin
Result := TCEFViewComponent.Create(AOwner);
handleExceptionEnd
end;
procedure ViewComponent_Free(const AObj: TCEFViewComponent); extdecl;
begin
handleExceptionBegin
AObj.Free;
handleExceptionEnd
end;
function ViewComponent_ToStringEx(const AObj: TCEFViewComponent; include_children: LongBool): PChar; extdecl;
begin
handleExceptionBegin
Result := PChar(string(AObj.ToStringEx(include_children)));
handleExceptionEnd
end;
function ViewComponent_IsSame(const AObj: TCEFViewComponent; const that: ICefView): LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.IsSame(that);
handleExceptionEnd
end;
procedure ViewComponent_SizeToPreferredSize(const AObj: TCEFViewComponent); extdecl;
begin
handleExceptionBegin
AObj.SizeToPreferredSize;
handleExceptionEnd
end;
procedure ViewComponent_InvalidateLayout(const AObj: TCEFViewComponent); extdecl;
begin
handleExceptionBegin
AObj.InvalidateLayout;
handleExceptionEnd
end;
procedure ViewComponent_RequestFocus(const AObj: TCEFViewComponent); extdecl;
begin
handleExceptionBegin
AObj.RequestFocus;
handleExceptionEnd
end;
function ViewComponent_ConvertPointToScreen(const AObj: TCEFViewComponent; var point: TCefPoint): LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.ConvertPointToScreen(point);
handleExceptionEnd
end;
function ViewComponent_ConvertPointFromScreen(const AObj: TCEFViewComponent; var point: TCefPoint): LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.ConvertPointFromScreen(point);
handleExceptionEnd
end;
function ViewComponent_ConvertPointToWindow(const AObj: TCEFViewComponent; var point: TCefPoint): LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.ConvertPointToWindow(point);
handleExceptionEnd
end;
function ViewComponent_ConvertPointFromWindow(const AObj: TCEFViewComponent; var point: TCefPoint): LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.ConvertPointFromWindow(point);
handleExceptionEnd
end;
function ViewComponent_ConvertPointToView(const AObj: TCEFViewComponent; const view : ICefView; var point: TCefPoint): LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.ConvertPointToView(view, point);
handleExceptionEnd
end;
function ViewComponent_ConvertPointFromView(const AObj: TCEFViewComponent; const view : ICefView; var point: TCefPoint): LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.ConvertPointFromView(view, point);
handleExceptionEnd
end;
function ViewComponent_GetInitialized(const AObj: TCEFViewComponent) : LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.Initialized;
handleExceptionEnd
end;
procedure ViewComponent_GetAsView(const AObj: TCEFViewComponent; out Result: ICefView); extdecl;
begin
handleExceptionBegin
Result := AObj.AsView;
handleExceptionEnd
end;
procedure ViewComponent_GetAsBrowserView(const AObj: TCEFViewComponent; out Result: ICefBrowserView); extdecl;
begin
handleExceptionBegin
Result := AObj.AsBrowserView;
handleExceptionEnd
end;
procedure ViewComponent_GetAsButton(const AObj: TCEFViewComponent; out Result: ICefButton); extdecl;
begin
handleExceptionBegin
Result := AObj.AsButton;
handleExceptionEnd
end;
procedure ViewComponent_GetAsPanel(const AObj: TCEFViewComponent; out Result: ICefPanel); extdecl;
begin
handleExceptionBegin
Result := AObj.AsPanel;
handleExceptionEnd
end;
procedure ViewComponent_GetAsScrollView(const AObj: TCEFViewComponent; out Result: ICefScrollView); extdecl;
begin
handleExceptionBegin
Result := AObj.AsScrollView;
handleExceptionEnd
end;
procedure ViewComponent_GetAsTextfield(const AObj: TCEFViewComponent; out Result: ICefTextfield); extdecl;
begin
handleExceptionBegin
Result := AObj.AsTextfield;
handleExceptionEnd
end;
procedure ViewComponent_GetViewForID(const AObj: TCEFViewComponent; id_: Integer; out Result: ICefView); extdecl;
begin
handleExceptionBegin
Result := AObj.ViewForID[id_];
handleExceptionEnd
end;
function ViewComponent_GetValid(const AObj: TCEFViewComponent) : LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.Valid;
handleExceptionEnd
end;
function ViewComponent_GetAttached(const AObj: TCEFViewComponent) : LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.Attached;
handleExceptionEnd
end;
procedure ViewComponent_GetDelegate(const AObj: TCEFViewComponent; out Result: ICefViewDelegate); extdecl;
begin
handleExceptionBegin
Result := AObj.Delegate;
handleExceptionEnd
end;
procedure ViewComponent_GetWindow(const AObj: TCEFViewComponent; out Result: ICefWindow); extdecl;
begin
handleExceptionBegin
Result := AObj.Window;
handleExceptionEnd
end;
procedure ViewComponent_GetParentView(const AObj: TCEFViewComponent; out Result: ICefView); extdecl;
begin
handleExceptionBegin
Result := AObj.ParentView;
handleExceptionEnd
end;
procedure ViewComponent_GetBoundsInScreen(const AObj: TCEFViewComponent; out Result: TCefRect); extdecl;
begin
handleExceptionBegin
Result := AObj.BoundsInScreen;
handleExceptionEnd
end;
procedure ViewComponent_GetPreferredSize(const AObj: TCEFViewComponent; out Result: TCefSize); extdecl;
begin
handleExceptionBegin
Result := AObj.PreferredSize;
handleExceptionEnd
end;
procedure ViewComponent_GetMinimumSize(const AObj: TCEFViewComponent; out Result: TCefSize); extdecl;
begin
handleExceptionBegin
Result := AObj.MinimumSize;
handleExceptionEnd
end;
procedure ViewComponent_GetMaximumSize(const AObj: TCEFViewComponent; out Result: TCefSize); extdecl;
begin
handleExceptionBegin
Result := AObj.MaximumSize;
handleExceptionEnd
end;
function ViewComponent_GetVisible(const AObj: TCEFViewComponent) : LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.Visible;
handleExceptionEnd
end;
procedure ViewComponent_SetVisible(const AObj: TCEFViewComponent; visible_: LongBool); extdecl;
begin
handleExceptionBegin
AObj.Visible := visible_;
handleExceptionEnd
end;
function ViewComponent_GetDrawn(const AObj: TCEFViewComponent) : LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.Drawn;
handleExceptionEnd
end;
function ViewComponent_GetEnabled(const AObj: TCEFViewComponent) : LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.Enabled;
handleExceptionEnd
end;
procedure ViewComponent_SetEnabled(const AObj: TCEFViewComponent; enabled_: LongBool); extdecl;
begin
handleExceptionBegin
AObj.Enabled := enabled_;
handleExceptionEnd
end;
function ViewComponent_GetFocusable(const AObj: TCEFViewComponent) : LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.Focusable;
handleExceptionEnd
end;
procedure ViewComponent_SetFocusable(const AObj: TCEFViewComponent; focusable_: LongBool); extdecl;
begin
handleExceptionBegin
AObj.Focusable := focusable_;
handleExceptionEnd
end;
function ViewComponent_GetAccessibilityFocusable(const AObj: TCEFViewComponent) : LongBool; extdecl;
begin
handleExceptionBegin
Result := AObj.AccessibilityFocusable;
handleExceptionEnd
end;
procedure ViewComponent_GetBackgroundColor(const AObj: TCEFViewComponent; out Result: TCefColor); extdecl;
begin
handleExceptionBegin
Result := AObj.BackgroundColor;
handleExceptionEnd
end;
procedure ViewComponent_SetBackgroundColor(const AObj: TCEFViewComponent; color: TCefColor); extdecl;
begin
handleExceptionBegin
AObj.BackgroundColor := color;
handleExceptionEnd
end;
function ViewComponent_GetID(const AObj: TCEFViewComponent) : integer; extdecl;
begin
handleExceptionBegin
Result := AObj.ID;
handleExceptionEnd
end;
procedure ViewComponent_SetID(const AObj: TCEFViewComponent; id_: Integer); extdecl;
begin
handleExceptionBegin
AObj.ID := id_;
handleExceptionEnd
end;
function ViewComponent_GetGroupID(const AObj: TCEFViewComponent) : integer; extdecl;
begin
handleExceptionBegin
Result := AObj.GroupID;
handleExceptionEnd
end;
procedure ViewComponent_SetGroupID(const AObj: TCEFViewComponent; group_id: Integer); extdecl;
begin
handleExceptionBegin
AObj.GroupID := group_id;
handleExceptionEnd
end;
procedure ViewComponent_GetBounds(const AObj: TCEFViewComponent; out Result: TCefRect); extdecl;
begin
handleExceptionBegin
Result := AObj.Bounds;
handleExceptionEnd
end;
procedure ViewComponent_SetBounds(const AObj: TCEFViewComponent; var bounds_: TCefRect); extdecl;
begin
handleExceptionBegin
AObj.Bounds := bounds_;
handleExceptionEnd
end;
procedure ViewComponent_GetSize(const AObj: TCEFViewComponent; out Result: TCefSize); extdecl;
begin
handleExceptionBegin
Result := AObj.Size;
handleExceptionEnd
end;
procedure ViewComponent_SetSize(const AObj: TCEFViewComponent; var size_: TCefSize); extdecl;
begin
handleExceptionBegin
AObj.Size := size_;
handleExceptionEnd
end;
procedure ViewComponent_GetPosition(const AObj: TCEFViewComponent; out Result: TCefPoint); extdecl;
begin
handleExceptionBegin
Result := AObj.Position;
handleExceptionEnd
end;
procedure ViewComponent_SetPosition(const AObj: TCEFViewComponent; var position_: TCefPoint); extdecl;
begin
handleExceptionBegin
AObj.Position := position_;
handleExceptionEnd
end;
function ViewComponent_GetTypeString(const AObj: TCEFViewComponent) : PChar; extdecl;
begin
handleExceptionBegin
Result := PChar(string(AObj.TypeString));
handleExceptionEnd
end;
function ViewComponent_GetHeightForWidth(const AObj: TCEFViewComponent; width: Integer) : Integer; extdecl;
begin
handleExceptionBegin
Result := AObj.HeightForWidth[width];
handleExceptionEnd
end;
procedure ViewComponent_SetOnGetPreferredSize(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnGetPreferredSize}
{$DEFINE EventName := OnGetPreferredSize}
EventMethodCode
end;
procedure ViewComponent_SetOnGetMinimumSize(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnGetMinimumSize}
{$DEFINE EventName := OnGetMinimumSize}
EventMethodCode
end;
procedure ViewComponent_SetOnGetMaximumSize(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnGetMaximumSize}
{$DEFINE EventName := OnGetMaximumSize}
EventMethodCode
end;
procedure ViewComponent_SetOnGetHeightForWidth(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnGetHeightForWidth}
{$DEFINE EventName := OnGetHeightForWidth}
EventMethodCode
end;
procedure ViewComponent_SetOnParentViewChanged(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnParentViewChanged}
{$DEFINE EventName := OnParentViewChanged}
EventMethodCode
end;
procedure ViewComponent_SetOnChildViewChanged(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnChildViewChanged}
{$DEFINE EventName := OnChildViewChanged}
EventMethodCode
end;
procedure ViewComponent_SetOnWindowChanged(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnWindowChanged}
{$DEFINE EventName := OnWindowChanged}
EventMethodCode
end;
procedure ViewComponent_SetOnLayoutChanged(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnLayoutChanged}
{$DEFINE EventName := OnLayoutChanged}
EventMethodCode
end;
procedure ViewComponent_SetOnFocus(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnFocus}
{$DEFINE EventName := OnFocus}
EventMethodCode
end;
procedure ViewComponent_SetOnBlur(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnBlur}
{$DEFINE EventName := OnBlur}
EventMethodCode
end;
procedure ViewComponent_SetOnThemeChanged(const AObj: TCEFViewComponent; AEventData: Pointer); extdecl;
begin
{$DEFINE EventMethodName := ViewComponent_OnThemeChanged}
{$DEFINE EventName := OnThemeChanged}
EventMethodCode
end;
exports
ViewComponent_Create,
ViewComponent_Free,
ViewComponent_ToStringEx,
ViewComponent_IsSame,
ViewComponent_SizeToPreferredSize,
ViewComponent_InvalidateLayout,
ViewComponent_RequestFocus,
ViewComponent_ConvertPointToScreen,
ViewComponent_ConvertPointFromScreen,
ViewComponent_ConvertPointToWindow,
ViewComponent_ConvertPointFromWindow,
ViewComponent_ConvertPointToView,
ViewComponent_ConvertPointFromView,
ViewComponent_GetInitialized,
ViewComponent_GetAsView,
ViewComponent_GetAsBrowserView,
ViewComponent_GetAsButton,
ViewComponent_GetAsPanel,
ViewComponent_GetAsScrollView,
ViewComponent_GetAsTextfield,
ViewComponent_GetViewForID,
ViewComponent_GetValid,
ViewComponent_GetAttached,
ViewComponent_GetDelegate,
ViewComponent_GetWindow,
ViewComponent_GetParentView,
ViewComponent_GetBoundsInScreen,
ViewComponent_GetPreferredSize,
ViewComponent_GetMinimumSize,
ViewComponent_GetMaximumSize,
ViewComponent_GetVisible,
ViewComponent_SetVisible,
ViewComponent_GetDrawn,
ViewComponent_GetEnabled,
ViewComponent_SetEnabled,
ViewComponent_GetFocusable,
ViewComponent_SetFocusable,
ViewComponent_GetAccessibilityFocusable,
ViewComponent_GetBackgroundColor,
ViewComponent_SetBackgroundColor,
ViewComponent_GetID,
ViewComponent_SetID,
ViewComponent_GetGroupID,
ViewComponent_SetGroupID,
ViewComponent_GetBounds,
ViewComponent_SetBounds,
ViewComponent_GetSize,
ViewComponent_SetSize,
ViewComponent_GetPosition,
ViewComponent_SetPosition,
ViewComponent_GetTypeString,
ViewComponent_GetHeightForWidth,
ViewComponent_SetOnGetPreferredSize,
ViewComponent_SetOnGetMinimumSize,
ViewComponent_SetOnGetMaximumSize,
ViewComponent_SetOnGetHeightForWidth,
ViewComponent_SetOnParentViewChanged,
ViewComponent_SetOnChildViewChanged,
ViewComponent_SetOnWindowChanged,
ViewComponent_SetOnLayoutChanged,
ViewComponent_SetOnFocus,
ViewComponent_SetOnBlur,
ViewComponent_SetOnThemeChanged;