lbSetPictureRight: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " " to " ")
m (Text replacement - "{{Feature|Informative|" to "{{Feature|informative|")
 
(17 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| ofp
|game1= ofp
|version1=


|
|game2= ofpe
|version2= 1.00
 
|game3= arma1
|version3= 1.00
 
|game4= arma2
|version4= 1.00
 
|game5= arma2oa
|version5= 1.50
 
|game6= tkoh
|version6= 1.00
 
|game7= arma3
|version7= 0.50


|arg= local
|arg= local
Line 11: Line 28:
|gr1= GUI Control - ListBox
|gr1= GUI Control - ListBox


| Sets the second (right aligned) picture in the item with the given index of the listbox or combobox with id idc of the topmost user [[dialog]]. Name is the picture name. The picture is searched for in the mission directory, the dtaExt subdirectory of the campaign directory and the dtaExt directory and the data bank (or directory).<br>
|descr= Sets the second (right aligned) picture in the item with the given index of the listbox or combobox with id idc of the topmost user [[dialog]]. Name is the picture name.
In Arma 3 it might be necessary to set the color of the picture as well with [[lbSetPictureRightColor]] as default [0,0,0,0] color makes picture invisible.  
The picture is searched for in the mission directory, the dtaExt subdirectory of the campaign directory and the dtaExt directory and the data bank (or directory).<br>
In {{arma3}} it might be necessary to set the color of the picture as well with [[lbSetPictureRightColor]] as default [0,0,0,0] color makes the picture invisible.
 
{{Feature|informative|When trying to select a listBox entry by clicking at the right picture, the control in the background is focused. It seems the width of the control is not extended by adding a right picture.}}
 
|s1= [[lbSetPictureRight]] [idc, index, path]
 
|p1= idc: [[Number]] of control
 
|p2= index: [[Number]]


{{Feature|Informative|When trying to select a listBox entry by clicking at the right picture, the control in the background is focused. It seems the width of the control is not extended by adding a right picture.}}
|p3= path: [[String]]


| '''lbSetPictureRight''' [idc, index, name]
|p1= [idc, index, name]: [[Array]]
|p2= idc: [[Number]] of control
|p3= index: [[Number]]
|p4= name: [[String]]
|r1= [[Nothing]]
|r1= [[Nothing]]


|s2= control '''lbSetPictureRight''' [index, name]
|s2= control [[lbSetPictureRight]] [index, path]


|p21= control: [[Control]]
|p21= control: [[Control]]
|p22= [index, name]: [[Array]]
|p23= index: [[Number]]


|p24= name: [[String]]
|p22= index: [[Number]]
 
|p23= path: [[String]]
 
|r2= [[Nothing]]
|r2= [[Nothing]]


|x1= <code>[[lbSetPictureRight]] [101, 0, "iskoda"];</code>
|x1= <sqf>lbSetPictureRight [101, 0, "a3\3den\data\cfg3den\history\createcomment_ca.paa"];</sqf>


|x2= <code>_control [[lbSetPictureRight]] [0, "iskoda"];</code>
|x2= <sqf>_control lbSetPictureRight [0, "a3\3den\data\cfg3den\history\createcomment_ca.paa"];</sqf>


|seealso= [[lbAdd]], [[lbClear]], [[lbColor]], [[lbCurSel]], [[lbData]], [[lbDelete]], [[lbIsSelected]], [[lbPicture]], [[lbSelection]], [[lbSetColor]], [[lbSetCurSel]], [[lbSetData]], [[lbSetPicture]], [[lbSetSelected]], [[lbSetTooltip]], [[lbSetValue]], [[lbSize]], [[lbSort]], [[lbSortByValue]], [[lbText]], [[lbValue]], [[lbSetPictureColor]]
|seealso= [[lbPicture]] [[lbSetPicture]] [[lbSetPictureColor]]
}}
}}


<dl class="command_description">
{{Note
<dt></dt>
|user= Ffur2007slx2_5
<dd class="notedate">Posted: Sep 10 2014</dd>
|timestamp= 20140910163100
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]</dt>
|text= More information on the [[CT_LISTBOX]] command family can be found [[CT_LISTBOX#Scripting_Example|here]].
<dd class="note">More information on the [[CT_LISTBOX]] command family can be found [[CT_LISTBOX#Scripting_Example|here]].
}}
</dl>
 
 
{{GameCategory|arma1|Scripting Commands}}
{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}
 


<dl class="command_description">
{{Note
<dt></dt>
|user= R3vo
<dd class="notedate">Posted on April 6, 2021 - 07:34 (UTC)</dd>
|timestamp= 20210406073400
<dt class="note">[[User:R3vo|R3vo]]</dt>
|text= Adding pictures to lists is very slow. In order to prevent the filling of the list to be slowed down, add the pictures in the '''scheduled''' environment.
<dd class="note">{{#if:
One drawback of that method is, that sorting the entries is not easily possible.
{{Feature|Informative|Adding pictures to lists is very slow. In order to prevent the filling of the list to be slowed down, add the pictures in the '''scheduled''' environment. One drawback of that method is, that sorting the entries is not easily possible.
<sqf>
<code>[[private]] _path {{=}} _ctrlTV [[tvAdd]] <nowiki>[</nowiki>[], "Some Entry"];<br>[_ctrlTV, _path] [[spawn]] {<br>  (_this [[select]] 0) [[tvSetPictureRight]] <nowiki>[</nowiki>[_this [[select]] 1], "someImage.paa"];<br>};</code>
private _path = _ctrlTV tvAdd [[], "Some Entry"];
}}
[_ctrlTV, _path] spawn {
|
(_this select 0) tvSetPictureRight [[_this select 1], "someImage.paa"];
{{Feature|Informative|Adding pictures to lists is very slow. In order to prevent the filling of the list to be slowed down, add the pictures in the '''scheduled''' environment. One drawback of that method is, that sorting the entries is not easily possible.
};
<code>[[private]] _path {{=}} _ctrlTV [[tvAdd]] <nowiki>[</nowiki>[], "Some Entry"];<br>[_ctrlTV, _path] [[spawn]] {<br>  (_this [[select]] 0) [[tvSetPictureRight]] <nowiki>[</nowiki>[_this [[select]] 1], "someImage.paa"];<br>};</code>
</sqf>
}}
}}
|-no text provided-}}</dd>
</dl>

Latest revision as of 01:24, 2 February 2024

Hover & click on the images for description

Description

Description:
Sets the second (right aligned) picture in the item with the given index of the listbox or combobox with id idc of the topmost user dialog. Name is the picture name. The picture is searched for in the mission directory, the dtaExt subdirectory of the campaign directory and the dtaExt directory and the data bank (or directory).
In Arma 3 it might be necessary to set the color of the picture as well with lbSetPictureRightColor as default [0,0,0,0] color makes the picture invisible.
When trying to select a listBox entry by clicking at the right picture, the control in the background is focused. It seems the width of the control is not extended by adding a right picture.
Groups:
GUI Control - ListBox

Syntax

Syntax:
lbSetPictureRight [idc, index, path]
Parameters:
idc: Number of control
index: Number
path: String
Return Value:
Nothing

Alternative Syntax

Syntax:
control lbSetPictureRight [index, path]
Parameters:
control: Control
index: Number
path: String
Return Value:
Nothing

Examples

Example 1:
lbSetPictureRight [101, 0, "a3\3den\data\cfg3den\history\createcomment_ca.paa"];
Example 2:
_control lbSetPictureRight [0, "a3\3den\data\cfg3den\history\createcomment_ca.paa"];

Additional Information

See also:
lbPicture lbSetPicture lbSetPictureColor

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Ffur2007slx2_5 - c
Posted on Sep 10, 2014 - 16:31 (UTC)
More information on the CT_LISTBOX command family can be found here.
R3vo - c
Posted on Apr 06, 2021 - 07:34 (UTC)
Adding pictures to lists is very slow. In order to prevent the filling of the list to be slowed down, add the pictures in the scheduled environment. One drawback of that method is, that sorting the entries is not easily possible.
private _path = _ctrlTV tvAdd [[], "Some Entry"]; [_ctrlTV, _path] spawn { (_this select 0) tvSetPictureRight [[_this select 1], "someImage.paa"]; };