Difference between revisions of "Standard tab"

From Lazarus wiki
Jump to navigationJump to search
(Add link to Online Docs for components on Standard palette)
(Undo revision 147574 by Slawek (talk))
Tag: Undo
 
(6 intermediate revisions by 2 users not shown)
Line 9: Line 9:
 
! Icon !! Component !! Description !! Online Docs
 
! Icon !! Component !! Description !! Online Docs
 
|-
 
|-
| [[Image:tmainmenu.png]]    || [[TMainMenu]]  || a menu at the top of the form
+
| [[Image:tmainmenu.png]]    || [[TMainMenu]]  || menu at the top of the form
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tmainmenu.html Link]
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tmainmenu.html Link]
 
|-
 
|-
| [[Image:tpopupmenu.png]]  || [[TPopupMenu]] || arranges a menu that may popup on predefined events
+
| [[Image:tpopupmenu.png]]  || [[TPopupMenu]] || context menu that may popup on predefined events, usually by a click with the right mouse button
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tpopupmenu.html Link]
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tpopupmenu.html Link]
 
|-
 
|-
| [[Image:tbutton.png]]      || [[TButton]]    || displays a (text) button  
+
| [[Image:tbutton.png]]      || [[TButton]]    || displays a button with a caption.
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tbutton.html Link]  
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tbutton.html Link]  
 
|-
 
|-
| [[Image:tlabel.png]]      || [[TLabel]]    || displays a label
+
| [[Image:tlabel.png]]      || [[TLabel]]    || descriptive text field, not editable
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tlabel.html Link]  
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tlabel.html Link]  
 
|-  
 
|-  
| [[Image:tedit.png]]        || [[TEdit]]      || (text) edit field
+
| [[Image:tedit.png]]        || [[TEdit]]      || single-line text edit field
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tedit.html Link]
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tedit.html Link]
 
|-
 
|-
| [[Image:tmemo.png]]        || [[TMemo]]      || an area where multiline scrollable text can be displayed/edited
+
| [[Image:tmemo.png]]        || [[TMemo]]      || multi-line text edit field
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tmemo.html Link]
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tmemo.html Link]
 
|-
 
|-
| [[Image:ttogglebox.png]]  || [[TToggleBox]]  || a two state labeled button that is enabled or disabled with a single click.  
+
| [[Image:ttogglebox.png]]  || [[TToggleBox]]  || two-state labeled button. Similar to [[TButton]], but stays pressed after the click and is released by the next click.
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/ttogglebox.html Link]
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/ttogglebox.html Link]
 
|-
 
|-
| [[Image:tcheckbox.png]]    || [[TCheckBox]]    || an active checkbox field
+
| [[Image:tcheckbox.png]]    || [[TCheckBox]]    || ON/OFF button indicating the ON state by means of a checkmark
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tcheckbox.html Link]  
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tcheckbox.html Link]  
 
|-
 
|-
| [[Image:tradiobutton.png]] || [[TRadioButton]] || a radio-button field to be used in conjunction with other TRadioButtons
+
| [[Image:tradiobutton.png]] || [[TRadioButton]] || ON/OFF button to be used in conjunction with other TRadioButtons such that only one of them can be ON.
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tradiobutton.html Link]  
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tradiobutton.html Link]  
 
|-
 
|-
| [[Image:tlistbox.png]]    || [[TListBox]]    || shows a list of strings where user can make a selection from
+
| [[Image:tlistbox.png]]    || [[TListBox]]    || shows a list of strings from which the user can make a selection
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tlistbox.html Link]
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tlistbox.html Link]
 
|-
 
|-
| [[Image:tcombobox.png]]    || [[TComboBox]]    || a combination of an edit field with a connected drop down list to choose from.
+
| [[Image:tcombobox.png]]    || [[TComboBox]]    || combination of an edit field with a connected drop down list to choose from.
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tcombobox.html Link]   
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tcombobox.html Link]   
 
|-
 
|-
Line 45: Line 45:
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tscrollbar.html Link]
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tscrollbar.html Link]
 
|-
 
|-
| [[Image:tgroupbox.png]]    || [[TGroupBox]]    || a container that allows a number of objects to be grouped physically and conceptually on a form
+
| [[Image:tgroupbox.png]]    || [[TGroupBox]]    || container that allows several objects to be grouped physically and conceptually
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tgroupbox.html Link]
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/tgroupbox.html Link]
 
|-
 
|-
| [[Image:tradiogroup.png]]  || [[TRadioGroup]]  || a group of related but mutually exclusive TRadioButtons, requiring the user to select one of a set of alternatives. It's like a TGroupBox with integrated TRadioButtons
+
| [[Image:tradiogroup.png]]  || [[TRadioGroup]]  || group of related but mutually exclusive TRadioButtons, requiring the user to select one of a set of alternatives. It's like a TGroupBox with integrated TRadioButtons
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/extctrls/tradiogroup.html Link]  
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/extctrls/tradiogroup.html Link]  
 
|-
 
|-
| [[Image:tcheckgroup.png]]  || [[TCheckGroup]]  || a group of TCheckBox items physically and logically grouped together on a container component.  
+
| [[Image:tcheckgroup.png]]  || [[TCheckGroup]]  || group of TCheckBox items physically and logically grouped together on a container component.  
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/extctrls/tcheckgroup.html Link]
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/extctrls/tcheckgroup.html Link]
 
|-
 
|-
| [[Image:tpanel.png]]      || [[TPanel]]      || a visible container for other components  
+
| [[Image:tpanel.png]]      || [[TPanel]]      || visible container for other components  
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/extctrls/tpanel.html Link]  
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/extctrls/tpanel.html Link]  
 
|-
 
|-
| [[Image:tframe.png]]      || [[TFrame]]      || a container for components that can be embedded into forms or other frames
+
| [[Image:tframe.png]]      || [[TFrame]]      || container for components that can be embedded into forms or other frames
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/actnlist/tframe.html Link]  
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/actnlist/tframe.html Link]  
 
|-
 
|-
| [[Image:tactionlist.png]]  || [[TActionList]]  || a list of [[TAction]]s to centralize menu/mouse/keyboard handling
+
| [[Image:tactionlist.png]]  || [[TActionList]]  || list of [[TAction]]s to centralize menu/mouse/keyboard handling
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/actnlist/tactionlist.html Link]  
 
||[http://lazarus-ccr.sourceforge.net/docs/lcl/actnlist/tactionlist.html Link]  
 
|}
 
|}

Latest revision as of 01:06, 1 November 2021

English (en) español (es) suomi (fi) français (fr) 日本語 (ja) polski (pl) русский (ru)

The Standard tab on the Component Palette lists elementary components for use on a form.

size="100%"

Icon Component Description Online Docs
tmainmenu.png TMainMenu menu at the top of the form Link
tpopupmenu.png TPopupMenu context menu that may popup on predefined events, usually by a click with the right mouse button Link
tbutton.png TButton displays a button with a caption. Link
tlabel.png TLabel descriptive text field, not editable Link
tedit.png TEdit single-line text edit field Link
tmemo.png TMemo multi-line text edit field Link
ttogglebox.png TToggleBox two-state labeled button. Similar to TButton, but stays pressed after the click and is released by the next click. Link
tcheckbox.png TCheckBox ON/OFF button indicating the ON state by means of a checkmark Link
tradiobutton.png TRadioButton ON/OFF button to be used in conjunction with other TRadioButtons such that only one of them can be ON. Link
tlistbox.png TListBox shows a list of strings from which the user can make a selection Link
tcombobox.png TComboBox combination of an edit field with a connected drop down list to choose from. Link
tscrollbar.png TScrollBar allows the user to scroll the content of an associated control by moving an slider. Link
tgroupbox.png TGroupBox container that allows several objects to be grouped physically and conceptually Link
tradiogroup.png TRadioGroup group of related but mutually exclusive TRadioButtons, requiring the user to select one of a set of alternatives. It's like a TGroupBox with integrated TRadioButtons Link
tcheckgroup.png TCheckGroup group of TCheckBox items physically and logically grouped together on a container component. Link
tpanel.png TPanel visible container for other components Link
tframe.png TFrame container for components that can be embedded into forms or other frames Link
tactionlist.png TActionList list of TActions to centralize menu/mouse/keyboard handling Link

See also

Component Palette
Standard - Additional - Common Controls - Dialogs - Data Controls - Data Access - System - Misc - LazControls - RTTI - SQLdb - Pascal Script - SynEdit - Chart - IPro