Difference between revisions of "Standard tab"

From Lazarus wiki
Jump to navigationJump to search
(Tłumaczenie nagłówka tabeli)
(Undo revision 147574 by Slawek (talk))
Tag: Undo
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
{{Standard_tab}}
 
{{Standard_tab}}
  
'''Zakładka Standard''' na [[Component Palette|Palecie komponentów]] zawiera podstawowe komponenty do użycia w formularzu.
+
The '''Standard tab''' on the [[Component Palette]] lists elementary components for use on a form.
  
 
[[Image:Component_Palette_Standard.png|size="100%"]]
 
[[Image:Component_Palette_Standard.png|size="100%"]]
Line 7: Line 7:
 
{| class="wikitable sortable"
 
{| class="wikitable sortable"
 
|-
 
|-
! Ikona !! Komponent !! Opis !! Dokumenty online
+
! Icon !! Component !! Description !! Online Docs
 
|-
 
|-
| [[Image:tmainmenu.png]]    || [[TMainMenu]]  || Menu u góry formularza.
+
| [[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]] || Menu kontekstowe, które może wyskakiwać na predefiniowanych zdarzeniach, zwykle po kliknięciu prawym przyciskiem myszy.
+
| [[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]]    || Wyświetla przycisk z podpisem.
+
| [[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]]    || Opisowe pole tekstowe, nieedytowalne.
+
| [[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]]      || Jednowierszowe pole edycji tekstu.
+
| [[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]]      || Wielowierszowe pole edycji tekstu.
+
| [[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]]  || Dwustanowy przycisk oznaczony etykietą. Podobny do [[TButton]], ale pozostaje wciśnięty po kliknięciu i jest zwalniany po kolejnym kliknięciu.
+
| [[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]]    || Pole wyboru. Przycisk ON/OFF wskazujący stan ON za pomocą znacznika wyboru.
+
| [[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]] || Przycisk radiowy. Przycisk ON/OFF do użycia w połączeniu z innymi przyciskami TRadioButton tak, że tylko jeden z nich może być włączony.
+
| [[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]]    || Pokazuje listę ciągów znaków typu string, z których użytkownik może dokonać wyboru.
+
| [[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]]    || Połączenie pola edycyjnego z listą rozwijaną do wyboru.
+
| [[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]   
 
|-
 
|-
| [[Image:tscrollbar.png]]  || [[TScrollBar]]  || Umożliwia użytkownikowi przewijanie zawartości powiązanej kontrolki poprzez przesuwanie suwaka.
+
| [[Image:tscrollbar.png]]  || [[TScrollBar]]  || allows the user to scroll the content of an associated control by moving an slider.  
 
||[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]]    || Kontener pozwalający na fizyczne i koncepcyjne grupowanie kilku obiektów.
+
| [[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]]  || Grupa powiązanych, ale wzajemnie wykluczających się TRadioButtons, wymagająca od użytkownika wyboru jednej z zestawu alternatyw. To jak TGroupBox ze zintegrowanymi przyciskami TRadioButton.
+
| [[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]]  || Grupa elementów TCheckBox fizycznie i logicznie zgrupowanych razem w komponencie kontenera.
+
| [[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]]      || Wizualny kontener na inne komponenty.
+
| [[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]]      || Pojemnik na komponenty, które można osadzać w formularzach lub innych ramkach.
+
| [[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]]  || Lista [[TAction]] do scentralizowania obsługi menu/myszy/klawiatury.
+
| [[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]  
 
|}
 
|}
  
==Zobacz także==
+
== See also ==
 
* [http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/index-4.html stdctrls doc]
 
* [http://lazarus-ccr.sourceforge.net/docs/lcl/stdctrls/index-4.html stdctrls doc]
  
 
{{NavComponentPalette}}
 
{{NavComponentPalette}}

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