Difference between revisions of "Additional tab"

From Free Pascal wiki
Jump to navigationJump to search
m
(8 intermediate revisions by 4 users 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.  
  
 
Support graphic files of type
 
Support graphic files of type
* portable network graphic ( *.png )
+
* Portable Network Graphic ( *.png )
* bitmap ( *.bmp )
+
* Bitmap ( *.bmp )
* icon ( *.ico )
+
* Joint Picture Expert Group ( *.jpeg *.jpg *.jpe *.jfif )
* pixmap ( *.xpm )
+
* Tagged Image File Format ( *.tif *.tiff )
* portable pixmap ( *.ppm )
+
* Cursor ( *.cur )
* portable graymap ( *.pgm )
+
* Icon ( *.ico )
* portable bitmap ( *.pbm )
+
* Mac OS X icon ( *.icns )
 +
* Pixmap ( *.xpm )
 +
* Portable Pixmap ( *.ppm )
 +
* Portable Graymap ( *.pgm )
 +
* Portable Bitmap ( *.pbm )
  
 
== [[doc:lcl/extctrls/tshape.html|TShape]] ==  
 
== [[doc:lcl/extctrls/tshape.html|TShape]] ==  
Line 51: 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 58: 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]] ==  
Line 73: Line 81:
 
== [[doc:lcl/grids/tstringgrid.html|TStringGrid]] ==  
 
== [[doc:lcl/grids/tstringgrid.html|TStringGrid]] ==  
 
[[Image:tstringgrid.png]]
 
[[Image:tstringgrid.png]]
 +
 +
* [[Grids Reference Page]]
  
 
== [[doc:lcl/grids/tdrawgrid.html|TDrawGrid]] ==
 
== [[doc:lcl/grids/tdrawgrid.html|TDrawGrid]] ==
 
[[Image:tdrawgrid.png]]
 
[[Image:tdrawgrid.png]]
 +
 +
* [[Grids Reference Page]]
  
 
== [[doc:lcl/pairsplitter/tpairsplitter.html|TPairSplitter]] ==
 
== [[doc:lcl/pairsplitter/tpairsplitter.html|TPairSplitter]] ==
 
[[Image:tpairsplitter.png]]
 
[[Image:tpairsplitter.png]]
  
== TColorBox ==
+
== [[doc:lcl/colorbox/tcolorbox.html| TColorBox]] ==
 
[[Image:tcolorbox.png]]
 
[[Image:tcolorbox.png]]
  
== TColorListBox ==
+
== [[doc:lcl/colorbox/tcolorlistbox.html|TColorListBox]] ==
 
[[Image:tcolorlistbox.png]]
 
[[Image:tcolorlistbox.png]]
  
== TChart ==
+
== [[doc:lcl/extctrls/ttrayicon.html |TTrayIcon]] ==
[[Image:tchart.png]]
+
Read more about this component in the [[TrayIcon|TTrayIcon wiki page]]
  
 
= See also =
 
= See also =
Line 94: Line 106:
 
* [[Common Controls tab]]
 
* [[Common Controls tab]]
 
* [[Dialogs tab]]
 
* [[Dialogs tab]]
 +
 +
[[Category:Lazarus]]

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