Difference between revisions of "TListBox"
m (added link to tutorial) |
|||
(10 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
{{TListBox}} | {{TListBox}} | ||
− | + | A '''TListBox''' [[image:tlistbox.png]] is a component that shows a (scrollable) list of (short) strings where user is to select one. It is available from the [[Standard tab]] of the [[Component Palette]]. | |
− | + | In the TListBox, the stored [[String|strings]] are stored in the property ''Items'', that is of type [[TStrings]]. Thus you can assign or remove strings in the ListBox, as in a [[TStringList]] or its parent [[TStringList-TStrings Tutorial|TStrings]]. | |
− | + | Here are a few examples of how to use a TListBox ''ListBox1'' on a form ''Form1'': | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | Here are a few examples of how to use a | ||
− | |||
− | |||
− | |||
− | |||
+ | ==Fill ListBox== | ||
+ | ===by the Object Inspector=== | ||
* Select the ListBox on your form with one click. | * Select the ListBox on your form with one click. | ||
* Go in the Object Inspector in the Properties tab on the property ''Items''. | * Go in the Object Inspector in the Properties tab on the property ''Items''. | ||
Line 28: | Line 14: | ||
* Enter your text and confirm your work with ''OK''. | * Enter your text and confirm your work with ''OK''. | ||
− | + | ===by code in button click=== | |
− | |||
Add your form a [[TButton]] with the name ''btnFill'' and caption ''fill ListBox''. In the event handler ''OnClick'' of the button, you write the following code: | Add your form a [[TButton]] with the name ''btnFill'' and caption ''fill ListBox''. In the event handler ''OnClick'' of the button, you write the following code: | ||
− | < | + | <syntaxhighlight lang=pascal> |
procedure TForm1.btnFillClick(Sender: TObject); | procedure TForm1.btnFillClick(Sender: TObject); | ||
begin | begin | ||
Line 40: | Line 25: | ||
ListBox1.Items.Add('Even a random number '+IntToStr(Random(100))); | ListBox1.Items.Add('Even a random number '+IntToStr(Random(100))); | ||
end; | end; | ||
− | </ | + | </syntaxhighlight> |
− | |||
− | |||
+ | ==Assignment of a StringList== | ||
Add your form a [[TButton]] with the name ''btnFill'' and caption ''fill ListBox''. In the event handler ''OnClick'' of the button, you write the following code: | Add your form a [[TButton]] with the name ''btnFill'' and caption ''fill ListBox''. In the event handler ''OnClick'' of the button, you write the following code: | ||
− | < | + | <syntaxhighlight lang=pascal> |
procedure TForm1.btnFillClick(Sender: TObject); | procedure TForm1.btnFillClick(Sender: TObject); | ||
var | var | ||
Line 58: | Line 42: | ||
myStringList.Free; //Free my StringList in memory | myStringList.Free; //Free my StringList in memory | ||
end; | end; | ||
− | </ | + | </syntaxhighlight> |
− | |||
− | |||
+ | ==Add string== | ||
* Extend the example [[TListBox#by code in button click|Fill ListBox by code in button click]] to a [[TEdit]] and a [[TButton]] with the name ''btnAdd'' and caption ''add string''. Change of ''Edit1'' the property ''Text'' to "" - empty string. | * Extend the example [[TListBox#by code in button click|Fill ListBox by code in button click]] to a [[TEdit]] and a [[TButton]] with the name ''btnAdd'' and caption ''add string''. Change of ''Edit1'' the property ''Text'' to "" - empty string. | ||
* In the event handler ''OnClick'' of the button, you write the following code: | * In the event handler ''OnClick'' of the button, you write the following code: | ||
− | < | + | <syntaxhighlight lang=pascal> |
procedure TForm1.btnAddClick(Sender: TObject); | procedure TForm1.btnAddClick(Sender: TObject); | ||
begin | begin | ||
Line 70: | Line 53: | ||
Edit1.Text:=''; | Edit1.Text:=''; | ||
end; | end; | ||
− | </ | + | </syntaxhighlight> |
− | |||
− | |||
+ | ==Delete string== | ||
By default is set that you can select only one row in your list box. Do you want to select several of the lines in your ListBox, you would have the property ''MultiSelect'' to make ''True''. | By default is set that you can select only one row in your list box. Do you want to select several of the lines in your ListBox, you would have the property ''MultiSelect'' to make ''True''. | ||
− | === | + | ===at ItemIndex=== |
* Extend the example [[TListBox#Add string|Add string]] to a [[TButton]] with the name "btnDel" and caption "delete string". | * Extend the example [[TListBox#Add string|Add string]] to a [[TButton]] with the name "btnDel" and caption "delete string". | ||
* In the event handler ''OnClick'' of the button, you write the following code: | * In the event handler ''OnClick'' of the button, you write the following code: | ||
− | < | + | <syntaxhighlight lang=pascal> |
procedure TForm1.btnDelClick(Sender: TObject); | procedure TForm1.btnDelClick(Sender: TObject); | ||
begin | begin | ||
Line 86: | Line 68: | ||
ListBox1.Items.Delete(ListBox1.ItemIndex); | ListBox1.Items.Delete(ListBox1.ItemIndex); | ||
end; | end; | ||
− | </ | + | </syntaxhighlight> |
− | |||
− | |||
+ | ===all selected strings=== | ||
* Extend the example [[TListBox#Add string|Add string]] to a [[TButton]] with the name "btnDel" and caption "delete string". | * Extend the example [[TListBox#Add string|Add string]] to a [[TButton]] with the name "btnDel" and caption "delete string". | ||
* In the event handler ''OnClick'' of the button, you write the following code: | * In the event handler ''OnClick'' of the button, you write the following code: | ||
− | < | + | <syntaxhighlight lang=pascal> |
procedure TForm1.btnDelClick(Sender: TObject); | procedure TForm1.btnDelClick(Sender: TObject); | ||
var | var | ||
Line 102: | Line 83: | ||
ListBox1.Items.Delete(i); //...delete the item (String) | ListBox1.Items.Delete(i); //...delete the item (String) | ||
end; | end; | ||
− | </ | + | </syntaxhighlight> |
− | |||
− | |||
− | |||
− | |||
+ | ==Owner-drawn ListBox== | ||
+ | In general, it is advantageous to let the ListBox follow the [http://en.wikipedia.org/wiki/Skin_%28computing%29 theme] set by the user. In some cases (for example, to program a game with a colorful surface), you can deviate from this standard and draw the control according to your own choice. You can try this now: | ||
* You can modify the previous sample or create a new application with a TListBox ''ListBox1''. | * You can modify the previous sample or create a new application with a TListBox ''ListBox1''. | ||
* In the Object Inspector, change ''ListBox1'' property ''Style'' to ''lbOwnerDrawFixed''. | * In the Object Inspector, change ''ListBox1'' property ''Style'' to ''lbOwnerDrawFixed''. | ||
* With the Object Inspector, tab events, create the event handler for the event ''OnDrawItem'', by clicking on the button [...]. | * With the Object Inspector, tab events, create the event handler for the event ''OnDrawItem'', by clicking on the button [...]. | ||
* You add the following code to the handler: | * You add the following code to the handler: | ||
− | < | + | <syntaxhighlight lang=pascal> |
procedure TForm1.ListBox1DrawItem(Control: TWinControl; Index: Integer; | procedure TForm1.ListBox1DrawItem(Control: TWinControl; Index: Integer; | ||
ARect: TRect; State: TOwnerDrawState); | ARect: TRect; State: TOwnerDrawState); | ||
Line 128: | Line 107: | ||
ListBox1.Canvas.TextRect(ARect, 2, ARect.Top+2, ListBox1.Items[Index]); //Draw Itemtext | ListBox1.Canvas.TextRect(ARect, 2, ARect.Top+2, ListBox1.Items[Index]); //Draw Itemtext | ||
end; | end; | ||
− | </ | + | </syntaxhighlight> |
{{Note|'''Parameters of ListBoxDrawItem:'''<br><br> | {{Note|'''Parameters of ListBoxDrawItem:'''<br><br> | ||
− | '''Control:'''<br> If multiple controls (E.g. multiple ListBoxes) access this event handle, you know which threw this event. You could in our example, instead of '''< | + | '''Control:'''<br> If multiple controls (E.g. multiple ListBoxes) access this event handle, you know which threw this event. You could in our example, instead of '''<syntaxhighlight lang=pascal>ListBox1.Canvas.FillRect(ARect)</syntaxhighlight>''' also '''<syntaxhighlight lang=pascal>TListBox(Control).Canvas.FillRect(ARect)</syntaxhighlight>''' write, where you should query still possible before, whether it is a TListBox: |
− | < | + | <syntaxhighlight lang=pascal> |
if Control is TListBox then | if Control is TListBox then | ||
TListBox(Control).Canvas.FillRect(ARect); | TListBox(Control).Canvas.FillRect(ARect); | ||
− | </ | + | </syntaxhighlight> |
'''Index:''' | '''Index:''' | ||
− | Specifies the item location, so you have access to the string '''< | + | Specifies the item location, so you have access to the string '''<syntaxhighlight lang=pascal><ListBox>.Items[Index]</syntaxhighlight>'''.<br> |
'''ARect:''' | '''ARect:''' | ||
Describes the rectangle, which is necessary for drawing the background.<br> | Describes the rectangle, which is necessary for drawing the background.<br> | ||
Line 146: | Line 125: | ||
==See also== | ==See also== | ||
+ | * [[doc:lcl/stdctrls/tlistbox.html|TListBox doc]] | ||
+ | * [[TDBListBox]] | ||
+ | * [[ListBox with separators]] | ||
+ | * [http://forum.codecall.net/topic/73705-the-basic-working-with-tlistbox/ tutorial about TListBox] | ||
− | |||
− | |||
− | |||
{{LCL Components}} | {{LCL Components}} | ||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 12:14, 19 July 2021
│
Deutsch (de) │
English (en) │
suomi (fi) │
français (fr) │
A TListBox is a component that shows a (scrollable) list of (short) strings where user is to select one. It is available from the Standard tab of the Component Palette.
In the TListBox, the stored strings are stored in the property Items, that is of type TStrings. Thus you can assign or remove strings in the ListBox, as in a TStringList or its parent TStrings.
Here are a few examples of how to use a TListBox ListBox1 on a form Form1:
Fill ListBox
by the Object Inspector
- Select the ListBox on your form with one click.
- Go in the Object Inspector in the Properties tab on the property Items.
- Click on the button with the three dots. The String Editor opens.
- Enter your text and confirm your work with OK.
by code in button click
Add your form a TButton with the name btnFill and caption fill ListBox. In the event handler OnClick of the button, you write the following code:
procedure TForm1.btnFillClick(Sender: TObject);
begin
ListBox1.Items.Clear; //Delete all existing strings
ListBox1.Items.Add('First line');
ListBox1.Items.Add('Line with random number '+IntToStr(Random(100)));
ListBox1.Items.Add('Third line');
ListBox1.Items.Add('Even a random number '+IntToStr(Random(100)));
end;
Assignment of a StringList
Add your form a TButton with the name btnFill and caption fill ListBox. In the event handler OnClick of the button, you write the following code:
procedure TForm1.btnFillClick(Sender: TObject);
var
myStringList: TStringList;
begin
myStringList:=TStringList.Create; //Create my StringList
myStringList.Add('This is the first line.'); //This add a row
myStringList.Add('This is the second first line.');
myStringList.Add('This is the third line.');
myStringList.Add('etc.');
ListBox1.Items.Assign(myStringList); //assign the ListBox1 the text content of my StringList
myStringList.Free; //Free my StringList in memory
end;
Add string
- Extend the example Fill ListBox by code in button click to a TEdit and a TButton with the name btnAdd and caption add string. Change of Edit1 the property Text to "" - empty string.
- In the event handler OnClick of the button, you write the following code:
procedure TForm1.btnAddClick(Sender: TObject);
begin
ListBox1.Items.Add(Edit1.Text);
Edit1.Text:='';
end;
Delete string
By default is set that you can select only one row in your list box. Do you want to select several of the lines in your ListBox, you would have the property MultiSelect to make True.
at ItemIndex
- Extend the example Add string to a TButton with the name "btnDel" and caption "delete string".
- In the event handler OnClick of the button, you write the following code:
procedure TForm1.btnDelClick(Sender: TObject);
begin
if ListBox1.ItemIndex > -1 then //Delete only when a string in the listbox is selected
ListBox1.Items.Delete(ListBox1.ItemIndex);
end;
all selected strings
- Extend the example Add string to a TButton with the name "btnDel" and caption "delete string".
- In the event handler OnClick of the button, you write the following code:
procedure TForm1.btnDelClick(Sender: TObject);
var
i: Integer;
begin
if ListBox1.SelCount > 0 then //Delete only if at least one string in the list box is selected
for i:=ListBox1.Items.Count - 1 downto 0 do //Iterate through all the items
if ListBox1.Selected[i] then //If selected...
ListBox1.Items.Delete(i); //...delete the item (String)
end;
Owner-drawn ListBox
In general, it is advantageous to let the ListBox follow the theme set by the user. In some cases (for example, to program a game with a colorful surface), you can deviate from this standard and draw the control according to your own choice. You can try this now:
- You can modify the previous sample or create a new application with a TListBox ListBox1.
- In the Object Inspector, change ListBox1 property Style to lbOwnerDrawFixed.
- With the Object Inspector, tab events, create the event handler for the event OnDrawItem, by clicking on the button [...].
- You add the following code to the handler:
procedure TForm1.ListBox1DrawItem(Control: TWinControl; Index: Integer;
ARect: TRect; State: TOwnerDrawState);
var
aColor: TColor; //Background color
begin
if (Index mod 2 = 0) //Index tells which item it is
then aColor:=$FFFFFF //every second item gets white as the background color
else aColor:=$EEEEFF; //every second item gets pink background color
if odSelected in State then aColor:=$0000FF; //If item is selected, then red as background color
ListBox1.Canvas.Brush.Color:=aColor; //Set background color
ListBox1.Canvas.FillRect(ARect); //Draw a filled rectangle
ListBox1.Canvas.Font.Bold:=True; //Set the font to "bold"
ListBox1.Canvas.TextRect(ARect, 2, ARect.Top+2, ListBox1.Items[Index]); //Draw Itemtext
end;
Note: Parameters of ListBoxDrawItem:
Control:
If multiple controls (E.g. multiple ListBoxes) access this event handle, you know which threw this event. You could in our example, instead of
ListBox1.Canvas.FillRect(ARect)
TListBox(Control).Canvas.FillRect(ARect)
if Control is TListBox then
TListBox(Control).Canvas.FillRect(ARect);
Index:
Specifies the item location, so you have access to the string<ListBox>.Items[Index]
ARect:
Describes the rectangle, which is necessary for drawing the background.
State:
Status of the items, whether normal, focused, selected etc.
- Your example could look like:
See also