mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-09 02:55:54 +02:00
Merged revision(s) 65300 #a0d68836cd, 65305 #5d1db7af91 from trunk:
Docs: LCL. Fixes missing or broken topics and links. ........ Docs: LCL. Fixes missing topics, broken or missing links. ........ git-svn-id: branches/fixes_2_2@65307 -
This commit is contained in:
parent
b5628d02a8
commit
b64ae7bdb6
@ -1471,7 +1471,7 @@
|
||||
<short>Indicates if the ShowMode for the glyph is examined in the method.</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomBitBtn.Caption" link="#lcl.controls.TControl.Caption">
|
||||
<element name="TCustomBitBtn.Caption">
|
||||
<short>Contains the descriptive text displayed for the Bitmap button control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
@ -1485,12 +1485,17 @@
|
||||
<link id="TCustomBitBtn.DefaultCaption"/>
|
||||
<link id="TCustomBitBtn.Kind"/>
|
||||
<link id="TBitBtnKind"/>
|
||||
<link id="#lcl.controls.TControl.Caption">TControl.Caption</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomBitBtn.DefaultCaption">
|
||||
<short>Indicates if Caption contains the default value for the button Kind.</short>
|
||||
<descr></descr>
|
||||
<descr>
|
||||
<p>
|
||||
Changing the property value to True causes a resource string with the caption text for the button ID to be assigned to the Caption property when Kind is not bkCustom.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomBitBtn.Caption"/>
|
||||
<link id="TCustomBitBtn.Kind"/>
|
||||
@ -1583,94 +1588,17 @@
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.Action" link="#lcl.controls.TControl.Action">
|
||||
<descr>
|
||||
<p>Standard properties, which should be supported by all descendants.</p>
|
||||
<p>The (default) action to be associated with this control.</p>
|
||||
<p>Can either read the action already associated with the control (GetAction), or write an action to be associated (SetAction).</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.Align" link="#lcl.controls.TControl.Align">
|
||||
<descr>
|
||||
<p>Standard properties, which should be supported by all descendants.</p>
|
||||
<p>Either reads a flag containing alignment instructions (<var>FAlign</var>) or writes alignment instructions (<var>SetAlign</var>).</p>
|
||||
<p>May have no alignment, may have custom or client alignment, or can be aligned to top, bottom, left or right.</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.Anchors" link="#lcl.controls.TControl.Anchors">
|
||||
<descr>
|
||||
<p>Standard properties, which should be supported by all descendants.</p>
|
||||
<p>Determines how the control is to be anchored to its client or parent control.</p>
|
||||
<p>Either reads a flag containing the set of anchors to be used, or writes a set of anchors. If they have been written, this is indicated in <var>IsAnchorsStored</var>.
|
||||
</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.Action" link="#lcl.controls.TControl.Action"/>
|
||||
<element name="TBitBtn.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TBitBtn.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TBitBtn.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
<element name="TBitBtn.BidiMode" link="#lcl.controls.TControl.BidiMode"/>
|
||||
|
||||
<element name="TBitBtn.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing">
|
||||
<descr>
|
||||
<p>Standard properties, which should be supported by all descendants.</p>
|
||||
<p>Determines the border spacing for this control.</p>
|
||||
<p>Reads flag to find stored spacing values required for the border of the control, or writes the flag to set the spacing.</p>
|
||||
<p>The properties are defined in the parent class <link id="#lcl.controls.TControlBorderSpacing">TControlBorderSpacing</link>.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso></seealso>
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.Cancel" link="#LCL.StdCtrls.TCustomButton.Cancel">
|
||||
<descr>
|
||||
<p>Setting this property to True, will have the effect that when the user hits ESC this button is Clicked, even if the button does not have focus. Usually the Button which reacts to ESC sets the ModalResult of the form to mrCancel.</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.Caption">
|
||||
<descr>
|
||||
<p>
|
||||
Gets caption as a text-string (<var>GetText</var>), or stores the new caption (<var>SetText</var>). Shows flag if caption is stored (<var>IsCaptionStored</var>).
|
||||
</p>
|
||||
<p>
|
||||
By default, the <var>Caption</var> appears the same as the control <var>Name</var> in the Object Inspector, and the developer needs to set it explicitly to some new text.
|
||||
</p>
|
||||
<p>
|
||||
The VCL implementation relies on the virtual <var>Get/SetTextBuf</var> to exchange text between widgets and VCL. This means a lot of (unnecessary) text copies.
|
||||
</p>
|
||||
<p>
|
||||
The LCL uses strings for exchanging text (more efficient). To maintain VCL compatibility, the virtual <var>RealGet/SetText</var> is introduced. These functions interface with the LCLInterface.
|
||||
</p>
|
||||
<p>
|
||||
The default <var>Get/SetTextBuf</var> implementation calls the <var>RealGet/SetText</var>. As long as the <var>Get/SetTextBuf</var> isn't overridden <var>Get/SetText</var> calls <var>RealGet/SetText</var> to avoid PChar copying.
|
||||
</p>
|
||||
<p>
|
||||
To keep things optimal, LCL implementations should always override RealGet/SetText. Get/SetTextBuf is only kept for compatibility.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Caption">TControl.Caption</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TBitBtn.Cancel" link="#lcl.stdctrls.TCustomButton.Cancel"/>
|
||||
<element name="TBitBtn.Caption" link="#lcl.buttons.TCustomBitBtn.Caption"/>
|
||||
<element name="TBitBtn.Color" link="#lcl.controls.TControl.Color"/>
|
||||
|
||||
<element name="TBitBtn.Constraints" link="#lcl.controls.TControl.Constraints">
|
||||
<descr>
|
||||
<p>Standard properties, which should be supported by all descendants.</p>
|
||||
<p>Determine <var>Constraints</var> (max and min height and width) for this control; reads the size constraints or stores new ones.</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.Default" link="#LCL.StdCtrls.TCustomButton.Default">
|
||||
<descr>
|
||||
<p>
|
||||
Defines whether a button is the <var>Default</var> selection for a form. That is, pressing ENTER will execute its OnClick method, even when the control does not have focus!
|
||||
</p>
|
||||
</descr>
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TBitBtn.Default" link="#lcl.stdctrls.TCustomButton.Default"/>
|
||||
<element name="TBitBtn.DefaultCaption" link="#lcl.buttons.TCustomBitBtn.DefaultCaption"/>
|
||||
<element name="TBitBtn.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
|
||||
<element name="TBitBtn.DragKind" link="#lcl.controls.TControl.DragKind"/>
|
||||
@ -1699,7 +1627,7 @@
|
||||
<element name="TBitBtn.Kind" link="#lcl.buttons.TCustomBitBtn.Kind"/>
|
||||
<element name="TBitBtn.Layout" link="#lcl.buttons.TCustomBitBtn.Layout"/>
|
||||
<element name="TBitBtn.Margin" link="#lcl.buttons.TCustomBitBtn.Margin"/>
|
||||
<element name="TBitBtn.ModalResult" link="#LCL.StdCtrls.TCustomButton.ModalResult"/>
|
||||
<element name="TBitBtn.ModalResult" link="#lcl.stdctrls.TCustomButton.ModalResult"/>
|
||||
<element name="TBitBtn.NumGlyphs" link="#lcl.buttons.TCustomBitBtn.NumGlyphs"/>
|
||||
<element name="TBitBtn.Images" link="#lcl.buttons.TCustomBitBtn.Images"/>
|
||||
<element name="TBitBtn.ImageIndex" link="#lcl.buttons.TCustomBitBtn.ImageIndex"/>
|
||||
@ -1716,10 +1644,10 @@
|
||||
<seealso></seealso>
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.OnContextPopup" link="#lcl.controls.TWinControl.OnContextPopup"/>
|
||||
<element name="TBitBtn.OnDragDrop" link="#lcl.controls.TWinControl.OnDragDrop"/>
|
||||
<element name="TBitBtn.OnDragOver" link="#lcl.controls.TWinControl.OnDragOver"/>
|
||||
<element name="TBitBtn.OnEndDrag" link="#lcl.controls.TWinControl.OnEndDrag"/>
|
||||
<element name="TBitBtn.OnContextPopup" link="#lcl.controls.TControl.OnContextPopup"/>
|
||||
<element name="TBitBtn.OnDragDrop" link="#lcl.controls.TControl.OnDragDrop"/>
|
||||
<element name="TBitBtn.OnDragOver" link="#lcl.controls.TControl.OnDragOver"/>
|
||||
<element name="TBitBtn.OnEndDrag" link="#lcl.controls.TControl.OnEndDrag"/>
|
||||
<element name="TBitBtn.OnEnter" link="#lcl.controls.TWinControl.OnEnter"/>
|
||||
<element name="TBitBtn.OnExit" link="#lcl.controls.TWinControl.OnExit"/>
|
||||
|
||||
@ -1760,6 +1688,8 @@
|
||||
</element>
|
||||
|
||||
<element name="TBitBtn.OnMouseDown" link="#lcl.controls.TControl.OnMouseDown"/>
|
||||
<element name="TBitBtn.OnMouseEnter" link="#lcl.controls.TControl.OnMouseEnter"/>
|
||||
<element name="TBitBtn.OnMouseLeave" link="#lcl.controls.TControl.OnMouseLeave"/>
|
||||
<element name="TBitBtn.OnMouseMove" link="#lcl.controls.TControl.OnMouseMove"/>
|
||||
<element name="TBitBtn.OnMouseUp" link="#lcl.controls.TControl.OnMouseUp"/>
|
||||
<element name="TBitBtn.OnMouseWheel" link="#lcl.controls.TControl.OnMouseWheel"/>
|
||||
@ -2710,7 +2640,7 @@
|
||||
<seealso></seealso>
|
||||
</element>
|
||||
|
||||
<element name="TSpeedButton.AutoSize" link="#LCL.StdCtrls.TGraphicControl.AutoSize"/>
|
||||
<element name="TSpeedButton.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
|
||||
<element name="TSpeedButton.BidiMode">
|
||||
<short>Indicates the bi-drectional text mode for the control.</short>
|
||||
|
@ -234,7 +234,7 @@
|
||||
</element>
|
||||
|
||||
<!-- object Visibility: default -->
|
||||
<element name="TCustomCalendar" link="#lcl.Controls.TWinControl">
|
||||
<element name="TCustomCalendar" link="#lcl.controls.TWinControl">
|
||||
<short>
|
||||
<var>TCustomCalendar</var> - base class for <var>TCalendar</var>.
|
||||
</short>
|
||||
@ -435,19 +435,10 @@
|
||||
<!-- class function Visibility: protected -->
|
||||
<element
|
||||
name="TCustomCalendar.GetControlClassDefaultSize"
|
||||
link="#LCL.Controls.TControl.GetControlClassDefaultSize"/>
|
||||
|
||||
<!-- procedure Visibility: public -->
|
||||
<element name="TCustomCalendar.Loaded" link="#rtl.Classes.TComponent.Loaded">
|
||||
</element>
|
||||
|
||||
<!-- procedure Visibility: protected -->
|
||||
<element name="TCustomCalendar.InitializeWnd" link="#LCL.Controls.TWinControl.InitializeWnd">
|
||||
</element>
|
||||
|
||||
<!-- procedure Visibility: protected -->
|
||||
<element name="TCustomCalendar.DestroyWnd" link="#LCL.Controls.TWinControl.DestroyWnd">
|
||||
</element>
|
||||
link="#lcl.controls.TControl.GetControlClassDefaultSize"/>
|
||||
<element name="TCustomCalendar.Loaded" link="#lcl.controls.TWinControl.Loaded"/>
|
||||
<element name="TCustomCalendar.InitializeWnd" link="#lcl.controls.TWinControl.InitializeWnd"/>
|
||||
<element name="TCustomCalendar.DestroyWnd" link="#lcl.controls.TWinControl.DestroyWnd"/>
|
||||
|
||||
<!-- constructor Visibility: public -->
|
||||
<element name="TCustomCalendar.Create">
|
||||
@ -645,39 +636,17 @@
|
||||
</element>
|
||||
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.Align" link="#LCL.Controls.TControl.Align">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.Anchors" link="#LCL.Controls.TControl.Anchors">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.AutoSize" link="#LCL.Controls.TControl.AutoSize">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.BorderSpacing" link="#LCL.Controls.TControl.BorderSpacing">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.Constraints" link="#LCL.Controls.TControl.Constraints">
|
||||
<short></short>
|
||||
</element>
|
||||
<element name="TCalendar.Align" link="#lcl.controls.TControl.Align"/>
|
||||
<element name="TCalendar.Anchors" link="#lcl.controls.TControl.Anchors"/>
|
||||
<element name="TCalendar.AutoSize" link="#lcl.controls.TControl.AutoSize"/>
|
||||
<element name="TCalendar.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TCalendar.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TCalendar.DateTime" link="#LCL.Calendar.TCustomCalendar.DateTime"/>
|
||||
<element name="TCalendar.DisplaySettings" link="#LCL.Calendar.TCustomCalendar.DisplaySettings"/>
|
||||
<element name="TCalendar.DoubleBuffered" link="#lcl.controls.TWinControl.DoubleBuffered"/>
|
||||
<element name="TCalendar.FirstDayOfWeek" link="#lcl.calendar.TCustomCalendar.FirstDayOfWeek"/>
|
||||
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.DateTime" link="#LCL.Calendar.TCustomCalendar.DateTime">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.DisplaySettings" link="#LCL.Calendar.TCustomCalendar.DisplaySettings">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.DoubleBuffered" link="#lcl.Controls.TWinControl.DoubleBuffered">
|
||||
<short></short>
|
||||
</element>
|
||||
<element name="TCalendar.Hint" link="#lcl.Controls.TControl.Hint">
|
||||
<element name="TCalendar.Hint" link="#lcl.controls.TControl.Hint">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
@ -685,11 +654,11 @@
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnChangeBounds" link="#LCL.Controls.TControl.OnChangeBounds">
|
||||
<element name="TCalendar.OnChangeBounds" link="#lcl.controls.TControl.OnChangeBounds">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnClick" link="#LCL.Controls.TControl.OnClick">
|
||||
<element name="TCalendar.OnClick" link="#lcl.controls.TControl.OnClick">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
@ -697,27 +666,27 @@
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnDblClick" link="#LCL.Controls.TControl.OnDblClick">
|
||||
<element name="TCalendar.OnDblClick" link="#lcl.controls.TControl.OnDblClick">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnEnter" link="#LCL.Controls.TWinControl.OnEnter">
|
||||
<element name="TCalendar.OnEnter" link="#lcl.controls.TWinControl.OnEnter">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnExit" link="#LCL.Controls.TWinControl.OnExit">
|
||||
<element name="TCalendar.OnExit" link="#lcl.controls.TWinControl.OnExit">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnKeyDown" link="#LCL.Controls.TWinControl.OnKeyDown">
|
||||
<element name="TCalendar.OnKeyDown" link="#lcl.controls.TWinControl.OnKeyDown">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnKeyPress" link="#LCL.Controls.TWinControl.OnKeyPress">
|
||||
<element name="TCalendar.OnKeyPress" link="#lcl.controls.TWinControl.OnKeyPress">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnKeyUp" link="#LCL.Controls.TWinControl.OnKeyUp">
|
||||
<element name="TCalendar.OnKeyUp" link="#lcl.controls.TWinControl.OnKeyUp">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
@ -725,47 +694,38 @@
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnMouseDown" link="#LCL.Controls.TControl.OnMouseDown">
|
||||
<element name="TCalendar.OnMouseDown" link="#lcl.controls.TControl.OnMouseDown">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnMouseEnter" link="#LCL.Controls.TControl.OnMouseEnter">
|
||||
<element name="TCalendar.OnMouseEnter" link="#lcl.controls.TControl.OnMouseEnter">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnMouseLeave" link="#LCL.Controls.TControl.OnMouseLeave">
|
||||
<element name="TCalendar.OnMouseLeave" link="#lcl.controls.TControl.OnMouseLeave">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnMouseMove" link="#LCL.Controls.TControl.OnMouseMove">
|
||||
<element name="TCalendar.OnMouseMove" link="#lcl.controls.TControl.OnMouseMove">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnMouseUp" link="#LCL.Controls.TControl.OnMouseUp">
|
||||
<element name="TCalendar.OnMouseUp" link="#lcl.controls.TControl.OnMouseUp">
|
||||
<short></short>
|
||||
</element>
|
||||
|
||||
<element name="TCalendar.OnMouseWheel" link="#lcl.controls.TControl.OnMouseWheel"/>
|
||||
<element name="TCalendar.OnMouseWheelDown" link="#lcl.controls.TControl.OnMouseWheelDown"/>
|
||||
<element name="TCalendar.OnMouseWheelUp" link="#lcl.controls.TControl.OnMouseWheelUp"/>
|
||||
<element name="TCalendar.OnMouseWheelHorz" link="#lcl.controls.TControl.OnMouseWheelHorz"/>
|
||||
<element name="TCalendar.OnMouseWheelLeft" link="#lcl.controls.TControl.OnMouseWheelLeft"/>
|
||||
<element name="TCalendar.OnMouseWheelRight" link="#lcl.controls.TControl.OnMouseWheelRight"/>
|
||||
|
||||
<element name="TCalendar.OnResize" link="#lcl.controls.TControl.OnResize">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnMouseWheel" link="#LCL.Controls.TControl.OnMouseWheel">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnMouseWheelHorz" link="#LCL.Controls.TControl.OnMouseWheelHorz">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnMouseWheelLeft" link="#LCL.Controls.TControl.OnMouseWheelLeft">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnMouseWheelRight" link="#LCL.Controls.TControl.OnMouseWheelRight">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnResize" link="#LCL.Controls.TControl.OnResize">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.OnUTF8KeyPress" link="#LCL.Controls.TWinControl.OnUTF8KeyPress">
|
||||
<element name="TCalendar.OnUTF8KeyPress" link="#lcl.controls.TWinControl.OnUTF8KeyPress">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
@ -773,23 +733,23 @@
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.ParentDoubleBuffered" link="#LCL.Controls.TControl.ParentDoubleBuffered">
|
||||
<element name="TCalendar.ParentDoubleBuffered" link="#lcl.controls.TControl.ParentDoubleBuffered">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.PopupMenu" link="#LCL.Controls.TControl.PopupMenu">
|
||||
<element name="TCalendar.PopupMenu" link="#lcl.controls.TControl.PopupMenu">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.TabOrder" link="#LCL.Controls.TWinControl.TabOrder">
|
||||
<element name="TCalendar.TabOrder" link="#lcl.controls.TWinControl.TabOrder">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.Tabstop" link="#LCL.Controls.TWinControl.TabStop">
|
||||
<element name="TCalendar.Tabstop" link="#lcl.controls.TWinControl.TabStop">
|
||||
<short></short>
|
||||
</element>
|
||||
<!-- property Visibility: published -->
|
||||
<element name="TCalendar.Visible" link="#LCL.Controls.TControl.Visible">
|
||||
<element name="TCalendar.Visible" link="#lcl.controls.TControl.Visible">
|
||||
<short></short>
|
||||
</element>
|
||||
|
||||
|
@ -369,10 +369,8 @@
|
||||
<short>Width needed to draw a check box.</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomCheckListBox.DefineProperties" link="#rtl.classes.TComponent.DefineProperties"/>
|
||||
<element name="TCustomCheckListBox.DefineProperties.Filer">
|
||||
<short/>
|
||||
</element>
|
||||
<element name="TCustomCheckListBox.DefineProperties" link="#lcl.controls.TControl.DefineProperties"/>
|
||||
<element name="TCustomCheckListBox.DefineProperties.Filer" link="#lcl.controls.TControl.DefineProperties.Filer"/>
|
||||
|
||||
<element name="TCustomCheckListBox.ReadData">
|
||||
<short>
|
||||
@ -885,7 +883,7 @@
|
||||
<element name="TCheckListBox.OnChangeBounds"
|
||||
link="#lcl.controls.TControl.OnChangeBounds"/>
|
||||
|
||||
<element name="TCheckListBox.OnClick" link="#lcl.stdctrls.TCustomListBox.OnClick"/>
|
||||
<element name="TCheckListBox.OnClick" link="#lcl.controls.TControl.OnClick"/>
|
||||
|
||||
<element name="TCheckListBox.OnClickCheck" link="#lcl.checklst.TCustomCheckListBox.OnClickCheck"/>
|
||||
<element name="TCheckListBox.OnContextPopup"
|
||||
@ -917,7 +915,7 @@
|
||||
<element name="TCheckListBox.OnMouseWheelRight"
|
||||
link="#lcl.controls.TControl.OnMouseWheelRight"/>
|
||||
<element name="TCheckListBox.OnResize" link="#lcl.controls.TControl.OnResize"/>
|
||||
<element name="TCheckListBox.OnSelectionChange" link="#lcl.controls.TControl.OnSelectionChange"/>
|
||||
<element name="TCheckListBox.OnSelectionChange" link="#lcl.stdctrls.TCustomListBox.OnSelectionChange"/>
|
||||
<element name="TCheckListBox.OnShowHint" link="#lcl.controls.TControl.OnShowHint"/>
|
||||
<element name="TCheckListBox.OnStartDrag" link="#lcl.controls.TControl.OnStartDrag"/>
|
||||
<element name="TCheckListBox.OnUTF8KeyPress" link="#lcl.controls.TWinControl.OnUTF8KeyPress"/>
|
||||
|
@ -389,24 +389,34 @@ The format CF_TEXT is handled by AsText and SetTextBuf. Use those functions inst
|
||||
<short/>
|
||||
</element>
|
||||
<!-- procedure Visibility: public -->
|
||||
<element name="TClipboard.Assign" link="#rtl.Classes.TPersistent.Assign">
|
||||
<descr/>
|
||||
<errors/>
|
||||
<seealso/>
|
||||
<element name="TClipboard.Assign">
|
||||
<short>
|
||||
Copies properties from the specified persistent object to the clipboard.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>Assign</var> is an overridden method in <var>TClipboard</var> used to copy properties from the persistent object in <var>Source</var> to the clipboard instance. It provides support for using <var>TPicture</var> and <var>TGraphic</var> types in Source, and calls private methods used to copy the properties specific to the class types. If Source is not one of these class types, the inherited method is called.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#rtl.classes.TPersistent.Assign">TPersistent.Assign</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<!-- argument Visibility: default -->
|
||||
<element name="TClipboard.Assign.Source">
|
||||
<short/>
|
||||
<short>Persistent object with the property values copied in the method.</short>
|
||||
</element>
|
||||
<!-- procedure Visibility: public -->
|
||||
<element name="TClipboard.AssignTo" link="#rtl.Classes.TPersistent.AssignTo">
|
||||
<element name="TClipboard.AssignTo">
|
||||
<short>Copies property values into the specified persistent object.</short>
|
||||
<descr/>
|
||||
<errors/>
|
||||
<seealso/>
|
||||
<seealso>
|
||||
<link id="#rtl.classes.TPersistent">TPersistent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<!-- argument Visibility: default -->
|
||||
<element name="TClipboard.AssignTo.Dest">
|
||||
<short/>
|
||||
<short>Persistent object where the properties in the class instance are stored.</short>
|
||||
</element>
|
||||
<!-- procedure Visibility: public -->
|
||||
<element name="TClipboard.Clear">
|
||||
@ -438,9 +448,13 @@ The format CF_TEXT is handled by AsText and SetTextBuf. Use those functions inst
|
||||
<var>AClipboardType</var> - optional argument specifying type of clipboard to be created.</short>
|
||||
</element>
|
||||
<!-- destructor Visibility: public -->
|
||||
<element name="TClipboard.Destroy" link="#rtl.Classes.TPersistent.Destroy">
|
||||
<descr/>
|
||||
<errors/>
|
||||
<element name="TClipboard.Destroy">
|
||||
<short>Destructor for the class instance.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>Destroy</var> is the overridden destructor for the class instance. It frees resources allocated in the class instance, and calls the inherited destructor prior to exiting from the method.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
</element>
|
||||
<!-- function Visibility: public -->
|
||||
@ -612,22 +626,66 @@ The format CF_TEXT is handled by AsText and SetTextBuf. Use those functions inst
|
||||
</element>
|
||||
<!-- argument Visibility: default -->
|
||||
<element name="TClipboard.SetComponent.Component">
|
||||
<short/>
|
||||
<short>Component stored in the clipboard.</short>
|
||||
</element>
|
||||
|
||||
<element name="TClipboard.SetComponentAsText">
|
||||
<short>Stores the specified Component in the clipboard.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>SetComponentAsText</var> is a <var>Boolean</var> function used to store the specified <var>Component</var> to the <var>TClipboard</var> instance.
|
||||
</p>
|
||||
<p>
|
||||
SetComponentAsText calls the <var>WriteComponentAsTextToStream</var> routine in the <file>lresources.pp</file> unit to store Component to a <var>TMemoryStream</var>. The String value in the stream is assigned to the <var>AsText</var> property to store the value in the clipboard.
|
||||
</p>
|
||||
<p>
|
||||
SetComponentAsText calls <var>BeginUpdate</var> prior to storing the component to the clipboard, and <var>EndUpdate</var> when the operation has been completed. The return value for the method is the value returned from EndUpdate.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TClipBoard.AsText"/>
|
||||
<link id="#lcl.lresources.WriteComponentAsTextToStream">.WriteComponentAsTextToStream</link>
|
||||
<link id="#rtl.classes.TMemoryStream">TMemoryStream</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TClipboard.SetComponentAsText.Component">
|
||||
<short>Component instance stored to the clipboard in the method.</short>
|
||||
</element>
|
||||
<element name="TClipboard.SetComponentAsText.Result">
|
||||
<short>
|
||||
True when no other updates are pending for the clipboard, and its ownership has not changed.
|
||||
</short>
|
||||
</element>
|
||||
|
||||
<!-- procedure Visibility: public -->
|
||||
<element name="TClipboard.SetFormat">
|
||||
<short/>
|
||||
<descr/>
|
||||
<errors/>
|
||||
<seealso/>
|
||||
<short>
|
||||
Sets the clipboard format to the specified identifier and copies the value in Stream.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>SetFormat</var> is a <var>Boolean</var> function used to select the clipboard format for the format identifer in <var>FormatID</var>, and load the content in <var>Stream</var>. It calls <var>AddFormat</var> to select the supported format in FormatID, and to cache values in Stream to its <var>TClipboardData</var> record instance.
|
||||
</p>
|
||||
<p>
|
||||
SetFormat calls <var>BeginUpdate</var> prior to activating the format and loading its value. It calls <var>EndUpdate</var> when the operation has been completed. The value from EndUpdate is used as the return value for the method.
|
||||
</p>
|
||||
<p>
|
||||
SetFormat is called when <var>TGraphic</var> or <var>TPicture</var> class instances are loaded to the clipboard in the <var>Assign</var> method.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TClipBoard.AddFormat"/>
|
||||
<link id="TClipBoard.Assign"/>
|
||||
<link id="#lcl.lcltype.TClipboardFormat"/>
|
||||
</seealso>
|
||||
</element>
|
||||
<!-- argument Visibility: default -->
|
||||
<element name="TClipboard.SetFormat.FormatID">
|
||||
<short/>
|
||||
<short>Format identifier needed for the specified stream.</short>
|
||||
</element>
|
||||
<!-- argument Visibility: default -->
|
||||
<element name="TClipboard.SetFormat.Stream">
|
||||
<short/>
|
||||
<short>Stream with the content loaded in the method.</short>
|
||||
</element>
|
||||
<!-- procedure Visibility: public -->
|
||||
<element name="TClipboard.SetSupportedFormats">
|
||||
@ -663,15 +721,21 @@ The format CF_TEXT is handled by AsText and SetTextBuf. Use those functions inst
|
||||
<short/>
|
||||
</element>
|
||||
<!-- procedure Visibility: public -->
|
||||
<element name="TClipboard.SetTextBuf" link="#rtl.System.SetTextBuf">
|
||||
<short/>
|
||||
<descr/>
|
||||
<element name="TClipboard.SetTextBuf">
|
||||
<short>Loads the clipboard buffer using the text in the specified PChar value.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>SetTextBuf</var> is a method used to load the text specified in <var>Buffer</var> into the clipboard. Buffer is a <var>PChar</var> type, and when not assigned (<b>Nil</b>), is set to <b>#0</b> in the method. Its value is loaded in the <var>TClipboardData</var> instances used for the text clipboard format.
|
||||
</p>
|
||||
</descr>
|
||||
<errors/>
|
||||
<seealso/>
|
||||
<seealso>
|
||||
<link id="#rtl.system.SetTextBuf">SetTextBuf</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<!-- argument Visibility: default -->
|
||||
<element name="TClipboard.SetTextBuf.Buffer">
|
||||
<short/>
|
||||
<short>PChar value loaded into the clipboard.</short>
|
||||
</element>
|
||||
<!-- property Visibility: public -->
|
||||
<element name="TClipboard.AsText">
|
||||
|
@ -736,13 +736,13 @@ if iPos <> -1 then
|
||||
<element name="TColorBox.OnSelect" link="#lcl.stdctrls.TCustomComboBox.OnSelect"/>
|
||||
<element name="TColorBox.OnUTF8KeyPress" link="#lcl.controls.TWinControl.OnUTF8KeyPress"/>
|
||||
<element name="TColorBox.ParentBidiMode" link="#lcl.controls.TControl.ParentBidiMode"/>
|
||||
<element name="TColorBox.ParentColor" link="#lcl.stdctrls.TCustomComboBox.ParentColor"/>
|
||||
<element name="TColorBox.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
<element name="TColorBox.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
<element name="TColorBox.ParentShowHint" link="#lcl.controls.TControl.ParentShowHint"/>
|
||||
<element name="TColorBox.PopupMenu" link="#lcl.controls.TControl.PopupMenu"/>
|
||||
<element name="TColorBox.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TColorBox.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TColorBox.TabStop" link="#lcl.stdctrls.TCustomComboBox.TabStop"/>
|
||||
<element name="TColorBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TColorBox.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
||||
<element name="TLBGetColorsEvent">
|
||||
@ -887,10 +887,19 @@ if iPos <> -1 then
|
||||
</element>
|
||||
|
||||
<element name="TCustomColorListBox.InitializeWnd">
|
||||
<short/>
|
||||
<descr/>
|
||||
<short>
|
||||
Performs actions needed when the window handle for the control is created.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
Updates the value in Selected to force ItemIndex to be updated.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TWincontrol.InitializeWnd">TWincontrol.InitializeWnd</link>
|
||||
<link id="TCustomColorListBox.Selected"/>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.ItemIndex">TCustomListBox.ItemIndex</link>
|
||||
<link id="#lcl.stdctrls.TCustomListBox.InitializeWnd">TCustomListBox.InitializeWnd</link>
|
||||
<link id="#lcl.controls.TWinControl.InitializeWnd">TWincontrol.InitializeWnd</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
@ -1256,6 +1265,7 @@ if iPos <> -1 then
|
||||
<element name="TColorListBox.ColorRectOffset" link="#lcl.colorbox.TCustomColorListBox.ColorRectOffset"/>
|
||||
<element name="TColorListBox.DefaultColorColor" link="#lcl.colorbox.TCustomColorListBox.DefaultColorColor"/>
|
||||
<element name="TColorListBox.NoneColorColor" link="#lcl.colorbox.TCustomColorListBox.NoneColorColor"/>
|
||||
<element name="TColorListBox.Selected" link="#lcl.colorbox.TCustomColorListBox.Selected"/>
|
||||
<element name="TColorListBox.Style" link="#lcl.colorbox.TCustomColorListBox.Style"/>
|
||||
<element name="TColorListBox.OnGetColors" link="#lcl.colorbox.TCustomColorListBox.OnGetColors"/>
|
||||
|
||||
@ -1266,16 +1276,17 @@ if iPos <> -1 then
|
||||
<element name="TColorListBox.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
<element name="TColorListBox.ClickOnSelChange" link="#lcl.stdctrls.TCustomListBox.ClickOnSelChange"/>
|
||||
<element name="TColorListBox.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TColorListBox.Constraints" link="#lcl.stdctrls.TCustomListBox.Constraints"/>
|
||||
<element name="TColorListBox.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TColorListBox.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
|
||||
<element name="TColorListBox.DragKind" link="#lcl.controls.TControl.DragKind"/>
|
||||
<element name="TColorListBox.DragMode" link="#lcl.controls.TControl.DragMode"/>
|
||||
<element name="TColorListBox.ExtendedSelect" link="#lcl.stdctrls.TCustomListBox.ExtendedSelect"/>
|
||||
<element name="TColorListBox.Enabled" link="#lcl.controls.TControl.Enabled"/>
|
||||
<element name="TColorListBox.Font" link="#lcl.stdctrls.TCustomListBox.Font"/>
|
||||
<element name="TColorListBox.Font" link="#lcl.controls.TControl.Font"/>
|
||||
<element name="TColorListBox.IntegralHeight" link="#lcl.stdctrls.TCustomListBox.IntegralHeight"/>
|
||||
<element name="TColorListBox.ItemHeight" link="#lcl.stdctrls.TCustomListBox.ItemHeight"/>
|
||||
<element name="TColorListBox.OnChangeBounds" link="#lcl.stdctrls.TCustomListBox.OnChangeBounds"/>
|
||||
|
||||
<element name="TColorListBox.OnClick" link="#lcl.stdctrls.TCustomListBox.OnClick"/>
|
||||
<element name="TColorListBox.OnContextPopup" link="#lcl.controls.TControl.OnContextPopup"/>
|
||||
<element name="TColorListBox.OnDblClick" link="#lcl.stdctrls.TCustomListBox.OnDblClick"/>
|
||||
|
@ -2460,10 +2460,10 @@
|
||||
<element name="TCheckComboBox.AutoSize" link="#lcl.stdctrls.TCustomComboBox.AutoSize"/>
|
||||
<element name="TCheckComboBox.BidiMode" link="#lcl.controls.TControl.BidiMode"/>
|
||||
<element name="TCheckComboBox.BorderSpacing" link="#lcl.controls.TControl.BorderSpacing"/>
|
||||
<element name="TCheckComboBox.BorderStyle" link="#lcl.controls.TControl.BorderStyle"/>
|
||||
<element name="TCheckComboBox.BorderStyle" link="#lcl.controls.TWinControl.BorderStyle"/>
|
||||
<element name="TCheckComboBox.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TCheckComboBox.Constraints" link="#lcl.controls.TControl.Constraints"/>
|
||||
<element name="TCheckComboBox.Count" link="#lcl.stdctrls.TCustomComboBox.Count"/>
|
||||
<element name="TCheckComboBox.Count" link="#lcl.comboex.TCustomCheckCombo.Count"/>
|
||||
<element name="TCheckComboBox.DragCursor" link="#lcl.controls.TControl.DragCursor"/>
|
||||
<element name="TCheckComboBox.DragKind" link="#lcl.controls.TControl.DragKind"/>
|
||||
<element name="TCheckComboBox.DragMode" link="#lcl.controls.TControl.DragMode"/>
|
||||
@ -2503,7 +2503,7 @@
|
||||
<element name="TCheckComboBox.OnMouseWheelUp" link="#lcl.controls.TControl.OnMouseWheelUp"/>
|
||||
<element name="TCheckComboBox.OnSelect" link="#lcl.stdctrls.TCustomComboBox.OnSelect"/>
|
||||
<element name="TCheckComboBox.OnStartDrag" link="#lcl.controls.TControl.OnStartDrag"/>
|
||||
<element name="TCheckComboBox.OnUTF8KeyPress" link="#lcl.controls.TControl.OnUTF8KeyPress"/>
|
||||
<element name="TCheckComboBox.OnUTF8KeyPress" link="#lcl.controls.TWinControl.OnUTF8KeyPress"/>
|
||||
<element name="TCheckComboBox.ParentBidiMode" link="#lcl.controls.TControl.ParentBidiMode"/>
|
||||
<element name="TCheckComboBox.ParentColor" link="#lcl.controls.TControl.ParentColor"/>
|
||||
<element name="TCheckComboBox.ParentFont" link="#lcl.controls.TControl.ParentFont"/>
|
||||
@ -2512,8 +2512,9 @@
|
||||
<element name="TCheckComboBox.ShowHint" link="#lcl.controls.TControl.ShowHint"/>
|
||||
<element name="TCheckComboBox.Sorted" link="#lcl.stdctrls.TCustomComboBox.Sorted"/>
|
||||
<element name="TCheckComboBox.TabOrder" link="#lcl.controls.TWinControl.TabOrder"/>
|
||||
<element name="TCheckComboBox.TabStop" link="#lcl.stdctrls.TCustomComboBox.TabStop"/>
|
||||
<element name="TCheckComboBox.TabStop" link="#lcl.controls.TWinControl.TabStop"/>
|
||||
<element name="TCheckComboBox.Text" link="#lcl.stdctrls.TCustomComboBox.Text"/>
|
||||
<element name="TCheckComboBox.TextHint" link="#lcl.stdctrls.TCustomComboBox.TextHint"/>
|
||||
<element name="TCheckComboBox.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
||||
<element name="Register">
|
||||
|
@ -2064,7 +2064,6 @@
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomTabControl.Style"/>
|
||||
<link id="#lcl.extctrls.TTabStyle">TTabStyle</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TTabStyle.tsTabs">
|
||||
@ -2758,7 +2757,7 @@
|
||||
<link id="TCustomTabControl.PageIndex"/>
|
||||
<link id="TCustomTabControl.PageToTabIndex"/>
|
||||
<link id="TCustomTabControl.TabToPageIndex"/>
|
||||
<link id="lcl.controls.TWinControl.ShowControl">TWinControl.ShowControl</link>
|
||||
<link id="#lcl.controls.TWinControl.ShowControl">TWinControl.ShowControl</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TCustomTabControl.ShowControl.APage">
|
||||
|
@ -3737,14 +3737,14 @@
|
||||
</element>
|
||||
|
||||
<element name="TSizeConstraints.AssignTo">
|
||||
<short/>
|
||||
<short>Copies property values to the specified persistent object.</short>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="#rtl.classes.TPersistent.Assign">TPersistent.Assign</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TSizeConstraints.AssignTo.Dest">
|
||||
<short/>
|
||||
<short>Persistent object where property values are stored.</short>
|
||||
</element>
|
||||
|
||||
<element name="TSizeConstraints.SetMaxHeight" link="#lcl.controls.TSizeConstraints.MaxHeight"/>
|
||||
@ -3861,6 +3861,20 @@
|
||||
<short>The suggested height.</short>
|
||||
</element>
|
||||
|
||||
<element name="TSizeConstraints.AutoAdjustLayout">
|
||||
<short>
|
||||
Adjusts width and height values in the class using the specified scaling factors.
|
||||
</short>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
</element>
|
||||
<element name="TSizeConstraints.AutoAdjustLayout.AXProportion">
|
||||
<short>Scaling factor applied to width values.</short>
|
||||
</element>
|
||||
<element name="TSizeConstraints.AutoAdjustLayout.AYProportion">
|
||||
<short>Scaling factor applied to height values.</short>
|
||||
</element>
|
||||
|
||||
<element name="TSizeConstraints.MaxInterfaceHeight">
|
||||
<short>The maximum height allowed by the widget.</short>
|
||||
<descr/>
|
||||
@ -4636,9 +4650,15 @@
|
||||
<short>New value for the property.</short>
|
||||
</element>
|
||||
|
||||
<element name="TAnchorSide.GetOwner" link="#rtl.classes.TPersistent.GetOwner"/>
|
||||
<element name="TAnchorSide.GetOwner">
|
||||
<short>Gets the owner of the persistent object.</short>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="#rtl.classes.TPersistent">TPersistent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TAnchorSide.GetOwner.Result">
|
||||
<short/>
|
||||
<short>Owner of the persistent object.</short>
|
||||
</element>
|
||||
|
||||
<element name="TAnchorSide.Create">
|
||||
@ -4710,7 +4730,7 @@
|
||||
<short>Position of the side to anchor to.</short>
|
||||
</element>
|
||||
|
||||
<element link="#rtl.classes.TPersistent.Assign" name="TAnchorSide.Assign"/>
|
||||
<element name="TAnchorSide.Assign" link="#rtl.classes.TPersistent.Assign"/>
|
||||
<element name="TAnchorSide.Assign.Source">
|
||||
<short/>
|
||||
</element>
|
||||
@ -6078,7 +6098,8 @@
|
||||
<element name="TControl.FAccessibleObject"/>
|
||||
<element link="#lcl.controls.TControl.ControlState" name="TControl.FControlState"/>
|
||||
<element link="#lcl.controls.TControl.Cursor" name="TControl.FCursor"/>
|
||||
<element link="#lcl.lclclasses.TLCLComponent.WSRegisterClass" name="TControl.WSRegisterClass"/>
|
||||
|
||||
<element name="TControl.WSRegisterClass" link="#lcl.lclclasses.TLCLComponent.WSRegisterClass"/>
|
||||
|
||||
<element link="#lcl.controls.TControl.Cursor" name="TControl.GetCursor"/>
|
||||
<element name="TControl.GetCursor.Result">
|
||||
@ -6090,14 +6111,24 @@
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.controls.TControl.Visible" name="TControl.SetVisible"/>
|
||||
<element name="TControl.SetVisible">
|
||||
<short>Sets the value for the Visible property.</short>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="TControl.Visible"/>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TControl.SetVisible.Value">
|
||||
<short/>
|
||||
<short>New value for the Visible property.</short>
|
||||
</element>
|
||||
|
||||
<element name="TControl.DoOnParentHandleDestruction">
|
||||
<short/>
|
||||
<descr>Implement in descendants</descr>
|
||||
<short>Performs actions when the handle for the parent control is freed.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Has an empty implementation in TControl. Must be implement in descendents classes.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
@ -6160,9 +6191,15 @@
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.controls.TControl.AutoSize" name="TControl.SetAutoSize"/>
|
||||
<element name="TControl.SetAutoSize">
|
||||
<short>Sets the value for the AutoSize property.</short>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.AutoSize">TControl.AutoSize</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TControl.SetAutoSize.Value">
|
||||
<short/>
|
||||
<short>New value for the AutoSize property.</short>
|
||||
</element>
|
||||
|
||||
<element name="TControl.BoundsChanged">
|
||||
@ -6212,6 +6249,21 @@
|
||||
<short>True when InnerBorder has to be taken into account.</short>
|
||||
</element>
|
||||
|
||||
<element name="TControl.IsCaptionStored">
|
||||
<short>Implements the storage specifier for the Caption property.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Returns True if ActionLink has not been assigned, or its IsCaptionLinked property is set to False.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
</element>
|
||||
<element name="TControl.IsCaptionStored.Result">
|
||||
<short>
|
||||
Returns True if ActionLink has not been assigned, or its IsCaptionLinked property is set to False.
|
||||
</short>
|
||||
</element>
|
||||
|
||||
<element name="TControl.SendMoveSizeMessages">
|
||||
<short>
|
||||
Sends Move and Size messages through the LCL message paths.
|
||||
@ -6804,13 +6856,18 @@
|
||||
<element name="TControl.wmmbuttonup.message">
|
||||
<short/>
|
||||
</element>
|
||||
<element name="TControl.wmmousewheel">
|
||||
<short/>
|
||||
<element name="TControl.WMMouseWheel">
|
||||
<short>Handles mouse wheel messages for the control.</short>
|
||||
</element>
|
||||
<element name="TControl.wmmousewheel.message">
|
||||
<short/>
|
||||
<element name="TControl.WMMouseWheel.Message">
|
||||
<short>Mouse wheel message handled in the method.</short>
|
||||
</element>
|
||||
<element name="TControl.WMMouseHWheel">
|
||||
<short>Handles horizontal mouse wheel messages for the control.</short>
|
||||
</element>
|
||||
<element name="TControl.WMMouseHWheel.Message">
|
||||
<short>Mouse wheel message handled in the method.</short>
|
||||
</element>
|
||||
|
||||
<element name="TControl.wmmove">
|
||||
<short>
|
||||
Message handler for control moved.
|
||||
@ -6844,6 +6901,19 @@
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element name="TControl.CMChanged">
|
||||
<short>Handles CM_CHANGED control messages for the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
Calls the WindowProc method in the Parent control (when assigned) to handle the control message in Message.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
</element>
|
||||
<element name="TControl.CMChanged.Message">
|
||||
<short>Control message handled in the method.</short>
|
||||
</element>
|
||||
|
||||
<element name="TControl.lmcapturechanged">
|
||||
<short>
|
||||
Message handler for changed capture.
|
||||
@ -7089,7 +7159,7 @@
|
||||
</element>
|
||||
|
||||
<element name="TControl.BeforeDragStart">
|
||||
<short/>
|
||||
<short>Not implemented in TControl.</short>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
</element>
|
||||
@ -7357,15 +7427,17 @@
|
||||
</element>
|
||||
|
||||
<element name="TControl.GetMousePosFromMessage">
|
||||
<short/>
|
||||
<short>
|
||||
Converts the coordinates in the specified mouse message from SmallInt to LongInt.
|
||||
</short>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
</element>
|
||||
<element name="TControl.GetMousePosFromMessage.Result">
|
||||
<short/>
|
||||
<short>TPoint instance with the LongInt values for the mouse cursor position.</short>
|
||||
</element>
|
||||
<element name="TControl.GetMousePosFromMessage.MessageMousePos">
|
||||
<short/>
|
||||
<short>TSmallPoint instance with the values converted in the method.</short>
|
||||
</element>
|
||||
|
||||
<element name="TControl.MouseDown">
|
||||
@ -7504,9 +7576,15 @@
|
||||
<short>The class type of the child control.</short>
|
||||
</element>
|
||||
|
||||
<element link="#rtl.classes.TComponent.ReadState" name="TControl.ReadState"/>
|
||||
<element name="TControl.ReadState">
|
||||
<short>Updates control flags and reads the data for the component.</short>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="#rtl.classes.TComponent">TComponent</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TControl.ReadState.Reader">
|
||||
<short/>
|
||||
<short>TReader instance used to read the component data. </short>
|
||||
</element>
|
||||
|
||||
<element name="TControl.Loaded">
|
||||
@ -7702,14 +7780,26 @@
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.controls.TControl.Name" name="TControl.SetName"/>
|
||||
<element name="TControl.SetName">
|
||||
<short>Sets the value for the Name property.</short>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="#rtl.classes.TComponent.Name">TComponent.Name</link>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TControl.SetName.Value">
|
||||
<short/>
|
||||
<short>New value for the Name property.</short>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.controls.TControl.Parent" name="TControl.SetParent"/>
|
||||
<element name="TControl.SetParent">
|
||||
<short>Sets the value for the Parent property.</short>
|
||||
<descr/>
|
||||
<seealso>
|
||||
<link id="TControl.Parent"/>
|
||||
</seealso>
|
||||
</element>
|
||||
<element name="TControl.SetParent.NewParent">
|
||||
<short/>
|
||||
<short>New value for the the Parent property.</short>
|
||||
</element>
|
||||
|
||||
<element name="TControl.SetParentComponent">
|
||||
@ -8076,18 +8166,20 @@
|
||||
</element>
|
||||
|
||||
<element name="TControl.DoScaleFontPPI">
|
||||
<short/>
|
||||
<short>
|
||||
Adjusts the height for a Font to the specified pixels per inch.
|
||||
</short>
|
||||
<descr/>
|
||||
<seealso/>
|
||||
</element>
|
||||
<element name="TControl.DoScaleFontPPI.AFont">
|
||||
<short/>
|
||||
<short>Font examined and updated in the method.</short>
|
||||
</element>
|
||||
<element name="TControl.DoScaleFontPPI.AToPPI">
|
||||
<short/>
|
||||
<short>Pixels per inch setting adjusted in the method.</short>
|
||||
</element>
|
||||
<element name="TControl.DoScaleFontPPI.AProportion">
|
||||
<short/>
|
||||
<short>Scaling factor a applied to the font.</short>
|
||||
</element>
|
||||
|
||||
<element name="TControl.GetActionLinkClass">
|
||||
@ -10835,7 +10927,7 @@
|
||||
<short>Control which owns the class instance.</short>
|
||||
</element>
|
||||
|
||||
<element link="#rtl.classes.TPersistent.Assign" name="TControlChildSizing.Assign"/>
|
||||
<element name="TControlChildSizing.Assign" link="#rtl.classes.TPersistent.Assign" />
|
||||
<element name="TControlChildSizing.Assign.Source">
|
||||
<short/>
|
||||
</element>
|
||||
@ -14691,7 +14783,7 @@ if MyControl.CanSetFocus then
|
||||
<short/>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.lclclasses.TLCLComponent.WSRegisterClass" name="TGraphicControl.WSRegisterClass"/>
|
||||
<element name="TGraphicControl.WSRegisterClass" link="#lcl.controls.TControl.WSRegisterClass"/>
|
||||
|
||||
<element link="#lcl.controls.TControl.FontChanged" name="TGraphicControl.FontChanged"/>
|
||||
<element name="TGraphicControl.FontChanged.Sender">
|
||||
@ -14868,18 +14960,19 @@ if MyControl.CanSetFocus then
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element link="#lcl.ImgList.TCustomImageList" name="TImageList"/>
|
||||
<element link="#lcl.ImgList.TCustomImageList.AllocBy" name="TImageList.AllocBy"/>
|
||||
<element link="#lcl.ImgList.TCustomImageList.BlendColor" name="TImageList.BlendColor"/>
|
||||
<element link="#LCL.ImgList.TCustomImageList.BkColor" name="TImageList.BkColor"/>
|
||||
<element link="#LCL.ImgList.TCustomImageList.DrawingStyle" name="TImageList.DrawingStyle"/>
|
||||
<element link="#LCL.ImgList.TCustomImageList.Height" name="TImageList.Height"/>
|
||||
<element link="#LCL.ImgList.TCustomImageList.ImageType" name="TImageList.ImageType"/>
|
||||
<element link="#LCL.ImgList.TCustomImageList.Masked" name="TImageList.Masked"/>
|
||||
<element link="#LCL.ImgList.TCustomImageList.Scaled" name="TImageList.Scaled"/>
|
||||
<element link="#LCL.ImgList.TCustomImageList.ShareImages" name="TImageList.ShareImages"/>
|
||||
<element link="#LCL.ImgList.TCustomImageList.OnChange" name="TImageList.OnChange"/>
|
||||
<element link="#LCL.ImgList.TCustomImageList.OnGetWidthForPPI" name="TImageList.OnGetWidthForPPI"/>
|
||||
<element link="#lcl.imglist.TCustomImageList" name="TImageList"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.AllocBy" name="TImageList.AllocBy"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.BlendColor" name="TImageList.BlendColor"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.BkColor" name="TImageList.BkColor"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.DrawingStyle" name="TImageList.DrawingStyle"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.Height" name="TImageList.Height"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.ImageType" name="TImageList.ImageType"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.Masked" name="TImageList.Masked"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.Scaled" name="TImageList.Scaled"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.ShareImages" name="TImageList.ShareImages"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.Width" name="TImageList.Width"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.OnChange" name="TImageList.OnChange"/>
|
||||
<element link="#lcl.imglist.TCustomImageList.OnGetWidthForPPI" name="TImageList.OnGetWidthForPPI"/>
|
||||
|
||||
<element name="TControlPropertyStorage">
|
||||
<short/>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -2239,7 +2239,7 @@
|
||||
<short>New value for the property.</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomImage.WSRegisterClass" link="#lcl.lclclasses.TLCLComponent.WSRegisterClass"/>
|
||||
<element name="TCustomImage.WSRegisterClass" link="#lcl.controls.TGraphicControl.WSRegisterClass"/>
|
||||
|
||||
<element name="TCustomImage.PictureChanged">
|
||||
<short>Performs actions needed when the Picture property has been changed.</short>
|
||||
@ -2427,7 +2427,7 @@
|
||||
</element>
|
||||
|
||||
<element name="TCustomImage.KeepOriginXWhenClipped">
|
||||
<short/>
|
||||
<short>Preserves the Left coordinate when a clipped image is centered.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <b>False</b>.
|
||||
@ -2437,7 +2437,7 @@
|
||||
</element>
|
||||
|
||||
<element name="TCustomImage.KeepOriginYWhenClipped">
|
||||
<short/>
|
||||
<short>Preserves the Top coordinate when a clipped image is centered.</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <b>False</b>.
|
||||
@ -2498,7 +2498,9 @@
|
||||
</element>
|
||||
|
||||
<element name="TCustomImage.StretchOutEnabled">
|
||||
<short/>
|
||||
<short>
|
||||
Allows the image to be resized proportionally when the image drawing area is resized.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <b>True</b>.
|
||||
@ -2508,7 +2510,9 @@
|
||||
</element>
|
||||
|
||||
<element name="TCustomImage.StretchInEnabled">
|
||||
<short/>
|
||||
<short>
|
||||
Allows the image to be resized proportionally when the image drawing area is resized.
|
||||
</short>
|
||||
<descr>
|
||||
<p>
|
||||
The default value for the property is <b>True</b>.
|
||||
@ -5029,7 +5033,20 @@
|
||||
</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomPanel.Color" link="#lcl.controls.TControl.Color"/>
|
||||
<element name="TCustomPanel.Color">
|
||||
<short>Contains the background color for the panel.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>Color</var> is a <var>TColor</var> property with the background color for the panel. It sets the default value for the property.
|
||||
</p>
|
||||
<p>
|
||||
The default value in Color is the same as the value in the parent window Color property. If the color is clDefault , the result will need to be resolved using the <var>GetDefaultColor</var> method. Convenience routines which obtain the color by resolving clDefault and ParentColor are also provided in <var>TControl.GetColorResolvingParent</var> and <var>TControl.GetRGBColorResolvingParent</var>.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="#lcl.controls.TControl.Color">TControl.Color</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomPanel.FullRepaint">
|
||||
<short>
|
||||
|
@ -7,7 +7,7 @@
|
||||
====================================================================
|
||||
-->
|
||||
<module name="Graphics">
|
||||
<short>Contains definitions for classes and types used in graphic applications.</short>
|
||||
<short>Contains classes and types used in graphic applications.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<file>graphics.pp</file> contains classes, types, and routines used to represent graphic images in a Lazarus Component Library (<b>LCL</b>) application. The following classes are added to the registered class list used by the Run-time Library (<b>RTL</b>):
|
||||
|
@ -4645,6 +4645,20 @@
|
||||
</element>
|
||||
|
||||
<element name="TCustomListBox.OnUTF8KeyPress" link="#lcl.controls.TWinControl.OnUTF8KeyPress"/>
|
||||
|
||||
<element name="TCustomListBox.Options">
|
||||
<short>Contains options enabled for the list box control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>Options</var> is a <var>TListBoxOptions</var> property with the options enabled for the list box control. The values in the property are assigned in the <var>Create</var> constructor, and used when the <var>LM_DrawListItem</var> message is handled for the control.
|
||||
</p>
|
||||
<p>
|
||||
The default value for the property is <b>[lboDrawFocusRect]</b>, and draws a focus rectangle for the selected item in the list box.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso/>
|
||||
</element>
|
||||
|
||||
<element name="TCustomListBox.Visible" link="#lcl.controls.TControl.Visible"/>
|
||||
|
||||
<element name="TListBox">
|
||||
@ -8558,6 +8572,25 @@ end;
|
||||
<short>Owner of the class instance.</short>
|
||||
</element>
|
||||
|
||||
<element name="TCustomCheckBox.Alignment">
|
||||
<short>Indicates the alignment for the caption text in the control.</short>
|
||||
<descr>
|
||||
<p>
|
||||
<var>Alignment</var> is a <var>TLeftRight</var> property with the horizontal alignment for the caption text relative to the check box. The default value for the property is <var>taRightJustify</var>, and causes the text to be drawn to the right of the check box. Use <var>taLeftJustify</var> to draw the caption text in front of the check box.
|
||||
</p>
|
||||
<p>
|
||||
Changing the value for the property causes the widgetset class to be updated when its <var>Handle</var> has been allocated.
|
||||
</p>
|
||||
<p>
|
||||
The value in Alignment is used to set the creation parameters for the control.
|
||||
</p>
|
||||
</descr>
|
||||
<seealso>
|
||||
<link id="TCustomCheckBox.CreateParams"/>
|
||||
<link id="#rtl.classes.TLeftRight">TLeftRight</link>
|
||||
</seealso>
|
||||
</element>
|
||||
|
||||
<element name="TCustomCheckBox.AllowGrayed">
|
||||
<short>Allows the check box to use a "grayed" state.</short>
|
||||
<descr>
|
||||
|
Loading…
Reference in New Issue
Block a user