Difference between revisions of "Standard tab"

From Lazarus wiki
Jump to navigationJump to search
(use wiki links (but they are not correct yet))
Line 9: Line 9:
 
Puts a standard menu bar in the form. To change the contents double-click on the icon in the form.
 
Puts a standard menu bar in the form. To change the contents double-click on the icon in the form.
  
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tmainmenu.html TMainMenu]
+
[[doc:lcl/menus/tmainmenu.html|TMainMenu]]
  
 
== TPopupMenu ==
 
== TPopupMenu ==
Line 16: Line 16:
  
 
Puts a popup menu in the form. This creates a menu that appears when the user right clicks on an object. To change the contents double-click on the icon on the form.
 
Puts a popup menu in the form. This creates a menu that appears when the user right clicks on an object. To change the contents double-click on the icon on the form.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tpopupmenu.html TPopupMenu]
+
[[doc:lcl/menus/tpopupmenu.html|TPopupMenu]]
  
 
== TButton ==
 
== TButton ==
Line 24: Line 24:
 
Puts a button in the form. The user will be able to 'click' on this button and have this execute an Event that will call a onClick -procedure (form class method) in your program.
 
Puts a button in the form. The user will be able to 'click' on this button and have this execute an Event that will call a onClick -procedure (form class method) in your program.
  
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tbutton.html TButton]
+
[[doc:lcl/menus/tbutton.html|TButton]]
  
 
== TLabel ==
 
== TLabel ==
Line 31: Line 31:
  
 
Puts text in the form.
 
Puts text in the form.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tlabel.html TLabel]
+
[[doc:lcl/menus/tlabel.html|TLabel]]
  
 
== TEdit ==
 
== TEdit ==
Line 38: Line 38:
  
 
Allows the user to input text.  
 
Allows the user to input text.  
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tedit.html TEdit]
+
[[doc:lcl/menus/tedit.html|TEdit]]
  
 
== TMemo ==
 
== TMemo ==
Line 46: Line 46:
 
Memos are places where you can put lines of text. Use this if you want to allow your user to enter messages or notes, etc.  
 
Memos are places where you can put lines of text. Use this if you want to allow your user to enter messages or notes, etc.  
  
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tmemo.html TMemo]
+
[[doc:lcl/menus/tmemo.html|TMemo]]
  
 
== TToggleBox ==
 
== TToggleBox ==
Line 53: Line 53:
  
 
Puts togglebox in the form.
 
Puts togglebox in the form.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/ttogglebox.html TToggleBox]
+
[[doc:lcl/menus/ttogglebox.html|TToggleBox]]
  
 
== TCheckBox ==
 
== TCheckBox ==
Line 60: Line 60:
  
 
Allow the user to switch them on and off.
 
Allow the user to switch them on and off.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tcheckbox.html TCheckBox]
+
[[doc:lcl/menus/tcheckbox.html|TCheckBox]]
  
 
== TRadioButton ==
 
== TRadioButton ==
Line 67: Line 67:
  
 
Allow the user to switch them on and off. But only one can be selected.
 
Allow the user to switch them on and off. But only one can be selected.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tradiobutton.html TRadioButton]
+
[[doc:lcl/menus/tradiobutton.html|TRadioButton]]
  
 
== TListBox ==
 
== TListBox ==
Line 74: Line 74:
  
 
Display list. User can select an entry by clicking on it.
 
Display list. User can select an entry by clicking on it.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tlistbox.html TListBox]
+
[[doc:lcl/menus/tlistbox.html|TListBox]]
  
 
== TComboBox ==
 
== TComboBox ==
Line 81: Line 81:
  
 
Display list. User can select an entry by clicking on it.
 
Display list. User can select an entry by clicking on it.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tcombobox.html TComboBox]
+
[[doc:lcl/menus/tcombobox.html|TComboBox]]
  
 
== TScrollBar ==
 
== TScrollBar ==
Line 88: Line 88:
  
 
A ScrollBar can be used on forms for Text, Graphics, Volume Controls, and the like. The slider  is moved via user interaction. The software detects the new position and performs some function.  
 
A ScrollBar can be used on forms for Text, Graphics, Volume Controls, and the like. The slider  is moved via user interaction. The software detects the new position and performs some function.  
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tscrollbar.html TScrollBar]
+
[[doc:lcl/menus/tscrollbar.html|TScrollBar]]
  
 
== TGroupBox ==
 
== TGroupBox ==
Line 95: Line 95:
  
 
It acts as a presentational container for other control.
 
It acts as a presentational container for other control.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tgroupbox.html TGroupBox]
+
[[doc:lcl/menus/tgroupbox.html|TGroupBox]]
  
 
== TStaticText ==
 
== TStaticText ==
Line 101: Line 101:
 
[[Image:tstatictext.png]]
 
[[Image:tstatictext.png]]
  
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tstatictext.html TStaticText]
+
[[doc:lcl/menus/tstatictext.html|TStaticText]]
  
 
== TRadioGroup ==
 
== TRadioGroup ==
Line 107: Line 107:
 
[[Image:tradiogroup.png]]
 
[[Image:tradiogroup.png]]
  
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tradiogroup.html TRadioGroup]
+
[[doc:lcl/menus/tradiogroup.html|TRadioGroup]]
  
 
== TCheckGroup ==
 
== TCheckGroup ==
Line 114: Line 114:
  
 
To edit CheckGroup contents double-click  on the icon on the form. It's open CheckGroup Editor.
 
To edit CheckGroup contents double-click  on the icon on the form. It's open CheckGroup Editor.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tcheckgroup.html TCheckGroup]
+
[[doc:lcl/stdctrls/tcheckgroup.html|TCheckGroup]]
  
 
== TPanel ==
 
== TPanel ==
Line 121: Line 121:
  
 
Puts panel in the form. It acts as a presentational container for other control.
 
Puts panel in the form. It acts as a presentational container for other control.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tpanel.html TPanel]
+
[[doc:lcl/menus/tpanel.html|TPanel]]
  
 
== TActionList ==
 
== TActionList ==
Line 128: Line 128:
  
 
To edit actionlist contents double-click on the icon on the form. It's open Action List Editor.
 
To edit actionlist contents double-click on the icon on the form. It's open Action List Editor.
[http://lazarus-ccr.sourceforge.net/docs/lcl/menus/tactionlist.html TActionList]
+
[[doc:lcl/menus/tactionlist.html|TActionList]]

Revision as of 16:40, 4 March 2008

See also Lazarus Tutorial#The Component Palette

Component Palette Standard tab

TMainMenu

tmainmenu.png

Puts a standard menu bar in the form. To change the contents double-click on the icon in the form.

TMainMenu

TPopupMenu

tpopupmenu.png

Puts a popup menu in the form. This creates a menu that appears when the user right clicks on an object. To change the contents double-click on the icon on the form. TPopupMenu

TButton

tbutton.png

Puts a button in the form. The user will be able to 'click' on this button and have this execute an Event that will call a onClick -procedure (form class method) in your program.

TButton

TLabel

tlabel.png

Puts text in the form. TLabel

TEdit

tedit.png

Allows the user to input text. TEdit

TMemo

tmemo.png

Memos are places where you can put lines of text. Use this if you want to allow your user to enter messages or notes, etc.

TMemo

TToggleBox

ttogglebox.png

Puts togglebox in the form. TToggleBox

TCheckBox

tcheckbox.png

Allow the user to switch them on and off. TCheckBox

TRadioButton

tradiobutton.png

Allow the user to switch them on and off. But only one can be selected. TRadioButton

TListBox

tlistbox.png

Display list. User can select an entry by clicking on it. TListBox

TComboBox

tcombobox.png

Display list. User can select an entry by clicking on it. TComboBox

TScrollBar

tscrollbar.png

A ScrollBar can be used on forms for Text, Graphics, Volume Controls, and the like. The slider is moved via user interaction. The software detects the new position and performs some function. TScrollBar

TGroupBox

tgroupbox.png

It acts as a presentational container for other control. TGroupBox

TStaticText

tstatictext.png

TStaticText

TRadioGroup

tradiogroup.png

TRadioGroup

TCheckGroup

tcheckgroup.png

To edit CheckGroup contents double-click on the icon on the form. It's open CheckGroup Editor. TCheckGroup

TPanel

tpanel.png

Puts panel in the form. It acts as a presentational container for other control. TPanel

TActionList

tactionlist.png

To edit actionlist contents double-click on the icon on the form. It's open Action List Editor. TActionList