Difference between revisions of "Additional tab"

From Free Pascal wiki
Jump to navigationJump to search
m
(2 intermediate revisions by one other user not shown)
Line 22: Line 22:
 
== [[doc:lcl/extctrls/timage.html|TImage]] ==  
 
== [[doc:lcl/extctrls/timage.html|TImage]] ==  
 
[[Image:timage.png]]
 
[[Image:timage.png]]
 +
 +
Usage:[[TImage]]
  
 
Clicking on the ellipsis (...) next to the ''Picture'' entry in the Object Inspector at design-time opens a load picture  dialog which can be select image.  
 
Clicking on the ellipsis (...) next to the ''Picture'' entry in the Object Inspector at design-time opens a load picture  dialog which can be select image.  
Line 55: Line 57:
  
 
== [[doc:lcl/extctrls/tnotebook.html|TNotebook]] ==  
 
== [[doc:lcl/extctrls/tnotebook.html|TNotebook]] ==  
[[Image:tnotebook.png]]
+
[[Image:tnotebook.png]] For a comparison between TNotebook and related controls: [[doc:lcl/extctrls/multi-pagecontrols.html]]
  
 
== [[doc:lcl/extctrls/tlabelededit.html|TLabeledEdit]] ==  
 
== [[doc:lcl/extctrls/tlabelededit.html|TLabeledEdit]] ==  
Line 62: Line 64:
 
== [[doc:lcl/extctrls/tsplitter.html|TSplitter]] ==  
 
== [[doc:lcl/extctrls/tsplitter.html|TSplitter]] ==  
 
[[Image:tsplitter.png]]
 
[[Image:tsplitter.png]]
 +
 +
Usage:[[TSplitter]]
  
 
== [[doc:lcl/maskedit/tmaskedit.html|TMaskEdit]] ==  
 
== [[doc:lcl/maskedit/tmaskedit.html|TMaskEdit]] ==  

Revision as of 09:05, 16 May 2014

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

See also Lazarus Tutorial - The Component Palette

Component Palette Additional tab


Component Palette Additional.png

More, often-used components:

TBitBtn

tbitbtn.png

Puts a bitbutton in the form. The user will be able to 'click' on this button and call the onClick event handler (form class method) in your program. The programmer should supply this method to define the action to be taken.

TSpeedButton

tspeedbutton.png

Puts a speedbutton in the form. The user will be able to 'click' on this button and call the onClick event handler (form class method) in your program. The programmer should supply this method to define the action to be taken.


TImage

timage.png

Usage:TImage

Clicking on the ellipsis (...) next to the Picture entry in the Object Inspector at design-time opens a load picture dialog which can be select image.

Support graphic files of type

  • Portable Network Graphic ( *.png )
  • Bitmap ( *.bmp )
  • Joint Picture Expert Group ( *.jpeg *.jpg *.jpe *.jfif )
  • Tagged Image File Format ( *.tif *.tiff )
  • Cursor ( *.cur )
  • Icon ( *.ico )
  • Mac OS X icon ( *.icns )
  • Pixmap ( *.xpm )
  • Portable Pixmap ( *.ppm )
  • Portable Graymap ( *.pgm )
  • Portable Bitmap ( *.pbm )

TShape

tshape.png

Puts a shape in the form. Shape can select:

  • Rectangle, Square and rounded corner
  • Circle, Ellipse
  • Diamond


TBevel

tbevel.png

TPaintBox

tpaintbox.png

TNotebook

tnotebook.png For a comparison between TNotebook and related controls: doc:lcl/extctrls/multi-pagecontrols.html

TLabeledEdit

tlabelededit.png

TSplitter

tsplitter.png

Usage:TSplitter

TMaskEdit

tmaskedit.png

TCheckListBox

tchecklistbox.png

TScrollBox

tscrollbox.png

TApplicationProperties

tapplicationproperties.png

TStringGrid

tstringgrid.png

TDrawGrid

tdrawgrid.png

TPairSplitter

tpairsplitter.png

TColorBox

tcolorbox.png

TColorListBox

tcolorlistbox.png

TTrayIcon

Read more about this component in the TTrayIcon wiki page

See also