Difference between revisions of "LCL Components"

From Free Pascal wiki
Jump to navigationJump to search
(→‎SynEdit: Update component links mentioned on the page for SynEdit palette)
(→‎SynEdit: Add components on Chart palette)
Line 70: Line 70:
 
** [[TCHMHelpDatabase]] and [[TLHelpConnector]], included in Lazarus and installed automatically with make bigide
 
** [[TCHMHelpDatabase]] and [[TLHelpConnector]], included in Lazarus and installed automatically with make bigide
  
== [[SynEdit]] ==
+
== [[SynEdit_tab|SynEdit tab]] ==
 
<center>[[Image:Component_Palette_SynEdit.png]]</center>
 
<center>[[Image:Component_Palette_SynEdit.png]]</center>
 
SynEdit is an advanced multi-line edit control, which is integrated into the Lazarus. It is the code editor of the Lazarus IDE and is available in the directory "lazarus/components/synedit". It supports Syntax Highlighting, code completion, code folding and includes exporters for html, tex and rtf. It is a fully custom drawn component, meaning that it doesn't wrap native controls of each platform and that no external library is required; this make SynEdit a crossplatform component. Note that the SynEdit available with Lazarus is a fork of the original SynEdit for Borland Delphi, Kylix  and C++Builder which can be found in [http://synedit.sourceforge.net synedit at sourceforge]
 
SynEdit is an advanced multi-line edit control, which is integrated into the Lazarus. It is the code editor of the Lazarus IDE and is available in the directory "lazarus/components/synedit". It supports Syntax Highlighting, code completion, code folding and includes exporters for html, tex and rtf. It is a fully custom drawn component, meaning that it doesn't wrap native controls of each platform and that no external library is required; this make SynEdit a crossplatform component. Note that the SynEdit available with Lazarus is a fork of the original SynEdit for Borland Delphi, Kylix  and C++Builder which can be found in [http://synedit.sourceforge.net synedit at sourceforge]
Line 76: Line 76:
 
Components installed by default:
 
Components installed by default:
 
* [[TSynEdit]], [[TSynCompletion]], [[TSynAutoComplete]], [[TSynMacroRecorder]], [[TSynExporterHTML]], [[TSynPluginSyncroEdit]], [[TSynPasSyn]], [[TSynFreePascalSyn]], [[TSynCppSyn]], [[TSynJavaSyn]], [[TSynJSSyn]], [[TSynPerlSyn]], [[TSynHTMLSyn]], [[TSynXMLSyn]], [[TSynLFMSyn]], [[TSSynDiffSyn]], [[TSynUNIXShellScriptSyn]], [[TSynCssSyn]], [[TSynPHPSyn]], [[TSynTeXSyn]], [[TSynSQLSyn]], [[TSynPythonSyn]], [[TSynVBSyn]], [[TSynAnySyn]], [[TSynMultiSyn]], [[TSynBatSyn]], [[TSynIniSyn]], [[TSynPoSyn]]
 
* [[TSynEdit]], [[TSynCompletion]], [[TSynAutoComplete]], [[TSynMacroRecorder]], [[TSynExporterHTML]], [[TSynPluginSyncroEdit]], [[TSynPasSyn]], [[TSynFreePascalSyn]], [[TSynCppSyn]], [[TSynJavaSyn]], [[TSynJSSyn]], [[TSynPerlSyn]], [[TSynHTMLSyn]], [[TSynXMLSyn]], [[TSynLFMSyn]], [[TSSynDiffSyn]], [[TSynUNIXShellScriptSyn]], [[TSynCssSyn]], [[TSynPHPSyn]], [[TSynTeXSyn]], [[TSynSQLSyn]], [[TSynPythonSyn]], [[TSynVBSyn]], [[TSynAnySyn]], [[TSynMultiSyn]], [[TSynBatSyn]], [[TSynIniSyn]], [[TSynPoSyn]]
 +
 +
== [[Chart_tab|Chart tab]] ==
 +
<center>[[Image:Component_Palette_Chart.png]]</center>
 +
The '''Chart tab''' lists components for use with graphs and charts from the [[TAChart]] package. They are not part of the LCL, but most of them are installed by default.
 +
 +
* Components installed by default
 +
** [[TChart]], [[TAChart_documentation#List_source|TListChartSource]], [[TAChart_documentation#Random_source|TRandomChartSource]], ,[[TAChart_documentation#User-defined_source|TUserDefinedChartSource]], [[TAChart_documentation#Calculated_source|TCalculatedChartSource]], [[TAChart_documentation#Database_source|TDbChartSource]], [[TAChart_documentation#Tools|TChartToolset]], [[TAChart_documentation#Axis_transformations|TChartAxisTransformations]], [[TAChart_documentation#ChartStyles|TChartStyles]], [[TAChart_documentation#Legend_panel|TChartLegendPanel]], [[TAChart_documentation#Scroll_bars|TChartNavScrollBar]], [[TAChart_documentation#Navigation_panel|TChartNavPanel]], [[TAChart_documentation#Interval_source|TIntervalChartSource]], [[TAChart_documentation#Date-time_interval_source|TDateTimeIntervalChartSource]], [[TAChart_documentation#Chart_listbox|TChartListBox]], [[TAChart_documentation#Linked_extents|TChartExtentLink]], [[TAChart_documentation#Chart_image_list|TChartImageList]], [[TAChart_documentation#Chart_image_list|TChartCombobox]],
 +
* Components installed only if other packages are available:
 +
**[[TAChart_documentation#AggPas_drawer|TChartGUIConnectorAggPas]], [[TAChart_documentation#BGRABitmap_drawer|TChartGUIConnectorBGRA]]
  
 
[[Category:Components]]
 
[[Category:Components]]
 
[[Category:Lazarus]]
 
[[Category:Lazarus]]
 
[[Category:LCL]]
 
[[Category:LCL]]

Revision as of 09:57, 10 September 2018

English (en) 日本語 (ja) русский (ru) 中文(中国大陆)‎ (zh_CN)
Please choose the component about which you would like to know more:

Standard tab

(See also the StdCtrls unit Online Docs)

size="100%"
  • Pointer (used to indicate you are not selecting a component)

Additional tab

(See also the ExtCtrls unit Online Docs)

Component Palette Additional.png

Common Controls tab

(See also the ComCtrls unit Online Docs)

Component Palette Common Controls.png
  • Controls which are not part of the LCL, but install in this tab:
    • TRichMemo
    • TDateTimePicker (included in Lazarus and installed automatically with make bigide, but not officially part of LCL)

Dialogs tab

(See also the Dialogs unit Online Docs)

Component Palette Dialogs.png
  • Several useful Dialog procedures or functions don't appear on the palette, but are easily used as direct calls from your source program.

Misc tab

size="100%"

Data Controls tab

(See also the DBCtrls unit Online Docs)

Component Palette Data Controls.png

Data-aware components, which largely replicate the Standard and Additional groups but are applicable to Databases:

  • Also on this tab:
    • TDBDateTimePicker, which is included in Lazarus and installed automatically with make bigide, but not officially part of LCL.

Data Access tab

Component Palette Data Access.png

System tab

Component Palette System.png

SynEdit tab

Component Palette SynEdit.png

SynEdit is an advanced multi-line edit control, which is integrated into the Lazarus. It is the code editor of the Lazarus IDE and is available in the directory "lazarus/components/synedit". It supports Syntax Highlighting, code completion, code folding and includes exporters for html, tex and rtf. It is a fully custom drawn component, meaning that it doesn't wrap native controls of each platform and that no external library is required; this make SynEdit a crossplatform component. Note that the SynEdit available with Lazarus is a fork of the original SynEdit for Borland Delphi, Kylix and C++Builder which can be found in synedit at sourceforge

Components installed by default:

Chart tab

Component Palette Chart.png

The Chart tab lists components for use with graphs and charts from the TAChart package. They are not part of the LCL, but most of them are installed by default.