mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-29 11:10:16 +02:00
Docs: Fixes for LCL and LazUtils. Issue #38935, patch by Don Siders.
git-svn-id: trunk@65143 -
This commit is contained in:
parent
4dc73247cb
commit
60e0bbd0c7
@ -1,11 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<fpdoc-descriptions>
|
||||
<package name="lcl">
|
||||
<package name="lazutils">
|
||||
<!--
|
||||
====================================================================
|
||||
DynamicArray
|
||||
====================================================================
|
||||
-->
|
||||
====================================================================
|
||||
DynamicArray
|
||||
====================================================================
|
||||
-->
|
||||
<module name="DynamicArray">
|
||||
<short>Implements a resizable 2-D array of Pointers</short>
|
||||
<descr>
|
||||
|
@ -1,11 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<fpdoc-descriptions>
|
||||
<package name="lcl">
|
||||
<package name="lazutils">
|
||||
<!--
|
||||
====================================================================
|
||||
DynHashArray
|
||||
====================================================================
|
||||
-->
|
||||
====================================================================
|
||||
DynHashArray
|
||||
====================================================================
|
||||
-->
|
||||
<module name="DynHashArray">
|
||||
<short>Contains classes used to manage dynamic sets or associative arrays</short>
|
||||
<descr>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<fpdoc-descriptions>
|
||||
<package name="lcl">
|
||||
<package name="LazUtils">
|
||||
<!--
|
||||
====================================================================
|
||||
DynQueue
|
||||
@ -161,7 +161,6 @@
|
||||
</errors>
|
||||
<seealso>
|
||||
<link id="TDynamicQueue.GrowItems"/>
|
||||
<link id="TDynamicQueue.PushInternal"/>
|
||||
<link id="TDynamicQueue.Push"/>
|
||||
<link id="TDynamicQueueItem"/>
|
||||
</seealso>
|
||||
@ -180,13 +179,12 @@
|
||||
<var>ItemSize</var> contains the size requested for the data structure and its arbitrary content, and is used by default as the return value for the method. CalculateItemSize ensures that the return value is in the range defined by the <var>MinimumBlockSize</var> and <var>MaximumBlockSize</var> properties.
|
||||
</p>
|
||||
<p>
|
||||
CalculateItemSize is used in the implementation of the <var>PushInternal</var> method.
|
||||
CalculateItemSize is used in the implementation of the private <var>PushInternal</var> method.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TDynamicDataQueue.MinimumBlockSize"/>
|
||||
<link id="TDynamicDataQueue.MaximumBlockSize"/>
|
||||
<link id="TDynamicDataQueue.PushInternal"/>
|
||||
<link id="TDynamicDataQueue.Push"/>
|
||||
</seealso>
|
||||
</element>
|
||||
@ -383,7 +381,6 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TDynamicDataQueue.PushInternal"/>
|
||||
<link id="TDynamicDataQueue.Pop"/>
|
||||
<link id="TDynamicDataQueue.Top"/>
|
||||
<link id="TDynamicDataQueue.Size"/>
|
||||
@ -423,7 +420,6 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TDynamicDataQueue.PopTopInternal"/>
|
||||
<link id="TDynamicDataQueue.Push"/>
|
||||
<link id="TDynamicDataQueue.Top"/>
|
||||
<link id="TDynamicDataQueue.Size"/>
|
||||
@ -465,7 +461,6 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TDynamicDataQueue.PopTopInternal"/>
|
||||
<link id="TDynamicDataQueue.Push"/>
|
||||
<link id="TDynamicDataQueue.Pop"/>
|
||||
<link id="TDynamicDataQueue.Size"/>
|
||||
@ -493,9 +488,7 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TDynamicDataQueue.PushInternal"/>
|
||||
<link id="TDynamicDataQueue.Push"/>
|
||||
<link id="TDynamicDataQueue.PopTopInternal"/>
|
||||
<link id="TDynamicDataQueue.Pop"/>
|
||||
</seealso>
|
||||
</element>
|
||||
@ -515,7 +508,6 @@
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TDynamicDataQueue.MaximumBlockSize"/>
|
||||
<link id="TDynamicDataQueue.CalculateItemSize"/>
|
||||
<link id="TDynamicDataQueue.Create"/>
|
||||
</seealso>
|
||||
</element>
|
||||
@ -535,7 +527,6 @@
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TDynamicDataQueue.MinimumBlockSize"/>
|
||||
<link id="TDynamicDataQueue.CalculateItemSize"/>
|
||||
<link id="TDynamicDataQueue.Create"/>
|
||||
</seealso>
|
||||
</element>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<fpdoc-descriptions>
|
||||
<package name="lcl">
|
||||
<package name="lazutils">
|
||||
<!--
|
||||
====================================================================
|
||||
ExtendedStrings
|
||||
@ -12,7 +12,7 @@
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<file>extendedstrings.pas</file> implements <var>TExtendedStrings</var>, which is a <var>TStringList</var> that allows its <var>Objects</var> property to hold any type of records.
|
||||
<file>extendedstrings.pas</file> implements <var>TExtendedStrings</var>, which is a <var>TStringList</var> that allows its <var>Objects</var> property to hold any type of record.
|
||||
</p>
|
||||
<p>
|
||||
This file is part of the <file>LazUtils</file> package.
|
||||
@ -36,7 +36,10 @@
|
||||
<var>TExtStringsOption</var> is an enumeration type with values that define actions needed when creating or freeing records in TExtendedStringList. Values from TExtStringsOption are stored in the <var>TExtStringsOptions</var> type.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso></seealso>
|
||||
<seealso>
|
||||
<link id="TExtStringsOption"/>
|
||||
<link id="TExtStringsOptions"/>
|
||||
</seealso>
|
||||
</element>
|
||||
<!-- enumeration value Visibility: default -->
|
||||
<element name="TExtStringsOption.esoClearRecordsOnCreate">
|
||||
@ -65,7 +68,7 @@
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>TExtendedStringList</var> is a TStringList descendant that provides support for using Records in the class. The Records property allows access to records stored in the class. TExtendedStringList provides overridden methods to maintain values in the Objects property. New properties and methods are included to control actions needed when adding or freeing Records stored in the Objects property.
|
||||
<var>TExtendedStringList</var> is a <var>TStringList</var> descendant that provides support for using records in the class. The <var>Records</var> property allows access to records stored in the class. TExtendedStringList provides overridden methods to maintain values in the <var>Objects</var> property. New properties and methods are included to control actions needed when adding or freeing Records stored in the Objects property.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso></seealso>
|
||||
@ -148,10 +151,12 @@
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>ResizeRecord</var> is a procedure used to change the memory allocation size for the specified record. ResizeRecord calls ReAllocMem to change the allocated memory size to the value in NewSize. ResizeRecord is called when the value in the RecordSize property is changed.
|
||||
<var>ResizeRecord</var> is a procedure used to change the memory allocation size for the specified record. ResizeRecord calls <var>ReAllocMem</var> to change the allocated memory size to the value in <var>NewSize</var>. ResizeRecord is called when the value in the <var>RecordSize</var> property is changed.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso></seealso>
|
||||
<seealso>
|
||||
<link id="TExtendedStringList.RecordSize"/>
|
||||
</seealso>
|
||||
</element>
|
||||
<!-- argument Visibility: default -->
|
||||
<element name="TExtendedStringList.ResizeRecord.ARecord">
|
||||
@ -173,11 +178,11 @@
|
||||
<!-- function Visibility: protected -->
|
||||
<element name="TExtendedStringList.GetObject">
|
||||
<short>
|
||||
Reimplements the read access specifier for Objects
|
||||
Re-implements the read access specifier for the Objects property
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>GetObject</var> is an overridden TObject function which reimplements the read access specifier for the Objects property. GetObject calls the inherited method to retrieve the value at the position in Index. GetObject ensures that the return value is cast to a TObject instance when assigned, or <var>Nil</var> when unassigned.
|
||||
<var>GetObject</var> is an overridden TObject function which re-implements the read access specifier for the Objects property. GetObject calls the inherited method to retrieve the value at the position in Index. GetObject ensures that the return value is cast to a TObject instance when assigned, or <var>Nil</var> when unassigned.
|
||||
</p>
|
||||
<p>
|
||||
GetObject and PutObject are called directly (as opposed to using the Objects property) in methods which maintain values in Records.
|
||||
@ -290,7 +295,7 @@
|
||||
<!-- procedure Visibility: public -->
|
||||
<element name="TExtendedStringList.CreateRecord">
|
||||
<short>
|
||||
Allocates memory for a new record
|
||||
Allocates memory for a new record instance
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
@ -310,7 +315,7 @@
|
||||
<!-- procedure Visibility: public -->
|
||||
<element name="TExtendedStringList.FreeRecord">
|
||||
<short>
|
||||
Frees memory allocated for the specified record
|
||||
Frees memory allocated for the record at the specified position
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
@ -330,7 +335,7 @@
|
||||
<!-- procedure Visibility: public -->
|
||||
<element name="TExtendedStringList.FreeAllRecords">
|
||||
<short>
|
||||
Frees memory allocated for Records in the class
|
||||
Frees memory allocated for all Records in the class
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
@ -411,7 +416,7 @@
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>Options</var> is a TExtStringsOptions property that contains the record options enabled for the class. Options can contains values from the TExtStringsOption enumeration, including:
|
||||
<var>Options</var> is a <var>TExtStringsOptions</var> property that contains the record options enabled for the class. Options can contains values from the <var>TExtStringsOption</var> enumeration, including:
|
||||
</p>
|
||||
<dl>
|
||||
<dt><var>esoClearRecordsOnCreate</var></dt>
|
||||
@ -427,7 +432,10 @@
|
||||
The default value for the property is <var>[ esoClearRecordsOnCreate ]</var> as set in the constructor for the class.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso></seealso>
|
||||
<seealso>
|
||||
<link id="TExtStringsOptions"/>
|
||||
<link id="TExtStringsOption"/>
|
||||
</seealso>
|
||||
</element>
|
||||
</module>
|
||||
<!-- ExtendedStrings -->
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<fpdoc-descriptions>
|
||||
<package name="lcl">
|
||||
<package name="lazutils">
|
||||
|
||||
<!--
|
||||
====================================================================
|
||||
|
@ -27,7 +27,7 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TMaskCharType.mcChar">
|
||||
@ -45,7 +45,7 @@
|
||||
<element name="TMaskOption">
|
||||
<short>Contains options which can be enabled or disabled for TMask comparisons</short>
|
||||
<seealso>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TMaskOption.moCaseSensitive">
|
||||
@ -57,7 +57,7 @@
|
||||
<element name="TMaskOptions">
|
||||
<short>Set type used to store values from the TMaskOption enumeration</short>
|
||||
<seealso>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TCharSet">
|
||||
@ -97,7 +97,7 @@
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TMaskCharType"/>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TMaskChar.CharType">
|
||||
@ -131,7 +131,7 @@
|
||||
<seealso>
|
||||
<link id="TMask.Matches"/>
|
||||
<link id="TMask.MatchesWindowsMask"/>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TMaskString.MinLength">
|
||||
@ -170,8 +170,8 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="EMaskError"/>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -277,7 +277,7 @@
|
||||
<link id="TMask.Create"/>
|
||||
<link id="TMaskOptions"/>
|
||||
<link id="TMaskOption"/>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TMask.Matches.Result">
|
||||
@ -318,7 +318,7 @@
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TMask.Matches"/>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TMask.MatchesWindowsMask.Result">
|
||||
@ -373,7 +373,7 @@
|
||||
<seealso>
|
||||
<link id="TMask"/>
|
||||
<link id="MatchesMaskList"/>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TMaskList.FMasks"/>
|
||||
@ -545,7 +545,7 @@
|
||||
<link id="TMask"/>
|
||||
<link id="TMaskOption"/>
|
||||
<link id="TMaskOptions"/>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="MatchesMask.Result">
|
||||
@ -607,7 +607,7 @@
|
||||
<link id="TMask.MatchesWindowsMask"/>
|
||||
<link id="TMaskOption"/>
|
||||
<link id="TMaskOptions"/>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="MatchesWindowsMask.Result">
|
||||
@ -681,7 +681,7 @@
|
||||
<link id="MatchesWindowsMaskList"/>
|
||||
<link id="TMaskOption"/>
|
||||
<link id="TMaskList"/>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="MatchesMaskList.Result">
|
||||
@ -758,7 +758,7 @@
|
||||
<link id="MatchesMaskList"/>
|
||||
<link id="TMaskOption"/>
|
||||
<link id="TMaskList"/>
|
||||
<link id="MasksOverview">Masks Overview</link>
|
||||
<link id="#lazutils.masks.MasksOverview">Masks Overview</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="MatchesWindowsMaskList.Result">
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<fpdoc-descriptions>
|
||||
<package name="lcl">
|
||||
<package name="lazutils">
|
||||
<!--
|
||||
====================================================================
|
||||
TextStrings
|
||||
@ -178,10 +178,6 @@
|
||||
<seealso>
|
||||
<link id="TTextStrings.ClearArrays"/>
|
||||
<link id="TTextStrings.Text"/>
|
||||
<link id="TTextStrings.Get"/>
|
||||
<link id="TTextStrings.GetObject"/>
|
||||
<link id="TTextStrings.Put"/>
|
||||
<link id="TTextStrings.PutObject"/>
|
||||
<link id="TTextStrings.GetCount"/>
|
||||
<link id="TTextStrings.GetLineEnd"/>
|
||||
<link id="TTextStrings.Insert"/>
|
||||
@ -590,10 +586,10 @@
|
||||
<seealso>
|
||||
<link id="TTextStrings.OnChanging"/>
|
||||
<link id="TTextStrings.OnChange"/>
|
||||
<link id="TTextStrings.Changing"/>
|
||||
<link id="TTextStrings.Changed"/>
|
||||
<link id="TTextStrings.EndUpdate"/>
|
||||
<link id="#rtl.classes.TStrings.BeginUpdate">TStrings.BeginUpdate</link>
|
||||
<link id="#rtl.classes.TStrings.Changing">TStrings.Changing</link>
|
||||
<link id="#rtl.classes.TStrings.Change">TStrings.Change</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
|
@ -38,7 +38,9 @@
|
||||
Defines an object procedure signalled when an item in TCheckListBox is clicked
|
||||
</short>
|
||||
<descr>
|
||||
TCheckListClicked is an object procedure type signalled when an item in TCheckListBox is clicked. TCheckListClicked is the type used to implement the OnItemClick event handler in TCheckListBox. Applications must provide an implementation of the type and assign to the event handler to allow responding to the event notification.
|
||||
<p>
|
||||
<var>TCheckListClicked</var> is an object procedure type that defines an event handler signalled when an item in TCheckListBox is clicked. TCheckListClicked is the type used to implement the <var>OnItemClick</var> event handler in <var>TCheckListBox</var>. Applications must provide an implementation of the type and assign to the event handler to respond to the event notification.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCheckListBox.OnItemClick"/>
|
||||
@ -53,11 +55,11 @@
|
||||
|
||||
<element name="TCustomCheckListBox">
|
||||
<short>
|
||||
<var>TCustomCheckListBox</var> defines the base class for TCheckListBox - a list box with check box items
|
||||
The base class for TCheckListBox, a list box with check box items
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
TCustomCheckListBox is a TCustomListBox descendant which defines the base class used to implement TCheckListBox. It is a list box control which displays check boxes for items added to the list. It provides the scrolling, selection, and drawing styles inherited from the ancestor class. It also includes the ability to render its items as a check box, and to respond to mouse or keyboard events when an item is toggled.
|
||||
<var>TCustomCheckListBox</var> is a <var>TCustomListBox</var> descendant which defines the base class used to implement <var>TCheckListBox</var>. It is a list box control which displays check boxes for items added to the list. It provides the scrolling, selection, and drawing styles inherited from the ancestor class. It also includes the ability to render its items as a check box, and respond to mouse or keyboard events when the checked state for an item is toggled.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
@ -210,7 +212,7 @@
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>DoChange</var> is a procedure used to respond to the LCL <var>LM_CHANGED</var> message, and performs actions needed when an entry in <var>Items</var> is changed using the keyboard or mouse. DoChange calls <var>ClickCheck</var> to signal the <var>OnClickCheck</var> event handler (when assigned), and calls the <var>ItemClick</var> method to signal the <var>OnItemClick</var> event handler (when assigned).
|
||||
<var>DoChange</var> is a procedure used to respond to the LCL <var>LM_CHANGED</var> message, and performs actions needed when an entry in <var>Items</var> is changed using the keyboard or mouse. DoChange calls <var>ClickCheck</var> to signal the <var>OnClickCheck</var> event handler (when assigned). It also calls the <var>ItemClick</var> method to signal the <var>OnItemClick</var> event handler (when assigned).
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
@ -301,9 +303,13 @@
|
||||
</element>
|
||||
|
||||
<element name="TCustomCheckListBox.CreateParams">
|
||||
<short/>
|
||||
<short>
|
||||
Sets the creation parameters for the control handle
|
||||
</short>
|
||||
<descr>
|
||||
CreateParams is an overridden procedure used to set the List Box drawing style applied in the class instance.
|
||||
<p>
|
||||
<var>CreateParams</var> is an overridden procedure used to set the creation parameters for the class instance. It calls the inherited method on entry, and sets the list box drawing style flag for the class instance.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomListBox.Style"/>
|
||||
@ -375,7 +381,9 @@
|
||||
Reads the data for the control from the specified stream
|
||||
</short>
|
||||
<descr>
|
||||
<var>ReadData</var> is a procedure used to read the data for Items in the control from the specified TStream instance.
|
||||
<p>
|
||||
<var>ReadData</var> is a procedure used to read the data for Items in the control from the specified <var>TStream</var> instance.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomCheckListBox.WriteData"/>
|
||||
@ -390,7 +398,9 @@
|
||||
Writes data for the control to the specified stream
|
||||
</short>
|
||||
<descr>
|
||||
<var>WriteData</var> is a procedure used write data for the control to the TStream instance.
|
||||
<p>
|
||||
<var>WriteData</var> is a procedure used write data for the control to the <var>TStream</var> instance.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
</seealso>
|
||||
@ -401,39 +411,107 @@
|
||||
|
||||
<element name="TCustomCheckListBox.ClickCheck">
|
||||
<short>
|
||||
<var>ClickCheck</var> - software emulator of <var>OnClickCheck</var> event
|
||||
Performs actions needed when a value in the control is about to change
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>ClickCheck</var> is a method used to perform actions needed when a value in the control is about to change.
|
||||
</p>
|
||||
<p>
|
||||
ClickCheck signals the <var>OnClickCheck</var> event handler (when assigned) using the current class instance as the object for the event notification. Use <var>OnClickCheck</var> to implement the actions needed when the control has been changed.
|
||||
</p>
|
||||
<p>
|
||||
ClickCheck is called when the <var>LM_CHANGED</var> message is handled for the control, and occurs prior to calling the <var>ItemClick</var> method where the <var>OnItemClick</var> event handler is signalled.
|
||||
</p>
|
||||
<p>
|
||||
ClickCheck is also called from the <var>KeyDown</var> method when the <b>Space</b> key has been pressed while the control has focus. It is called after <var>ItemIndex</var> has been range adjusted (when needed) and the inherited <var>Click</var> method is called. In addition, the value in <var>Checked</var> has already been toggled before the method is called. ClickCheck is not called for the keystroke when the check box item in ItemIndex is not enabled.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomCheckListBox.OnClickCheck"/>
|
||||
<link id="TCustomCheckListBox.ItemClick"/>
|
||||
<link id="TCustomCheckListBox.OnItemClick"/>
|
||||
<link id="TCustomCheckListBox.KeyDown"/>
|
||||
<link id="TCustomCheckListBox.Checked"/>
|
||||
<link id="TCustomCheckListBox.ItemEnabled"/>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomCheckListBox.ItemClick">
|
||||
<short>
|
||||
Performs actions when the specified check box has been changed using the mouse or the keyboard
|
||||
</short>
|
||||
<descr>
|
||||
<var>ItemClick</var> - software emulation of <var>OnItemClick</var> event
|
||||
<p>
|
||||
<var>ItemClick</var> is a method used to perform actions need when the value for the check box item in <var>AIndex</var> has been changed. AIndex is the ordinal position for the check box in the Items for the control. ItemClick signals the <var>OnItemClick</var> event handler (when assigned) using the current class instance and the value in AIndex as arguments.
|
||||
</p>
|
||||
<p>
|
||||
ItemClick is called when the <var>LM_CHANGED</var> message is handled for the control, and occurs after the <var>ClickCheck</var> method has been called to signal the <var>OnClickCheck</var> event handler.
|
||||
</p>
|
||||
<p>
|
||||
ItemClick is also called from the <var>KeyDown</var> method when the <b>Space</b> key has been pressed while the control is focused. It occurs after the value in <var>ItemIndex</var> is range adjusted (if needed) and the inherited <var>Click</var> method has been called. In addition, the value in <var>Checked</var> has already been toggled before the method is called. ItemClick is not called for the key event when the check box item in ItemIndex is not enabled.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomCheckListBox.OnItemClick"/>
|
||||
<link id="TCustomCheckListBox.ClickCheck"/>
|
||||
<link id="TCustomCheckListBox.OnClickCheck"/>
|
||||
<link id="TCustomCheckListBox.KeyDown"/>
|
||||
<link id="TCustomCheckListBox.Checked"/>
|
||||
<link id="TCustomCheckListBox.ItemEnabled"/>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TCustomCheckListBox.ItemClick.AIndex">
|
||||
<short/>
|
||||
<short>Ordinal position for the check box</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomCheckListBox.KeyDown">
|
||||
<short>Responds to KeyDown messages in the control</short>
|
||||
<descr/>
|
||||
<seealso></seealso>
|
||||
<short>Handles key down messages for the control</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>KeyDown</var> is an overridden method in <var>TCustomCheckListBox</var> used to handle key down messages for the control. KeyDown ensures that the value for the current check box is toggled when the <b>Space</b> key is pressed while the control has focus.
|
||||
</p>
|
||||
<p>
|
||||
This includes setting <var>ItemIndex</var> to <b>0</b> when it has a value not valid for the <var>Items</var> defined in the control. The inherited <var>Click</var> method is called if ItemIndex is range adjusted. This behavior is Delphi (version 7 at least) compatible.
|
||||
</p>
|
||||
<p>
|
||||
If the check box at ItemIndex has its <var>ItemEnabled</var> property set to <b>True</b>, the value in <var>Checked</var> is toggled. The <var>ClickCheck</var> and <var>ItemClick</var> methods are called to trigger the corresponding event handlers. The value in Key is set to <var>VK_UNKNOWN</var> when the keystroke has been handled in the method.
|
||||
</p>
|
||||
<p>
|
||||
The inherited KeyDown method is called to handle other key down events.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomCheckListBox.Checked"/>
|
||||
<link id="TCustomCheckListBox.ItemEnabled"/>
|
||||
<link id="TCustomCheckListBox.ClickCheck"/>
|
||||
<link id="TCustomCheckListBox.ItemClick"/>
|
||||
<link id="#lcl.controls.TWinControl.KeyDown">TWinControl.KeyDown</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.Click">TCustomListBox.Click</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TCustomCheckListBox.KeyDown.Key">
|
||||
<short>Keystroke examined in the method</short>
|
||||
</element>
|
||||
<element name="TCustomCheckListBox.KeyDown.Shift">
|
||||
<short>Shift, Control, or Modifier for the keystroke</short>
|
||||
<short>Shift, Control, or Alt modifier for the keystroke</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomCheckListBox.FontChanged">
|
||||
<short>
|
||||
Recalculates the height for Items in the control when the Font is changed
|
||||
Recalculates the height for check box Items in the control when the Font is changed
|
||||
</short>
|
||||
<descr/>
|
||||
<seealso></seealso>
|
||||
<descr>
|
||||
<p>
|
||||
<var>FontChanged</var> is an overridden method in <var>TCustomListBox</var> used to perform actions when the <var>Font</var> for the control has been changed. FontChanged calls the inherited method on entry. The value in <var>ItemHeight</var> is updated (at run-time) when the control <var>Style</var> is set to <var>lbStandard</var>.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.ItemHeight">TCustomListBox.ItemHeight</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.Style">TCustomListBox.Style</link>
|
||||
<link id="#lcl.controls.TWinControl.FontChanged">TWinControl.FontChanged</link>
|
||||
<link id="#lcl.controls.TControl.Font">TControl.Font</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TCustomCheckListBox.FontChanged.Sender">
|
||||
<short>TObject instance for the change notification</short>
|
||||
@ -442,22 +520,47 @@
|
||||
<element name="TCustomCheckListBox.Create">
|
||||
<short>Constructor for the class instance</short>
|
||||
<descr>
|
||||
<var>Create</var> is the constructor for <var>TCustomCheckListBox</var>. It calls the inherited <var>Create</var> method,and finds the data size.
|
||||
<p>
|
||||
<var>Create</var> is the overridden constructor for <var>TCustomCheckListBox</var>. It calls the inherited <var>Create</var> method, and sets the component style flag for the control. It also calls the inherited <var>GetCachedDataSize</var> method to determine the storage size needed for each cached item in the control.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.Create">TCustomListBox.Create</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.GetCachedDataSize">TCustomListBox.GetCachedDataSize</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TCustomCheckListBox.Create.AOwner">
|
||||
<short>Owner of the class instance</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomCheckListBox.MeasureItem" link="#lcl.stdctrls.TCustomListBox.MeasureItem"/>
|
||||
<element name="TCustomCheckListBox.MeasureItem">
|
||||
<short>
|
||||
Calculates the height for an item displayed in the check list control
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>MeasureItem</var> is an overridden method used to calculate the height for an item displayed in the check list control.
|
||||
</p>
|
||||
<p>
|
||||
MeasureItem re-implements the method from the ancestor class, and calculates the item height when the <var>Style</var> property is set to <var>lbStandard</var>. The values from <var>CalculateStandardItemHeight</var> and <var>GetSystemMetrics</var> (using <var>SM_CYMENUCHECK</var>) are compared to get the item height. The larger of the two values is stored in the <var>TheHeight</var> argument.
|
||||
</p>
|
||||
<p>
|
||||
When Style is set to a value other than lbStandard, the inherited method is called to calculate the item height using the <var>OnMeasureItem</var> event handler.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.CalculateStandardItemHeight">TCustomListBox.CalculateStandardItemHeight</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.MeasureItem">TCustomListBox.MeasureItem</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.OnMeasureItem">TCustomListBox.OnMeasureItem</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.Style">TCustomListBox.Style</link>
|
||||
<link id="#lcl.lclintf.GetSystemMetrics">GetSystemMetrics</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TCustomCheckListBox.MeasureItem.Index">
|
||||
<short/>
|
||||
<short>Ordinal position for the check box item measured in the method</short>
|
||||
</element>
|
||||
<element name="TCustomCheckListBox.MeasureItem.TheHeight">
|
||||
<short/>
|
||||
<short>Returns the calculated height for the check box item</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomCheckListBox.Toggle">
|
||||
@ -535,10 +638,10 @@
|
||||
|
||||
<element name="TCustomCheckListBox.Exchange">
|
||||
<short>
|
||||
Swaps the value for the State property in the Items at the specified ordinal positions
|
||||
Swaps the values for the State properties in the Items at the specified ordinal positions
|
||||
</short>
|
||||
<descr/>
|
||||
<seealso></seealso>
|
||||
<seealso/>
|
||||
</element>
|
||||
<element name="TCustomCheckListBox.Exchange.AIndex1">
|
||||
<short>Ordinal position for the first item affected in the method</short>
|
||||
@ -617,10 +720,10 @@
|
||||
Reading the value for the property cause the <var>CheckIndex</var> method to be called to validate the value in Index. If a handle has been allocated for the control, the GetItemEnabled method in the widget set class is called to get the value for the property. Otherwise, the disabled state in cached item data is examined to get the property value.
|
||||
</p>
|
||||
<p>
|
||||
Setting the value for the property causes the <var>CheckIndex</var> method to be called to validate the value in Index. If a handle has been allocated for the control, the SetItemEnabled method in the widget set class is called to set the value for the property. Otherwise, the disabled state in cached item data is update with the new property value.
|
||||
Setting the value for the property causes the <var>CheckIndex</var> method to be called to validate the value in Index. If a handle has been allocated for the control, the SetItemEnabled method in the widget set class is called to set the value for the property. Otherwise, the disabled state in cached item data is update with the new property value.
|
||||
</p>
|
||||
<p>
|
||||
Use the Enabled property to indicate whether the entire list box control can be updated.
|
||||
Use the Enabled property to indicate whether the check list box control can be updated.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
@ -665,45 +768,74 @@
|
||||
|
||||
<element name="TCustomCheckListBox.OnClickCheck">
|
||||
<short>
|
||||
Event handler signalled to determine if the control can respond to OnClick notifications
|
||||
Event handler signalled when a check box in the control has been changed
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>OnClickCheck</var> is a TNotifyEvent property which contains the event handler signalled to determine if the control can respond to <var>OnClick</var> or <var>OnItemClick</var> notifications. Applications must implement and assign a procedure using the TNotifyEvent signature to respond to the notification.
|
||||
<var>OnClickCheck</var> is a <var>TNotifyEvent</var> property with the event handler signalled when the check box state for one of the list items has been changed.
|
||||
</p>
|
||||
<p>
|
||||
<var>OnClickCheck</var> is signalled from the <var>ClickCheck</var> method (when assigned). It occurs in <var>DoChange</var> and <var>KeyDown</var> immediately before the <var>OnItemClick</var> event handler is signalled.
|
||||
Applications must implement and assign a procedure using the TNotifyEvent signature to respond to the notification. The Sender argument contains the TCheckListBox instance for the notification, and allows access to its properties and methods.
|
||||
</p>
|
||||
<p>
|
||||
<var>OnClickCheck</var> is signalled (when assigned) from the <var>ClickCheck</var> method. ClickCheck is called from methods like <var>DoChange</var> (private) and <var>KeyDown</var>. This causes OnClickCheck to be signalled when the mouse is clicked on a check box, and when the value for the current item is Toggled using the Space key.
|
||||
</p>
|
||||
<p>
|
||||
OnClickCheck is signalled before other event handlers like <var>OnItemClick</var>, <var>OnSelectionChange</var>, and <var>OnClick</var>.
|
||||
</p>
|
||||
<p>
|
||||
OnClickCheck and OnItemClick are not signalled when the checked state for an item is changed in code using <var>Checked</var>, <var>State</var>, <var>CheckAll</var>, or <var>Toggle</var>.
|
||||
</p>
|
||||
<p>
|
||||
Use <var>OnItemClick</var> for the event signalled with the item index for the affected check box in the control.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomCheckListBox.ItemClick"/>
|
||||
<link id="TCustomCheckListBox.OnItemClick"/>
|
||||
<link id="TCustomCheckListBox.ClickCheck"/>
|
||||
<link id="TCustomCheckListBox.KeyDown"/>
|
||||
<link id="TCustomCheckListBox.OnItemClick"/>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.OnSelectionChange">TCustomListBox.OnSelectionChange</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.OnClick">TCustomListBox.OnClick</link>
|
||||
<link id="#rtl.classes.TNotifyEvent">TNotifyEvent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomCheckListBox.OnItemClick">
|
||||
<short>
|
||||
Event handler signalled when one of the Items in the control is clicked using the mouse
|
||||
Event handler signalled when the check box state for a specific item has been changed
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>OnItemClick</var> is a <var>TCheckListClicked</var> property which contains the event handler signalled when the check box for one of the <var>Items</var> in the control is clicked using the mouse. <var>OnItemClick</var> can be used to perform actions needed when the check box <var>State</var> has been toggled. Applications must assign an object procedure that implements the signature for the event handler to respond to the notification.
|
||||
<var>OnItemClick</var> is a <var>TCheckListClicked</var> property with the event handler signalled when the check box state has been changed for a specific item in the check list control.
|
||||
</p>
|
||||
<p>
|
||||
<var>OnItemClick</var> is signalled from the <var>ItemClick</var> method when the control executes its <var>DoChange</var> or <var>KeyDown</var> methods.
|
||||
<var>OnItemClick</var> can be used to perform actions needed when the check box <var>State</var> has been toggled. Arguments passed to the event handler identify the check list control (Sender) and the position of the check box (Index) in the Items for the control.
|
||||
</p>
|
||||
<p>
|
||||
Use <var>OnClickCheck</var> to performs actions needed immediately before the <var>OnClick</var> notification.
|
||||
Applications must assign an object procedure that implements the signature for the event handler to respond to the notification.
|
||||
</p>
|
||||
<p>
|
||||
<var>OnItemClick</var> is signalled from the <var>ItemClick</var> method when the control executes its <var>DoChange</var> (private) or <var>KeyDown</var> methods. This means that the event is signalled when a check box is clicked with the mouse, and when the Space key is pressed on a selected item in the control.
|
||||
</p>
|
||||
<p>
|
||||
<var>OnItemClick</var> is signalled after the <var>OnClickCheck</var> event handler, and before event handlers like <var>OnSelectionChange</var> and <var>OnClick</var>.
|
||||
</p>
|
||||
<p>
|
||||
OnClickCheck and OnItemClick are not signalled when the checked state for an item is changed in code using <var>Checked</var>, <var>State</var>, <var>CheckAll</var>, or <var>Toggle</var>.
|
||||
</p>
|
||||
<p>
|
||||
Use <var>OnClickCheck</var> to perform control-level actions needed when a check box is changed.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomCheckListBox.ItemClick"/>
|
||||
<link id="TCustomCheckListBox.OnClickCheck"/>
|
||||
<link id="TCustomCheckListBox.KeyDown"/>
|
||||
<link id="TCustomCheckListBox.OnClickCheck"/>
|
||||
<link id="TCheckListClicked"/>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.Items">TCustomListBox.Items</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.ItemIndex">TCustomListBox.ItemIndex</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.OnSelectionChange">TCustomListBox.OnSelectionChange</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.OnClick">TCustomListBox.OnClick</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -754,7 +886,9 @@
|
||||
link="#lcl.stdctrls.TCustomListBox.MultiSelect"/>
|
||||
<element name="TCheckListBox.OnChangeBounds"
|
||||
link="#lcl.controls.TControl.OnChangeBounds"/>
|
||||
<element name="TCheckListBox.OnClick" link="#lcl.controls.TControl.OnClick"/>
|
||||
|
||||
<element name="TCheckListBox.OnClick" link="#lcl.stdctrls.TCustomListBox.OnClick"/>
|
||||
|
||||
<element name="TCheckListBox.OnClickCheck" link="#lcl.checklst.TCustomCheckListBox.OnClickCheck"/>
|
||||
<element name="TCheckListBox.OnContextPopup"
|
||||
link="#lcl.controls.TControl.OnContextPopup"/>
|
||||
|
@ -1131,7 +1131,7 @@
|
||||
<link id="TPageControl"/>
|
||||
<link id="TCustomTabControl.Page"/>
|
||||
<link id="TCustomTabControl.ActivePageComponent"/>
|
||||
<link id="#lcl.extctrls.MultiPage-Controls">Using Multi-Page Controls</link>
|
||||
<link id="#lcl.extctrls.MultiPageControls">Using Multi-Page Controls</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -2147,7 +2147,7 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.Multi-PageControls">Using Multi-Page Controls</link>
|
||||
<link id="#lcl.extctrls.MultiPageControls">Using Multi-Page Controls</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -3367,7 +3367,7 @@
|
||||
</ul>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.Multi-PageControls">Using Multi-Page Controls</link>
|
||||
<link id="#lcl.extctrls.MultiPageControls">Using Multi-Page Controls</link>
|
||||
<link id="#lcl.stdctrls.HowToUseStdCtrls">How To Use Standard Controls</link>
|
||||
</seealso>
|
||||
</element>
|
||||
@ -3503,7 +3503,7 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.Multi-PageControls">Using Multi-Page Controls</link>
|
||||
<link id="#lcl.extctrls.MultiPageControls">Using Multi-Page Controls</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -4675,7 +4675,7 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.Multi-PageControls">Using Multi-Page Controls</link>
|
||||
<link id="#lcl.extctrls.MultiPageControls">Using Multi-Page Controls</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -11034,9 +11034,9 @@
|
||||
<link id="TCustomProgressBar.Min"/>
|
||||
<link id="TCustomProgressBar.Max"/>
|
||||
<link id="TCustomProgressBar.Style"/>
|
||||
<link id="'TCustomProgressBar.StepBy'"/>
|
||||
<link id="'TCustomProgressBar.Step'"/>
|
||||
<link id="'TCustomProgressBar.StepIt'"/>
|
||||
<link id="TCustomProgressBar.StepBy"/>
|
||||
<link id="TCustomProgressBar.Step"/>
|
||||
<link id="TCustomProgressBar.StepIt"/>
|
||||
<link id="TCustomProgressBar.ApplyChanges"/>
|
||||
<link id="TProgressBarStyle"/>
|
||||
</seealso>
|
||||
@ -23382,7 +23382,7 @@ OldExpanded.Free;
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.Multi-PageControls">Using Multi-Page Controls</link>
|
||||
<link id="#lcl.extctrls.MultiPageControls">Using Multi-Page Controls</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -23878,7 +23878,7 @@ OldExpanded.Free;
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.ExtCtrls.Multi-PageControls">Using Multi-Page Controls</link>
|
||||
<link id="#lcl.ExtCtrls.MultiPageControls">Using Multi-Page Controls</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
|
@ -7509,7 +7509,13 @@
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element name="TControl.Loaded" link="#rtl.classes.TComponent.Loaded"/>
|
||||
<element name="TControl.Loaded">
|
||||
<short>Performs actions needed when LCL component streaming has been completed</short>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="#rtl.classes.TComponent">TComponent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TControl.LoadedAll">
|
||||
<short>
|
||||
@ -14003,8 +14009,18 @@
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.controls.TWinControl.DisableAutoSizing" name="TWinControl.DisableAlign"/>
|
||||
<element link="#lcl.controls.TWinControl.EnableAutoSizing" name="TWinControl.EnableAlign"/>
|
||||
<element name="TWinControl.DisableAlign">
|
||||
<short/>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TWinControl.EnableAlign">
|
||||
<short/>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.controls.TControl.AdjustSize" name="TWinControl.ReAlign"/>
|
||||
|
||||
<element name="TWinControl.ScrollBy_WS">
|
||||
|
@ -3397,12 +3397,18 @@
|
||||
<link id="#fcl.db.TField">TField</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element link="#lcl.extctrls.TCustomRadioGroup.ItemIndex" name="TDBRadioGroup.ItemIndex">
|
||||
|
||||
<element name="TDBRadioGroup.ItemIndex">
|
||||
<descr>
|
||||
<p>ItemIndex is a public property in TDBRadioGroup.
|
||||
<p>
|
||||
ItemIndex is a public property in TDBRadioGroup.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.TCustomRadioGroup.ItemIndex">TCustomRadioGroup.ItemIndex</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TDBRadioGroup.Value">
|
||||
<short>The value for the selected radio button in the control</short>
|
||||
<descr>
|
||||
|
@ -3221,10 +3221,23 @@
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomDBGrid.BeforeMoveSelection" link="#lcl.Grids.TCustomGrid.BeforeMoveSelection">
|
||||
<element name="TCustomDBGrid.AutoAdjustColumn">
|
||||
<short/>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="#lcl.grids.TCustomGrid.AutoAdjustColumn">TCustomGrid.AutoAdjustColumn</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TCustomDBGrid.AutoAdjustColumn.ACol">
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomDBGrid.BeforeMoveSelection">
|
||||
<short></short>
|
||||
<descr></descr>
|
||||
<seealso></seealso>
|
||||
<seealso>
|
||||
<link id="#lcl.grids.TCustomGrid.BeforeMoveSelection">TCustomGrid.BeforeMoveSelection</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TCustomDBGrid.BeforeMoveSelection.DCol">
|
||||
<short></short>
|
||||
|
@ -132,7 +132,7 @@
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.StdCtrls.HowToUseStdCtrls">HowToUseStdCtrls</link>
|
||||
<link id="#lcl.ExtCtrls.Multi-PageControls">Multi-PageControls</link>
|
||||
<link id="#lcl.ExtCtrls.MultiPageControls">Multi-Page Controls</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -514,7 +514,7 @@
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.TPage">TPage</link>
|
||||
<link id="#lcl.extctrls.Multi-PageControls">Multi-Page Controls</link>
|
||||
<link id="#lcl.extctrls.MultiPageControls">Multi-Page Controls</link>
|
||||
<link id="#lcl.stdctrls.HowToUseStdCtrls">How To Use Standard Controls</link>
|
||||
</seealso>
|
||||
</element>
|
||||
@ -3380,12 +3380,14 @@
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomRadioGroup.ItemIndex" link="#lcl.extctrls.TCustomRadioGroup.ItemIndex">
|
||||
<element name="TCustomRadioGroup.ItemIndex">
|
||||
<short>
|
||||
The Index value in the list of Items (a stringlist with the names of the selections for radio buttons)
|
||||
</short>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
<seealso>
|
||||
<link id="#lcl.extctrls.TCustomRadioGroup.ItemIndex">TCustomRadioGroup.ItemIndex</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomRadioGroup.Items">
|
||||
@ -5341,7 +5343,7 @@
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TFlowPanelControl.Index" link="#LCL.Classes.TCollectionItem.Index">
|
||||
<element name="TFlowPanelControl.Index">
|
||||
<short>
|
||||
Ordinal position for the flowed control in the TFlowPanelControlList collection
|
||||
</short>
|
||||
@ -5351,10 +5353,10 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomFlowPanel.ComponentState"/>
|
||||
<link id="TCustomFlowPanel.Realign"/>
|
||||
<link id="TCustomFlowPanel.Realign"/>
|
||||
<link id="TFlowPanelControlList"/>
|
||||
<link id="#lcl.controls.TWinControl.Realign">TWinControl.Realign</link>
|
||||
<link id="#rtl.classes.TCollectionItem.Index">TCollectionItem.Index</link>
|
||||
<link id="#rtl.classes.TComponent.ComponentState">TComponent.ComponentState</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -7758,13 +7760,13 @@
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<topic name="Multi-PageControls">
|
||||
<topic name="MultiPageControls">
|
||||
<short>
|
||||
<var>Multi-PageControls</var> - controls that offer a selection of alternative pages for display
|
||||
<var>MultiPageControls</var> - controls that offer a selection of alternative pages for display
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>Multi-PageControls</var> - controls that offer a selection of alternative pages for display.
|
||||
<var>MultiPageControls</var> - controls that offer a selection of alternative pages for display.
|
||||
</p>
|
||||
<p>
|
||||
A number of controls, found in Units <var>ExtCtrls</var> and <var>ComCtrls</var>, offer the ability to create multi-page forms with a series of <var>Tabs</var> along one edge that allow the user to select one of the <var>Pages</var> for display and interaction.
|
||||
|
@ -3325,10 +3325,12 @@
|
||||
<short>True when the exception was handled</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomForm.InitializeWnd" link="#lcl.controls.TControl.InitializeWnd">
|
||||
<element name="TCustomForm.InitializeWnd">
|
||||
<short>Initializes the widget, also for AlphaBlend and AllowDropFiles</short>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWinControl.InitializeWnd">TWinControl.InitializeWnd</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomForm.Loaded">
|
||||
@ -3348,7 +3350,7 @@
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TScrollingWinControl.Loaded"/>
|
||||
<link id="#rtl.classes.TComponent.Loaded">TComponent.Loaded</link>
|
||||
<link id="#rtl.classes.TComponent">TComponent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -6278,7 +6280,7 @@
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.InitializeWnd">TControl.InitializeWnd</link>
|
||||
<link id="#lcl.controls.TWinControl.InitializeWnd">TWinControl.InitializeWnd</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="THintWindow.SetBounds.ALeft">
|
||||
@ -8014,9 +8016,9 @@
|
||||
<link id="TScreen.CustomForms"/>
|
||||
<link id="TScreen.Forms"/>
|
||||
<link id="TCustomForm.Visible"/>
|
||||
<link id="TCustomForm.Showing"/>
|
||||
<link id="TCustomForm.Show"/>
|
||||
<link id="TCustomForm.Hide"/>
|
||||
<link id="#lcl.controls.TWinControl.Showing">TWinControl.Showing</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TScreen.CustomFormsZOrdered.Index">
|
||||
@ -12648,7 +12650,15 @@
|
||||
<descr>The default value is aedOkCancelDialog.</descr>
|
||||
<seealso/>
|
||||
</element>
|
||||
<element name="TApplicationProperties.HelpFile" link="#lcl.forms.TApplication.HelpFile"/>
|
||||
|
||||
<element name="TApplicationProperties.HelpFile">
|
||||
<short/>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="TCustomForm.HelpFile"/>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TApplicationProperties.Hint" link="#lcl.forms.TApplication.Hint"/>
|
||||
<element name="TApplicationProperties.HintColor" link="#lcl.forms.TApplication.HintColor"/>
|
||||
<element name="TApplicationProperties.HintHidePause" link="#lcl.forms.TApplication.HintHidePause"/>
|
||||
@ -12670,7 +12680,15 @@
|
||||
<descr/>
|
||||
<seealso/>
|
||||
</element>
|
||||
<element name="TApplicationProperties.OnException" link="#lcl.forms.TApplication.OnException"/>
|
||||
|
||||
<element name="TApplicationProperties.OnException">
|
||||
<short/>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="#fcl.custapp.TCustomApplication.OnException">TCustomApplication.OnException</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TApplicationProperties.OnGetMainFormHandle" link="#lcl.forms.TApplication.OnGetMainFormHandle"/>
|
||||
<element name="TApplicationProperties.OnIdle" link="#lcl.forms.TApplication.OnIdle"/>
|
||||
<element name="TApplicationProperties.OnIdleEnd" link="#lcl.forms.TApplication.OnIdleEnd"/>
|
||||
|
@ -1073,7 +1073,6 @@
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomShellListView.Create"/>
|
||||
<link id="TShellListView.ViewStyle"/>
|
||||
<link id="#lcl.comctrls.TCustomListView.ViewStyle">TCustomListView.ViewStyle</link>
|
||||
<link id="#lcl.comctrls.TCustomListView.Columns">TCustomListView.Columns</link>
|
||||
<link id="#lcl.comctrls.TListColumns">TListColumns</link>
|
||||
@ -1188,7 +1187,6 @@
|
||||
<seealso>
|
||||
<link id="TCustomShellListView.ObjectTypes"/>
|
||||
<link id="TCustomShellListView.Resize"/>
|
||||
<link id="TShellListView.ViewStyle"/>
|
||||
<link id="#lcl.comctrls.TCustomListView.ViewStyle">TCustomListView.ViewStyle</link>
|
||||
<link id="#lcl.comctrls.TCustomListView.Columns">TCustomListView.Columns</link>
|
||||
</seealso>
|
||||
|
Loading…
Reference in New Issue
Block a user