File: lclmessageglue.xml

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (1047 lines) | stat: -rw-r--r-- 23,387 bytes parent folder | download
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
<?xml version="1.0" encoding="UTF-8"?>
<!--

Documentation for LCL (Lazarus Component Library) and LazUtils (Lazarus 
Utilities) are published under the Creative Commons Attribution-ShareAlike 4.0 
International public license.

https://creativecommons.org/licenses/by-sa/4.0/legalcode.txt
https://gitlab.com/freepascal.org/lazarus/lazarus/-/blob/main/docs/cc-by-sa-4-0.txt

Copyright (c) 1997-2025, by the Lazarus Development Team.

-->
<fpdoc-descriptions>
<package name="lcl">
<!--
====================================================================
LCLMessageGlue
====================================================================
-->
<module name="LCLMessageGlue">
<short>
Contains routines used to send messages from widgetset classes to the LCL.
</short>
<descr>
<p>
<file>lclmessageglue.pas</file> is used to make the passing of messages to 
the LCL from the different widgetsets easier. Your mileage will vary if you 
try to use these procedures from within your program.
</p>
<p>
<file>lclmessageglue.pas</file> is part of the Lazarus Component Library 
(<b>LCL</b>).
</p>
</descr>

<!-- unresolved references -->
<element name="Classes"/>
<element name="Forms"/>
<element name="LCLClasses"/>
<element name="LCLProc"/>
<element name="Controls"/>
<element name="Messages"/>
<element name="LMessages"/>
<element name="LCLType"/>

<element name="DeliverMessage">
<short>
Delivers a message (TLMessage) to the specified component, control or object.
</short>
<descr>
<p>
<var>DeliverMessage</var> ensures that the reference count for a TLCLComponent 
descendant in Target is maintained during message delivery. The reference 
count is incremented prior to message delivery, and decremented when the 
operation is completed.
</p>
<p>
If Target is a TControl descendant, the TLMessage instance is sent to the 
WindowProc method in the control. For TObject descendants, the message is sent 
using the Dispatch method in the class instance.
</p>
<p>
An exception which occurs during message delivery is forwarded to the 
HandleException method in the Application.
</p>
</descr>
<seealso>
<link id="#lcl.lmessages.TLMessage">TLMessage</link>
<link id="#lcl.forms.Application">Application</link>
<link id="#lcl.forms.TApplication.HandleException">TApplication.HandleException</link>
<link id="#lcl.lclclasses.TLCLComponent">TLCLComponent</link>
<link id="#lcl.controls.TControl.WindowProc">TControl.WindowProc</link>
<link id="#rtl.system.TObject.Dispatch">TObject.Dispatch</link>
</seealso>
</element>
<element name="DeliverMessage.Result">
<short>
Pointer to the result code from the TLMessage instance.
</short>
</element>
<element name="DeliverMessage.Target">
<short>
Control or object where the message is delivered.
</short>
</element>
<element name="DeliverMessage.AMessage">
<short>
TLMessage instance with the message type constant and result code used in the 
routine.
</short>
</element>

<element name="SendSimpleMessage">
<short>
Creates, configures, and delivers a message to the specified target control.
</short>
<descr>
<p>
Calls DeliverMessage to apply or dispatch the message to the target.
</p>
</descr>
<seealso>
<link id="DeliverMessage"/>
<link id="#lcl.lmessages.TLMessage">TLMessage</link>
</seealso>
</element>
<element name="SendSimpleMessage.Result">
<short>
Pointer to the integer result code in the message. 0 if the message was 
accepted, non-zero if the message was rejected.
</short>
</element>
<element name="SendSimpleMessage.Target">
<short>
Control where the message is delivered.
</short>
</element>
<element name="SendSimpleMessage.Msg">
<short>
Message type constant sent in the simple message.
</short>
</element>

<element name="LCLSendActivateMsg">
<short>
Delivers a LM_ACTIVATE message to the specified target control.
</short>
<descr>
<p>
Calls DeliverMessage to apply or dispatch the message to the target.
</p>
</descr>
<seealso>
<link id="DeliverMessage"/>
<link id="#lcl.lmessages.TLMessage">TLMessage</link>
</seealso>
</element>
<element name="LCLSendActivateMsg.Result">
<short>
Pointer to the integer result code from the delivered message. 0 indicates the 
message was accepted. A non-zero value indicates the message was rejected.
</short>
</element>
<element name="LCLSendActivateMsg.Target">
<short>
The Control where the LM_ACTIVATE message is delivered.
</short>
</element>
<element name="LCLSendActivateMsg.Active">
<short>
Indicates if the control should be active.
</short>
</element>
<element name="LCLSendActivateMsg.Minimized">
<short>
<b>True</b> if the control should be minimized. <b>False</b> if the control is 
not in the minimized state.
</short>
</element>
<element name="LCLSendActivateMsg.ActiveWindow">
<short>
Optional handle for the current or newly active window for the control. 
Default value is 0.
</short>
</element>

<element name="LCLSendSetFocusMsg">
<short>
Sends a LM_SETFOCUS message to the target control.
</short>
<descr>
<p>
Calls SendSimpleMessage to send the message to the target.
</p>
</descr>
<seealso/>
</element>
<element name="LCLSendSetFocusMsg.Result">
<short>
Pointer to the Integer result code for the message. 0 indicates the message 
was accepted. A non-zero value indicates the message was rejected.
</short>
</element>
<element name="LCLSendSetFocusMsg.Target">
<short>
The control where the message is sent.
</short>
</element>

<element name="LCLSendKillFocusMsg">
<short>
Sends a LM_KILLFOCUS message to the target control.
</short>
<descr>
<p>
Calls SendSimpleMessage to send the message to the target.
</p>
</descr>
<seealso/>
</element>
<element name="LCLSendKillFocusMsg.Result">
<short>
Pointer to the Integer result code for the message. 0 indicates the message 
was accepted. A non-zero value indicates the message was rejected.
</short>
</element>
<element name="LCLSendKillFocusMsg.Target">
<short>
The control where the message is sent.
</short>
</element>

<element name="LCLSendShowWindowMsg">
<short>
Delivers a LM_SHOWWINDOW message to the target control.
</short>
<descr>
<p>
Calls DeliverMessage to apply or dispatch the message for the target control.
</p>
</descr>
<version>
Modified in LCL version 3.0 to use the values in the Show and Status arguments 
in the message for the target control.
</version>
<seealso/>
</element>
<element name="LCLSendShowWindowMsg.Result">
<short>
Pointer to the Integer result code for the message. 0 indicates the message 
was accepted. A non-zero value indicates the message was rejected.
</short>
</element>
<element name="LCLSendShowWindowMsg.Target">
<short>
Component, control, or class instance where the message is delivered.
</short>
</element>
<element name="LCLSendShowWindowMsg.Show">
<short>
Contains <b>True</b> if the window is visible, otherwise <b>False</b>.
</short>
</element>
<element name="LCLSendShowWindowMsg.Status">
<short>
Normally contains zero. A non-zero value if the message was generated when 
another window was shown or hidden.
</short>
</element>

<element name="LCLSendSizeMsg">
<short>
Delivers a LM_SIZE message to the target control.
</short>
<descr>
<p>
The SizeType argument can contain values from the constants defined in the 
LCLType unit, like:
</p>
<dl>
<dt>SIZE_RESTORED (0)</dt>
<dd>This is the default value.</dd>
<dt>SIZE_MINIMIZED (1)</dt>
<dd>The target was minimized.</dd>
<dt>SIZE_MAXIMIZED (2)</dt>
<dd>The target was maximized.</dd>
<dt>SIZE_FULLSCREEN (16)</dt>
<dd>Non-WINAPI value to support wsFullScreen state.</dd>
<dt>Size_SourceIsInterface (128)</dt>
<dd>
This flag is automatically added to the argument value when FromInterface is 
set to <b>True</b>.
</dd>
</dl>
<p>
Calls DeliverMessage to apply or dispatch the message to the target.
</p>    
</descr>
<seealso/>
</element>
<element name="LCLSendSizeMsg.Result">
<short>
Pointer to the Integer result code for the message. 0 indicates the message 
was accepted. A non-zero value indicates the message was rejected.
</short>
</element>
<element name="LCLSendSizeMsg.Target">
<short>
Component, control, or class instance where the message is delivered.
</short>
</element>
<element name="LCLSendSizeMsg.Width">
<short>
Contains the new width in pixels for the target.
</short>
</element>
<element name="LCLSendSizeMsg.Height">
<short>
Contains the new height in pixels for the target.
</short>
</element>
<element name="LCLSendSizeMsg.SizeType">
<short>
<b>True</b> if the message was sent from the widgetset to notify the LCL of a 
size change.  <b>False</b> to make the widgetset change the size of the 
control. Default value is <b>True</b>.
</short>
</element>
<element name="LCLSendSizeMsg.FromInterface">
<short>
Indicates whether the sizing message originated in the LCL interface. Default 
value is <b>True</b>.
</short>
</element>

<element name="LCLSendMoveMsg">
<short>
Delivers a LM_MOVE message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMoveMsg.Result">
<short/>
</element>
<element name="LCLSendMoveMsg.Target">
<short/>
</element>
<element name="LCLSendMoveMsg.XPos">
<short/>
</element>
<element name="LCLSendMoveMsg.YPos">
<short/>
</element>
<element name="LCLSendMoveMsg.MoveType">
<short/>
</element>
<element name="LCLSendMoveMsg.FromInterface">
<short/>
</element>

<element name="LCLSendMouseMoveMsg">
<short>
Delivers a LM_MouseMove message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMouseMoveMsg.Result">
<short/>
</element>
<element name="LCLSendMouseMoveMsg.Target">
<short/>
</element>
<element name="LCLSendMouseMoveMsg.XPos">
<short/>
</element>
<element name="LCLSendMouseMoveMsg.YPos">
<short/>
</element>
<element name="LCLSendMouseMoveMsg.ShiftState">
<short/>
</element>

<element name="LCLSendMouseDownMsg">
<short>
Delivers a TLMMouse button down message for the specified button to the target 
control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMouseDownMsg.Result">
<short/>
</element>
<element name="LCLSendMouseDownMsg.Target">
<short/>
</element>
<element name="LCLSendMouseDownMsg.XPos">
<short/>
</element>
<element name="LCLSendMouseDownMsg.YPos">
<short/>
</element>
<element name="LCLSendMouseDownMsg.Button">
<short/>
</element>
<element name="LCLSendMouseDownMsg.ShiftState">
<short/>
</element>

<element name="LCLSendMouseUpMsg">
<short>
Delivers a TLMMouse button up message for the specified button to the target 
control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMouseUpMsg.Result">
<short/>
</element>
<element name="LCLSendMouseUpMsg.Target">
<short/>
</element>
<element name="LCLSendMouseUpMsg.XPos">
<short/>
</element>
<element name="LCLSendMouseUpMsg.YPos">
<short/>
</element>
<element name="LCLSendMouseUpMsg.Button">
<short/>
</element>
<element name="LCLSendMouseUpMsg.ShiftState">
<short/>
</element>

<element name="LCLSendMouseWheelMsg">
<short>
Delivers a TLMMouseEvent mouse wheel message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMouseWheelMsg.Result">
<short/>
</element>
<element name="LCLSendMouseWheelMsg.Target">
<short/>
</element>
<element name="LCLSendMouseWheelMsg.XPos">
<short/>
</element>
<element name="LCLSendMouseWheelMsg.YPos">
<short/>
</element>
<element name="LCLSendMouseWheelMsg.WheelDelta">
<short/>
</element>
<element name="LCLSendMouseWheelMsg.ShiftState">
<short/>
</element>

<element name="LCLSendCaptureChangedMsg">
<short>
Sends a LM_CAPTURECHANGED message to the target control.
</short>
<descr>
<p>
A capture changed message occurs when mouse capture for a control is enabled. 
Mouse capture indicates that mouse input is redirected to the target control, 
even when the mouse pointer is not within the bounds for the control.
</p>
</descr>
<seealso/>
</element>
<element name="LCLSendCaptureChangedMsg.Result">
<short/>
</element>
<element name="LCLSendCaptureChangedMsg.Target">
<short/>
</element>

<element name="LCLSendSelectionChangedMsg">
<short>
Sends a LM_SELCHANGE message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendSelectionChangedMsg.Result">
<short/>
</element>
<element name="LCLSendSelectionChangedMsg.Target">
<short/>
</element>

<element name="LCLSendDestroyMsg">
<short>
Sends a LM_DESTROY message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendDestroyMsg.Result">
<short/>
</element>
<element name="LCLSendDestroyMsg.Target">
<short/>
</element>

<element name="LCLSendChangedMsg">
<short>
Delivers a LM_CHANGED message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendChangedMsg.Result">
<short/>
</element>
<element name="LCLSendChangedMsg.Target">
<short/>
</element>
<element name="LCLSendChangedMsg.ItemIndex">
<short/>
</element>

<element name="LCLSendClickedMsg">
<short>
Sends a LM_CLICKED message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendClickedMsg.Result">
<short/>
</element>
<element name="LCLSendClickedMsg.Target">
<short/>
</element>

<element name="LCLSendMouseEnterMsg">
<short>
Sends a CM_MOUSEENTER control message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMouseEnterMsg.Result">
<short/>
</element>
<element name="LCLSendMouseEnterMsg.Target">
<short/>
</element>

<element name="LCLSendMouseLeaveMsg">
<short>
Sends a CM_MOUSELEAVE control message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMouseLeaveMsg.Result">
<short/>
</element>
<element name="LCLSendMouseLeaveMsg.Target">
<short/>
</element>

<element name="LCLSendSetEditableMsg">
<short>
Sends a LM_SETEDITABLE message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendSetEditableMsg.Result">
<short/>
</element>
<element name="LCLSendSetEditableMsg.Target">
<short/>
</element>

<element name="LCLSendMoveWordMsg">
<short>
Sends a LM_MOVEWORD message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMoveWordMsg.Result">
<short/>
</element>
<element name="LCLSendMoveWordMsg.Target">
<short/>
</element>

<element name="LCLSendMovePageMsg">
<short>
Sends a LM_MOVEPAGE message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMovePageMsg.Result">
<short/>
</element>
<element name="LCLSendMovePageMsg.Target">
<short/>
</element>

<element name="LCLSendMoveToRowMsg">
<short>
Sends a LM_MOVETOROW message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMoveToRowMsg.Result">
<short/>
</element>
<element name="LCLSendMoveToRowMsg.Target">
<short/>
</element>

<element name="LCLSendMoveToColumnMsg">
<short>
Sends a LM_MOVETOCOLUMN message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMoveToColumnMsg.Result">
<short/>
</element>
<element name="LCLSendMoveToColumnMsg.Target">
<short/>
</element>

<element name="LCLSendKillCharMsg">
<short>
Sends a LM_KILLCHAR message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendKillCharMsg.Result">
<short/>
</element>
<element name="LCLSendKillCharMsg.Target">
<short/>
</element>

<element name="LCLSendKillWordMsg">
<short>
Sends a LM_KILLWORD message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendKillWordMsg.Result">
<short/>
</element>
<element name="LCLSendKillWordMsg.Target">
<short/>
</element>

<element name="LCLSendKillLineMsg">
<short>
Sends a LM_KILLLINE message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendKillLineMsg.Result">
<short/>
</element>
<element name="LCLSendKillLineMsg.Target">
<short/>
</element>

<element name="LCLSendCutToClipboardMsg">
<short>
Sends a LM_CUT message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendCutToClipboardMsg.Result">
<short/>
</element>
<element name="LCLSendCutToClipboardMsg.Target">
<short/>
</element>

<element name="LCLSendCopyToClipboardMsg">
<short>
Sends a LM_COPY message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendCopyToClipboardMsg.Result">
<short/>
</element>
<element name="LCLSendCopyToClipboardMsg.Target">
<short/>
</element>

<element name="LCLSendPasteFromClipboardMsg">
<short>
Sends a LM_PASTE message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendPasteFromClipboardMsg.Result">
<short/>
</element>
<element name="LCLSendPasteFromClipboardMsg.Target">
<short/>
</element>

<element name="LCLSendConfigureEventMsg">
<short>
Sends a LM_CONFIGUREEVENT message to the target control.
</short>
<short/>
<descr/>
<seealso/>
</element>
<element name="LCLSendConfigureEventMsg.Result">
<short/>
</element>
<element name="LCLSendConfigureEventMsg.Target">
<short/>
</element>

<element name="LCLSendPaintMsg">
<short>
Delivers a LM_PAINT message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendPaintMsg.Result">
<short/>
</element>
<element name="LCLSendPaintMsg.Target">
<short/>
</element>
<element name="LCLSendPaintMsg.DC">
<short/>
</element>
<element name="LCLSendPaintMsg.PaintStruct">
<short/>
</element>

<element name="LCLSendEraseBackgroundMsg">
<short>
Delivers a LM_ERASEBKGND message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendEraseBackgroundMsg.Result">
<short/>
</element>
<element name="LCLSendEraseBackgroundMsg.Target">
<short/>
</element>
<element name="LCLSendEraseBackgroundMsg.DC">
<short/>
</element>

<element name="LCLSendKeyDownEvent">
<short>
Delivers a key down message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendKeyDownEvent.Result">
<short/>
</element>
<element name="LCLSendKeyDownEvent.Target">
<short/>
</element>
<element name="LCLSendKeyDownEvent.CharCode">
<short/>
</element>
<element name="LCLSendKeyDownEvent.KeyData">
<short/>
</element>
<element name="LCLSendKeyDownEvent.BeforeEvent">
<short/>
</element>
<element name="LCLSendKeyDownEvent.IsSysKey">
<short/>
</element>

<element name="LCLSendKeyUpEvent">
<short>
Delivers a key up message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendKeyUpEvent.Result">
<short/>
</element>
<element name="LCLSendKeyUpEvent.Target">
<short/>
</element>
<element name="LCLSendKeyUpEvent.CharCode">
<short/>
</element>
<element name="LCLSendKeyUpEvent.KeyData">
<short/>
</element>
<element name="LCLSendKeyUpEvent.BeforeEvent">
<short/>
</element>
<element name="LCLSendKeyUpEvent.IsSysKey">
<short/>
</element>

<element name="LCLSendCharEvent">
<short>
Delivers a TLMChar message to the target control (and optionally to the 
application).
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendCharEvent.Result">
<short/>
</element>
<element name="LCLSendCharEvent.Target">
<short/>
</element>
<element name="LCLSendCharEvent.CharCode">
<short/>
</element>
<element name="LCLSendCharEvent.KeyData">
<short/>
</element>
<element name="LCLSendCharEvent.BeforeEvent">
<short/>
</element>
<element name="LCLSendCharEvent.IsSysKey">
<short/>
</element>
<element name="LCLSendCharEvent.ANotifyUserInput">
<short/>
</element>

<element name="LCLSendUTF8KeyPress">
<short>
Applies the specified UTF-8-encoded character to the target control.
</short>
<descr/>
<version>
Modified in LCL version 3.0 to change the AUTF8Char argument to a variable 
parameter.
</version>
<seealso/>
</element>
<element name="LCLSendUTF8KeyPress.Result">
<short/>
</element>
<element name="LCLSendUTF8KeyPress.Target">
<short/>
</element>
<element name="LCLSendUTF8KeyPress.AUTF8Char">
<short/>
</element>
<element name="LCLSendUTF8KeyPress.IsSysKey">
<short/>
</element>

<element name="LCLSendTimerMsg">
<short>
Delivers a LM_TIMER message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendTimerMsg.Result">
<short/>
</element>
<element name="LCLSendTimerMsg.Target">
<short/>
</element>
<element name="LCLSendTimerMsg.TimerID">
<short/>
</element>
<element name="LCLSendTimerMsg.TimerProc">
<short/>
</element>

<element name="LCLSendExitMsg">
<short>
Sends a LM_EXIT message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendExitMsg.Result">
<short/>
</element>
<element name="LCLSendExitMsg.Target">
<short/>
</element>

<element name="LCLSendCloseQueryMsg">
<short>
Sends a LM_CLOSEQUERY message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendCloseQueryMsg.Result">
<short/>
</element>
<element name="LCLSendCloseQueryMsg.Target">
<short/>
</element>

<element name="LCLSendDragStartMsg">
<short>
Sends a LM_DRAGSTART message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendDragStartMsg.Result">
<short/>
</element>
<element name="LCLSendDragStartMsg.Target">
<short/>
</element>

<element name="LCLSendMonthChangedMsg">
<short>
Sends a LM_MONTHCHANGED message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMonthChangedMsg.Result">
<short/>
</element>
<element name="LCLSendMonthChangedMsg.Target">
<short/>
</element>

<element name="LCLSendYearChangedMsg">
<short>
Sends a LM_YEARCHANGED message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendYearChangedMsg.Result">
<short/>
</element>
<element name="LCLSendYearChangedMsg.Target">
<short/>
</element>

<element name="LCLSendDayChangedMsg">
<short>
Sends a LM_DAYCHANGED message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendDayChangedMsg.Result">
<short/>
</element>
<element name="LCLSendDayChangedMsg.Target">
<short/>
</element>

<element name="LCLSendMouseMultiClickMsg">
<short>
Delivers a TLMMouse message for multiple button clicks to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendMouseMultiClickMsg.Result">
<short/>
</element>
<element name="LCLSendMouseMultiClickMsg.Target">
<short/>
</element>
<element name="LCLSendMouseMultiClickMsg.XPos">
<short/>
</element>
<element name="LCLSendMouseMultiClickMsg.YPos">
<short/>
</element>
<element name="LCLSendMouseMultiClickMsg.Button">
<short/>
</element>
<element name="LCLSendMouseMultiClickMsg.ClickCount">
<short/>
</element>
<element name="LCLSendMouseMultiClickMsg.ShiftState">
<short/>
</element>

<element name="LCLSendDrawListItemMsg">
<short>
Delivers a LM_DRAWLISTITEM message using the specified drawing structure to 
the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendDrawListItemMsg.Result">
<short/>
</element>
<element name="LCLSendDrawListItemMsg.Target">
<short/>
</element>
<element name="LCLSendDrawListItemMsg.DrawListItemStruct">
<short/>
</element>

<element name="LCLSendDropDownMsg">
<short>
Delivers a CBN_DROPDOWN notification message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendDropDownMsg.Result">
<short/>
</element>
<element name="LCLSendDropDownMsg.Target">
<short/>
</element>

<element name="LCLSendCloseUpMsg">
<short>
Delivers a CBN_CLOSEUP notification message to the target control.
</short>
<descr/>
<seealso/>
</element>
<element name="LCLSendCloseUpMsg.Result">
<short/>
</element>
<element name="LCLSendCloseUpMsg.Target">
<short/>
</element>

</module>
<!-- LCLMessageGlue -->
</package>
</fpdoc-descriptions>