File: uicontrol.man

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (271 lines) | stat: -rw-r--r-- 7,756 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
.TH "uicontrol" 2 " 04 June 1998" "Fractales Group" "Scilab Function"
.so ../sci.an
.SH NAME
uicontrol - create a Graphic User Interface object
.sp
Author: Bertrand Guiheneuf
.sp
This routine is the one which enventualy creates the Graphich User Interface Controls in the figures. This is a scingle instruction, but in conjonction with set(), it allows to create button, lists, ....
.sp
.sp
.SH Usage
h=uicontrol(\f(CR[\fP prop1, val1 \f(CR]\fP \f(CR[\fP,  prop2, val2 \f(CR]\fP ...)
or
h=uicontrol(f, \f(CR[\fP prop1, val1 \f(CR]\fP \f(CR[\fP,  prop2, val2 \f(CR]\fP ...)
.SH Input parameter
.nr ll +1
.nr t\n(ll 0
.if \n(ll>1 .RS
.nr bi 1
.TP
o 
 \fBf\fP : integer
handle of the figure which will contain the control
.nr bi 1
.TP
o 
 \fBprop{1, 2 ...}\fP : character string
name of a property to set
.nr bi 1
.TP
o 
 \fBval{1, 2 ...}\fP : scilab object
value to give to the corresponding property
.if \n(ll>1 .RE
.nr ll -1
.SH Output parameters
handle of the created object
.SH Description
this routine creates an object in a figure. If the handle of the figure
is given (as the first parameter), the uicontrol is created in this figure.
If no handle is given, the uicontrol is created in the current figure
( which may be obtained with a call to gcf() ). If there is no current 
figure, then one is created before the creation of the uicontrol.
Then when the control is created, the properties given as parameters
are set with the coresponding values. It is equivalent to create the uicontrol,
and then set its properties with the set() command. Nevertheless, it generally
more efficient to set the properties in the call to uicontrol(). This is particularly true coincerning the 'style' field. Indeed, the default value for
this property is 'pushbutton'. So if you do not set it at creation time,
a button will be created, and will be transformed to another uicontrol
when you call the get(h,'style', ... ) instruction.
Scilab and all the graphic objects communicate through the property
mechanism. Thus, to create adapted uicontrol, one has to know the
use of the property fields. Those are descibed under:
.SH Properties
.SH BackgroundColor
\f(CR[\fP 1,3\f(CR]\fP real vector or string
Background color of the uicontrol. A color is specified as Red,
Green and Blue values. Those values are real in \f(CR[\fP 0,1 \f(CR]\fP.
The color can be given as a real vector, ie \f(CR[\fP R,G,B \f(CR]\fP or
a string where each value is separated by a \f(CR|\fP, ie "R|G|B"
.SH callback
string
String evaluated by the  scilab interpreter when an usicontrol is activated.
(for example when you click on a button).
.SH fontangle
string : {'normal'} | italic | oblique
For a control containing some text, this property sets the slant of the 
font.
.SH fontsize
real 
For a control containing some text, this property sets the size  of the 
font in FontUnits.
.SH fontunits
string : {points} | pixels | normalized
For a control containing some text, this property sets the units with 
which the fontsize is specified.
.SH fontweight
string : light | {normal} | demi | bold
For a control containing some text, this property sets the weight of
the used font
.SH ListboxTop
integer 
For a ListBox, this property tells which item of the list appears
on the first line of the visible area of the list.
.SH Max
scalar 
Specifies the largest value the 'value' property can be set to. 
It has however differnet meaning on each uicontrol:
.nr ll +1
.nr t\n(ll 0
.if \n(ll>1 .RS
.nr bi 1
.TP
o 
 Check Boxes : Max is the value the 'value' property take when 
control is checked
.nr bi 1
.TP
o 
 Silders  : Maximinum value of the slider 
.nr bi 1
.TP
o 
 List boxes : if (Max-Min)>1 the list allows multiple selection, Otherwise not. 
.if \n(ll>1 .RE
.nr ll -1
.SH Max
scalar 
Specifies the lowest value the 'value' property can be set to. 
It has however differnet meaning on each uicontrol:
.nr ll +1
.nr t\n(ll 0
.if \n(ll>1 .RS
.nr bi 1
.TP
o 
 Check Boxes : Min is the value the 'value' property take when 
control is unchecked
.nr bi 1
.TP
o 
 Silders  : Mininum value of the slider 
.nr bi 1
.TP
o 
 List boxes : if (Max-Min)>1 the list allows multiple selection, Otherwise not. 
.if \n(ll>1 .RE
.nr ll -1
.SH Parent
integer 
Handle of the control parent. Changing this property allows to move
a control from a figure to another.
.SH Position
\f(CR[\fP 1,4\f(CR]\fP real vector or string
This property is used to set or get the geometrical configuration of a control.
It is a real; vector : x y w h where the letters stand for the x location of the left bottom corner, the y location of the left bottom corner, the width and the height of the uicontrol.
The unit is determined by the 'Unit' property. 
One can also set this property by giving a string where the fields are separated by a '|', ie "x|y|w|h".
.SH SliderStep
\f(CR[\fP 1,2\f(CR]\fP real vector or string
small big
This property represents the step a slider is moved when the user click on the arrow (small step) or on the slide bar (big step). 
.SH String
string 
Generally, this property represents the text appearing in a uicontrol.
Its exact meaning sometimes depends on the uicontrol style:
.nr ll +1
.nr t\n(ll 0
.if \n(ll>1 .RS
.nr bi 1
.TP
o 
 List Boxes, Popup Menu
the value can be a vector of string or a string where the items are separated by a '|'. 
.if \n(ll>1 .RE
.nr ll -1
.SH Style
string : {pushbutton} | radiobutton | checkbox | edit | text | slider | frame |listbox | popupmenu 
Style of the uicontrol. Here is a short description of each one:
.nr ll +1
.nr t\n(ll 0
.if \n(ll>1 .RS
.nr bi 1
.TP
o 
 pushbutton 
A rectangular button generally used to run a callback. 
.nr bi 1
.TP
o 
 radiobutton
A button whith to states : on or off.
.nr bi 1
.TP
o 
 checkbox
a small uicontrol that have to state : on or off
.nr bi 1
.TP
o 
 edit 
an editable string control
.nr bi 1
.TP
o 
 text
a text control (generally static).
.nr bi 1
.TP
o 
 slider
a scale control, that is a scrollbar use to set values between in  range
with the mouse.
.nr bi 1
.TP
o 
 frame
a control representing a zone used to group of related controls.
.nr bi 1
.TP
o 
 listbox
a control representing a list of item that can be scrolled. The item can be selected with the mouse.
.nr bi 1
.TP
o 
 popupmenu
a button which make a menu appear when clicked.
.if \n(ll>1 .RE
.nr ll -1
.SH Tag
string 
this property is generally used to identify the control. It allows to give it a "name". Mainly used in conjontion with findobj().
.SH Units
string :  {points} | pixels | normalized
Set the units used to specify the 'position' property.
.SH Userdata
scilab object
this can be used to associate any scilab object to an uicontrol.
.SH Value
Value of the uicontrol. The eact meaning depends on the style of the uivontrol.
.nr ll +1
.nr t\n(ll 0
.if \n(ll>1 .RS
.nr bi 1
.TP
o 
 Check boxes, Radio buttons
value is set to Max (see above) when on and Min when off.
.nr bi 1
.TP
o 
 List Boxes, Popu Menu
value is a vector of indexes corresponding to the index of the selected entry in the list. 1 is the first item of the list.
.nr bi 1
.TP
o 
 Sliders
value indicated by the slider bar.
.if \n(ll>1 .RE
.nr ll -1
.SH EXAMPLE
.nf
f=figure();
// create a figure
h=uicontrol(f,'style','listbox', ...
 'position', [10 10 150 160]);
// create a listbox
set(h, 'string', "item 1|item 2|item3");
// fill the list
set(h, 'value', [1 3]);
// select item 1 and 3 in the list
close();
// close the figure
f=figure();
// create a figure
h=uicontrol(f,'style','listbox', ...
 'position', [10 10 150 160]);
// create a listbox
set(h, 'string', "item 1|item 2|item3");
// fill the list
set(h, 'value', [1 3]);
// select (highlight) the item 1 and 3 in the list
close();
//close the figure
.fi 
.ec
.ft P
.sp
.SH See also
figure, set, get, uimenu