sirius-client-win32 1.1.1 → 1.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/sirius/win32.rb +6 -0
- data/lib/sirius/win32/classes/Control.rb +10 -0
- data/lib/sirius/win32/classes/DialogBox.rb +10 -0
- data/lib/sirius/win32/classes/MainWindow.rb +17 -0
- data/lib/sirius/win32/classes/Menu.rb +10 -0
- data/lib/sirius/win32/classes/MenuItem.rb +10 -0
- data/lib/sirius/win32/classes/MovableWindow.rb +49 -0
- data/lib/sirius/win32/classes/TopLevelWindow.rb +32 -0
- data/lib/sirius/win32/classes/Window.rb +116 -0
- data/lib/sirius/win32/classes/controls/Button.rb +12 -0
- data/lib/sirius/win32/classes/controls/CheckBox.rb +12 -0
- data/lib/sirius/win32/classes/controls/Edit.rb +12 -0
- data/lib/sirius/win32/classes/controls/ListBox.rb +12 -0
- data/lib/sirius/win32/classes/controls/ListView.rb +12 -0
- data/lib/sirius/win32/classes/controls/RadioButton.rb +12 -0
- data/lib/sirius/win32/classes/controls/Toolbar.rb +12 -0
- data/lib/sirius/win32/classes/controls/UpDown.rb +12 -0
- data/lib/sirius/win32/core.rb +16 -0
- data/lib/sirius/win32/core/button/ButtonService.rb +71 -0
- data/lib/sirius/win32/core/button/ButtonServiceClient.rb +60 -0
- data/lib/sirius/win32/core/button/ButtonServiceDriver.rb +72 -0
- data/lib/sirius/win32/core/button/ButtonServiceMappingRegistry.rb +199 -0
- data/lib/sirius/win32/core/combobox/ComboBoxService.rb +471 -0
- data/lib/sirius/win32/core/combobox/ComboBoxServiceClient.rb +264 -0
- data/lib/sirius/win32/core/combobox/ComboBoxServiceDriver.rb +208 -0
- data/lib/sirius/win32/core/combobox/ComboBoxServiceMappingRegistry.rb +1100 -0
- data/lib/sirius/win32/core/dialog/DialogService.rb +187 -0
- data/lib/sirius/win32/core/dialog/DialogServiceClient.rb +108 -0
- data/lib/sirius/win32/core/dialog/DialogServiceDriver.rb +104 -0
- data/lib/sirius/win32/core/dialog/DialogServiceMappingRegistry.rb +424 -0
- data/lib/sirius/win32/core/edit/EditService.rb +358 -0
- data/lib/sirius/win32/core/edit/EditServiceClient.rb +216 -0
- data/lib/sirius/win32/core/edit/EditServiceDriver.rb +176 -0
- data/lib/sirius/win32/core/edit/EditServiceMappingRegistry.rb +859 -0
- data/lib/sirius/win32/core/listbox/ListBoxService.rb +379 -0
- data/lib/sirius/win32/core/listbox/ListBoxServiceClient.rb +216 -0
- data/lib/sirius/win32/core/listbox/ListBoxServiceDriver.rb +176 -0
- data/lib/sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb +880 -0
- data/lib/sirius/win32/core/menu/MenuService.rb +443 -0
- data/lib/sirius/win32/core/menu/MenuServiceClient.rb +144 -0
- data/lib/sirius/win32/core/menu/MenuServiceDriver.rb +128 -0
- data/lib/sirius/win32/core/menu/MenuServiceMappingRegistry.rb +830 -0
- data/lib/sirius/win32/core/tabcontrol/TabControlService.rb +286 -0
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceClient.rb +120 -0
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceDriver.rb +112 -0
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceMappingRegistry.rb +583 -0
- data/lib/sirius/win32/core/utils/Win32UtilsService.rb +64 -0
- data/lib/sirius/win32/core/utils/Win32UtilsServiceClient.rb +36 -0
- data/lib/sirius/win32/core/utils/Win32UtilsServiceDriver.rb +56 -0
- data/lib/sirius/win32/core/utils/Win32UtilsServiceMappingRegistry.rb +136 -0
- data/lib/sirius/win32/core/window/WindowService.rb +625 -0
- data/lib/sirius/win32/core/window/WindowServiceClient.rb +360 -0
- data/lib/sirius/win32/core/window/WindowServiceDriver.rb +272 -0
- data/lib/sirius/win32/core/window/WindowServiceMappingRegistry.rb +1513 -0
- metadata +54 -2
@@ -0,0 +1,379 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
module Sirius; module Client; module Win32; module Core; module Listbox
|
4
|
+
|
5
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCount
|
6
|
+
# arg0 - SOAP::SOAPLong
|
7
|
class GetCount
|
8
|
+
attr_accessor :arg0
|
9
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
10
|
+
end
|
11
|
+
end
|
12
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCountResponse
|
13
|
+
# m_return - SOAP::SOAPInt
|
14
|
+
class GetCountResponse
|
1
15
|
def m_return
|
16
|
+
@v_return
|
17
|
+
end
|
18
|
+
|
19
|
+
def m_return=(value) @v_return = value
|
20
|
+
end
|
21
|
+
|
22
|
+
def initialize(v_return = nil) @v_return = v_return
|
23
|
+
end
|
24
|
+
end
|
25
|
+
# {http:controls.classes.win32.server.sirius.org/}FindString
|
26
|
+
# arg0 - SOAP::SOAPLong
|
27
|
+
# arg1 - SOAP::SOAPInt
|
28
|
+
# arg2 - SOAP::SOAPString
|
29
|
+
class FindString
|
30
|
+
attr_accessor :arg0
|
31
|
+
attr_accessor :arg1
|
32
|
+
attr_accessor :arg2
|
33
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
34
|
+
@arg1 = arg1
|
35
|
+
@arg2 = arg2
|
36
|
+
end
|
37
|
+
end
|
38
|
+
# {http:controls.classes.win32.server.sirius.org/}FindStringResponse
|
39
|
+
# m_return - SOAP::SOAPInt
|
40
|
+
class FindStringResponse
|
2
41
|
def m_return
|
42
|
+
@v_return
|
43
|
+
end
|
44
|
+
|
45
|
+
def m_return=(value) @v_return = value
|
46
|
+
end
|
47
|
+
|
48
|
+
def initialize(v_return = nil) @v_return = v_return
|
49
|
+
end
|
50
|
+
end
|
51
|
+
# {http:controls.classes.win32.server.sirius.org/}SelItemRange
|
52
|
+
# arg0 - SOAP::SOAPLong
|
53
|
+
# arg1 - SOAP::SOAPBoolean
|
54
|
+
# arg2 - SOAP::SOAPInt
|
55
|
+
# arg3 - SOAP::SOAPInt
|
56
|
+
class SelItemRange
|
57
|
+
attr_accessor :arg0
|
58
|
+
attr_accessor :arg1
|
59
|
+
attr_accessor :arg2
|
60
|
+
attr_accessor :arg3
|
61
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
|
62
|
+
@arg1 = arg1
|
63
|
+
@arg2 = arg2
|
64
|
+
@arg3 = arg3
|
65
|
+
end
|
66
|
+
end
|
67
|
+
# {http:controls.classes.win32.server.sirius.org/}SelItemRangeResponse
|
68
|
+
# m_return - SOAP::SOAPInt
|
69
|
+
class SelItemRangeResponse
|
3
70
|
def m_return
|
71
|
+
@v_return
|
72
|
+
end
|
73
|
+
|
74
|
+
def m_return=(value) @v_return = value
|
75
|
+
end
|
76
|
+
|
77
|
+
def initialize(v_return = nil) @v_return = v_return
|
78
|
+
end
|
79
|
+
end
|
80
|
+
# {http:controls.classes.win32.server.sirius.org/}GetText
|
81
|
+
# arg0 - SOAP::SOAPLong
|
82
|
+
# arg1 - SOAP::SOAPInt
|
83
|
+
class GetText
|
84
|
+
attr_accessor :arg0
|
85
|
+
attr_accessor :arg1
|
86
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
87
|
+
@arg1 = arg1
|
88
|
+
end
|
89
|
+
end
|
90
|
+
# {http:controls.classes.win32.server.sirius.org/}GetTextResponse
|
91
|
+
# m_return - SOAP::SOAPString
|
92
|
+
class GetTextResponse
|
4
93
|
def m_return
|
94
|
+
@v_return
|
95
|
+
end
|
96
|
+
|
97
|
+
def m_return=(value) @v_return = value
|
98
|
+
end
|
99
|
+
|
100
|
+
def initialize(v_return = nil) @v_return = v_return
|
101
|
+
end
|
102
|
+
end
|
103
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemHeight
|
104
|
+
# arg0 - SOAP::SOAPLong
|
105
|
+
# arg1 - SOAP::SOAPInt
|
106
|
+
class GetItemHeight
|
107
|
+
attr_accessor :arg0
|
108
|
+
attr_accessor :arg1
|
109
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
110
|
+
@arg1 = arg1
|
111
|
+
end
|
112
|
+
end
|
113
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemHeightResponse
|
114
|
+
# m_return - SOAP::SOAPInt
|
115
|
+
class GetItemHeightResponse
|
5
116
|
def m_return
|
117
|
+
@v_return
|
118
|
+
end
|
119
|
+
|
120
|
+
def m_return=(value) @v_return = value
|
121
|
+
end
|
122
|
+
|
123
|
+
def initialize(v_return = nil) @v_return = v_return
|
124
|
+
end
|
125
|
+
end
|
126
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCaretIndex
|
127
|
+
# arg0 - SOAP::SOAPLong
|
128
|
+
# arg1 - SOAP::SOAPInt
|
129
|
+
class SetCaretIndex
|
130
|
+
attr_accessor :arg0
|
131
|
+
attr_accessor :arg1
|
132
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
133
|
+
@arg1 = arg1
|
134
|
+
end
|
135
|
+
end
|
136
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCaretIndexResponse
|
137
|
+
# m_return - SOAP::SOAPInt
|
138
|
+
class SetCaretIndexResponse
|
6
139
|
def m_return
|
140
|
+
@v_return
|
141
|
+
end
|
142
|
+
|
143
|
+
def m_return=(value) @v_return = value
|
144
|
+
end
|
145
|
+
|
146
|
+
def initialize(v_return = nil) @v_return = v_return
|
147
|
+
end
|
148
|
+
end
|
149
|
+
# {http:controls.classes.win32.server.sirius.org/}SelectString
|
150
|
+
# arg0 - SOAP::SOAPLong
|
151
|
+
# arg1 - SOAP::SOAPInt
|
152
|
+
# arg2 - SOAP::SOAPString
|
153
|
+
class SelectString
|
154
|
+
attr_accessor :arg0
|
155
|
+
attr_accessor :arg1
|
156
|
+
attr_accessor :arg2
|
157
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
158
|
+
@arg1 = arg1
|
159
|
+
@arg2 = arg2
|
160
|
+
end
|
161
|
+
end
|
162
|
+
# {http:controls.classes.win32.server.sirius.org/}SelectStringResponse
|
163
|
+
# m_return - SOAP::SOAPInt
|
164
|
+
class SelectStringResponse
|
7
165
|
def m_return
|
166
|
+
@v_return
|
167
|
+
end
|
168
|
+
|
169
|
+
def m_return=(value) @v_return = value
|
170
|
+
end
|
171
|
+
|
172
|
+
def initialize(v_return = nil) @v_return = v_return
|
173
|
+
end
|
174
|
+
end
|
175
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCurSel
|
176
|
+
# arg0 - SOAP::SOAPLong
|
177
|
+
# arg1 - SOAP::SOAPInt
|
178
|
+
class SetCurSel
|
179
|
+
attr_accessor :arg0
|
180
|
+
attr_accessor :arg1
|
181
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
182
|
+
@arg1 = arg1
|
183
|
+
end
|
184
|
+
end
|
185
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
|
186
|
+
# m_return - SOAP::SOAPInt
|
187
|
+
class SetCurSelResponse
|
8
188
|
def m_return
|
189
|
+
@v_return
|
190
|
+
end
|
191
|
+
|
192
|
+
def m_return=(value) @v_return = value
|
193
|
+
end
|
194
|
+
|
195
|
+
def initialize(v_return = nil) @v_return = v_return
|
196
|
+
end
|
197
|
+
end
|
198
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCurSel
|
199
|
+
# arg0 - SOAP::SOAPLong
|
200
|
+
class GetCurSel
|
201
|
+
attr_accessor :arg0
|
202
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
203
|
+
end
|
204
|
+
end
|
205
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
|
206
|
+
# m_return - SOAP::SOAPInt
|
207
|
+
class GetCurSelResponse
|
9
208
|
def m_return
|
209
|
+
@v_return
|
210
|
+
end
|
211
|
+
|
212
|
+
def m_return=(value) @v_return = value
|
213
|
+
end
|
214
|
+
|
215
|
+
def initialize(v_return = nil) @v_return = v_return
|
216
|
+
end
|
217
|
+
end
|
218
|
+
# {http:controls.classes.win32.server.sirius.org/}SetSel
|
219
|
+
# arg0 - SOAP::SOAPLong
|
220
|
+
# arg1 - SOAP::SOAPBoolean
|
221
|
+
# arg2 - SOAP::SOAPInt
|
222
|
+
class SetSel
|
223
|
+
attr_accessor :arg0
|
224
|
+
attr_accessor :arg1
|
225
|
+
attr_accessor :arg2
|
226
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
227
|
+
@arg1 = arg1
|
228
|
+
@arg2 = arg2
|
229
|
+
end
|
230
|
+
end
|
231
|
+
# {http:controls.classes.win32.server.sirius.org/}SetSelResponse
|
232
|
+
# m_return - SOAP::SOAPInt
|
233
|
+
class SetSelResponse
|
10
234
|
def m_return
|
235
|
+
@v_return
|
236
|
+
end
|
237
|
+
|
238
|
+
def m_return=(value) @v_return = value
|
239
|
+
end
|
240
|
+
|
241
|
+
def initialize(v_return = nil) @v_return = v_return
|
242
|
+
end
|
243
|
+
end
|
244
|
+
# {http:controls.classes.win32.server.sirius.org/}GetSelCount
|
245
|
+
# arg0 - SOAP::SOAPLong
|
246
|
+
class GetSelCount
|
247
|
+
attr_accessor :arg0
|
248
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
249
|
+
end
|
250
|
+
end
|
251
|
+
# {http:controls.classes.win32.server.sirius.org/}GetSelCountResponse
|
252
|
+
# m_return - SOAP::SOAPInt
|
253
|
+
class GetSelCountResponse
|
11
254
|
def m_return
|
255
|
+
@v_return
|
256
|
+
end
|
257
|
+
|
258
|
+
def m_return=(value) @v_return = value
|
259
|
+
end
|
260
|
+
|
261
|
+
def initialize(v_return = nil) @v_return = v_return
|
262
|
+
end
|
263
|
+
end
|
264
|
+
# {http:controls.classes.win32.server.sirius.org/}FindStringExact
|
265
|
+
# arg0 - SOAP::SOAPLong
|
266
|
+
# arg1 - SOAP::SOAPInt
|
267
|
+
# arg2 - SOAP::SOAPString
|
268
|
+
class FindStringExact
|
269
|
+
attr_accessor :arg0
|
270
|
+
attr_accessor :arg1
|
271
|
+
attr_accessor :arg2
|
272
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
273
|
+
@arg1 = arg1
|
274
|
+
@arg2 = arg2
|
275
|
+
end
|
276
|
+
end
|
277
|
+
# {http:controls.classes.win32.server.sirius.org/}FindStringExactResponse
|
278
|
+
# m_return - SOAP::SOAPInt
|
279
|
+
class FindStringExactResponse
|
12
280
|
def m_return
|
281
|
+
@v_return
|
282
|
+
end
|
283
|
+
|
284
|
+
def m_return=(value) @v_return = value
|
285
|
+
end
|
286
|
+
|
287
|
+
def initialize(v_return = nil) @v_return = v_return
|
288
|
+
end
|
289
|
+
end
|
290
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCaretIndex
|
291
|
+
# arg0 - SOAP::SOAPLong
|
292
|
+
class GetCaretIndex
|
293
|
+
attr_accessor :arg0
|
294
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
295
|
+
end
|
296
|
+
end
|
297
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCaretIndexResponse
|
298
|
+
# m_return - SOAP::SOAPInt
|
299
|
+
class GetCaretIndexResponse
|
13
300
|
def m_return
|
301
|
+
@v_return
|
302
|
+
end
|
303
|
+
|
304
|
+
def m_return=(value) @v_return = value
|
305
|
+
end
|
306
|
+
|
307
|
+
def initialize(v_return = nil) @v_return = v_return
|
308
|
+
end
|
309
|
+
end
|
310
|
+
# {http:controls.classes.win32.server.sirius.org/}GetTextLen
|
311
|
+
# arg0 - SOAP::SOAPLong
|
312
|
+
# arg1 - SOAP::SOAPInt
|
313
|
+
class GetTextLen
|
314
|
+
attr_accessor :arg0
|
315
|
+
attr_accessor :arg1
|
316
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
317
|
+
@arg1 = arg1
|
318
|
+
end
|
319
|
+
end
|
320
|
+
# {http:controls.classes.win32.server.sirius.org/}GetTextLenResponse
|
321
|
+
# m_return - SOAP::SOAPInt
|
322
|
+
class GetTextLenResponse
|
14
323
|
def m_return
|
324
|
+
@v_return
|
325
|
+
end
|
326
|
+
|
327
|
+
def m_return=(value) @v_return = value
|
328
|
+
end
|
329
|
+
|
330
|
+
def initialize(v_return = nil) @v_return = v_return
|
331
|
+
end
|
332
|
+
end
|
333
|
+
# {http:controls.classes.win32.server.sirius.org/}GetTopIndex
|
334
|
+
# arg0 - SOAP::SOAPLong
|
335
|
+
class GetTopIndex
|
336
|
+
attr_accessor :arg0
|
337
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
338
|
+
end
|
339
|
+
end
|
340
|
+
# {http:controls.classes.win32.server.sirius.org/}GetTopIndexResponse
|
341
|
+
# m_return - SOAP::SOAPInt
|
342
|
+
class GetTopIndexResponse
|
15
343
|
def m_return
|
344
|
+
@v_return
|
345
|
+
end
|
346
|
+
|
347
|
+
def m_return=(value) @v_return = value
|
348
|
+
end
|
349
|
+
|
350
|
+
def initialize(v_return = nil) @v_return = v_return
|
351
|
+
end
|
352
|
+
end
|
353
|
+
# {http:controls.classes.win32.server.sirius.org/}GetHorizontalExtent
|
354
|
+
# arg0 - SOAP::SOAPLong
|
355
|
+
class GetHorizontalExtent
|
356
|
+
attr_accessor :arg0
|
357
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
358
|
+
end
|
359
|
+
end
|
360
|
+
# {http:controls.classes.win32.server.sirius.org/}GetHorizontalExtentResponse
|
361
|
+
# m_return - SOAP::SOAPInt
|
362
|
+
class GetHorizontalExtentResponse
|
16
363
|
def m_return
|
364
|
+
@v_return
|
365
|
+
end
|
366
|
+
|
367
|
+
def m_return=(value) @v_return = value
|
368
|
+
end
|
369
|
+
|
370
|
+
def initialize(v_return = nil) @v_return = v_return
|
371
|
+
end
|
372
|
+
end
|
373
|
+
# {http:controls.classes.win32.server.sirius.org/}GetSel
|
374
|
+
# arg0 - SOAP::SOAPLong
|
375
|
+
# arg1 - SOAP::SOAPInt
|
376
|
+
class GetSel
|
377
|
+
attr_accessor :arg0
|
378
|
+
attr_accessor :arg1
|
379
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
380
|
+
@arg1 = arg1
|
381
|
+
end
|
382
|
+
end
|
383
|
+
# {http:controls.classes.win32.server.sirius.org/}GetSelResponse
|
384
|
+
# m_return - SOAP::SOAPInt
|
385
|
+
class GetSelResponse
|
17
386
|
def m_return
|
387
|
+
@v_return
|
388
|
+
end
|
389
|
+
|
390
|
+
def m_return=(value) @v_return = value
|
391
|
+
end
|
392
|
+
|
393
|
+
def initialize(v_return = nil) @v_return = v_return
|
394
|
+
end
|
395
|
+
end
|
396
|
+
|
397
|
+
end; end; end; end; end
|
@@ -0,0 +1,216 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'ListBoxServiceDriver.rb'
|
3
|
+
|
4
|
+
Sirius::Client::Win32::Core::Listbox
|
5
|
+
|
6
|
+
endpoint_url = ARGV.shift
|
7
|
+
obj = ListBox.new(endpoint_url)
|
8
|
+
|
9
|
+
# run ruby with -d to see SOAP wiredumps.
|
10
|
+
obj.wiredump_dev = STDERR if $DEBUG
|
11
|
+
|
12
|
+
# SYNOPSIS
|
13
|
+
# getCount(parameters)
|
14
|
+
#
|
15
|
+
# ARGS
|
16
|
+
# parameters GetCount - {http://controls.classes.win32.server.sirius.org/}GetCount
|
17
|
+
#
|
18
|
+
# RETURNS
|
19
|
+
# parameters GetCountResponse - {http://controls.classes.win32.server.sirius.org/}GetCountResponse
|
20
|
+
#
|
21
|
+
parameters = nil
|
22
|
+
puts obj.getCount(parameters)
|
23
|
+
|
24
|
+
# SYNOPSIS
|
25
|
+
# findString(parameters)
|
26
|
+
#
|
27
|
+
# ARGS
|
28
|
+
# parameters FindString - {http://controls.classes.win32.server.sirius.org/}FindString
|
29
|
+
#
|
30
|
+
# RETURNS
|
31
|
+
# parameters FindStringResponse - {http://controls.classes.win32.server.sirius.org/}FindStringResponse
|
32
|
+
#
|
33
|
+
parameters = nil
|
34
|
+
puts obj.findString(parameters)
|
35
|
+
|
36
|
+
# SYNOPSIS
|
37
|
+
# getCurSel(parameters)
|
38
|
+
#
|
39
|
+
# ARGS
|
40
|
+
# parameters GetCurSel - {http://controls.classes.win32.server.sirius.org/}GetCurSel
|
41
|
+
#
|
42
|
+
# RETURNS
|
43
|
+
# parameters GetCurSelResponse - {http://controls.classes.win32.server.sirius.org/}GetCurSelResponse
|
44
|
+
#
|
45
|
+
parameters = nil
|
46
|
+
puts obj.getCurSel(parameters)
|
47
|
+
|
48
|
+
# SYNOPSIS
|
49
|
+
# getText(parameters)
|
50
|
+
#
|
51
|
+
# ARGS
|
52
|
+
# parameters GetText - {http://controls.classes.win32.server.sirius.org/}GetText
|
53
|
+
#
|
54
|
+
# RETURNS
|
55
|
+
# parameters GetTextResponse - {http://controls.classes.win32.server.sirius.org/}GetTextResponse
|
56
|
+
#
|
57
|
+
parameters = nil
|
58
|
+
puts obj.getText(parameters)
|
59
|
+
|
60
|
+
# SYNOPSIS
|
61
|
+
# selectString(parameters)
|
62
|
+
#
|
63
|
+
# ARGS
|
64
|
+
# parameters SelectString - {http://controls.classes.win32.server.sirius.org/}SelectString
|
65
|
+
#
|
66
|
+
# RETURNS
|
67
|
+
# parameters SelectStringResponse - {http://controls.classes.win32.server.sirius.org/}SelectStringResponse
|
68
|
+
#
|
69
|
+
parameters = nil
|
70
|
+
puts obj.selectString(parameters)
|
71
|
+
|
72
|
+
# SYNOPSIS
|
73
|
+
# setCurSel(parameters)
|
74
|
+
#
|
75
|
+
# ARGS
|
76
|
+
# parameters SetCurSel - {http://controls.classes.win32.server.sirius.org/}SetCurSel
|
77
|
+
#
|
78
|
+
# RETURNS
|
79
|
+
# parameters SetCurSelResponse - {http://controls.classes.win32.server.sirius.org/}SetCurSelResponse
|
80
|
+
#
|
81
|
+
parameters = nil
|
82
|
+
puts obj.setCurSel(parameters)
|
83
|
+
|
84
|
+
# SYNOPSIS
|
85
|
+
# getSel(parameters)
|
86
|
+
#
|
87
|
+
# ARGS
|
88
|
+
# parameters GetSel - {http://controls.classes.win32.server.sirius.org/}GetSel
|
89
|
+
#
|
90
|
+
# RETURNS
|
91
|
+
# parameters GetSelResponse - {http://controls.classes.win32.server.sirius.org/}GetSelResponse
|
92
|
+
#
|
93
|
+
parameters = nil
|
94
|
+
puts obj.getSel(parameters)
|
95
|
+
|
96
|
+
# SYNOPSIS
|
97
|
+
# setSel(parameters)
|
98
|
+
#
|
99
|
+
# ARGS
|
100
|
+
# parameters SetSel - {http://controls.classes.win32.server.sirius.org/}SetSel
|
101
|
+
#
|
102
|
+
# RETURNS
|
103
|
+
# parameters SetSelResponse - {http://controls.classes.win32.server.sirius.org/}SetSelResponse
|
104
|
+
#
|
105
|
+
parameters = nil
|
106
|
+
puts obj.setSel(parameters)
|
107
|
+
|
108
|
+
# SYNOPSIS
|
109
|
+
# getSelCount(parameters)
|
110
|
+
#
|
111
|
+
# ARGS
|
112
|
+
# parameters GetSelCount - {http://controls.classes.win32.server.sirius.org/}GetSelCount
|
113
|
+
#
|
114
|
+
# RETURNS
|
115
|
+
# parameters GetSelCountResponse - {http://controls.classes.win32.server.sirius.org/}GetSelCountResponse
|
116
|
+
#
|
117
|
+
parameters = nil
|
118
|
+
puts obj.getSelCount(parameters)
|
119
|
+
|
120
|
+
# SYNOPSIS
|
121
|
+
# getTopIndex(parameters)
|
122
|
+
#
|
123
|
+
# ARGS
|
124
|
+
# parameters GetTopIndex - {http://controls.classes.win32.server.sirius.org/}GetTopIndex
|
125
|
+
#
|
126
|
+
# RETURNS
|
127
|
+
# parameters GetTopIndexResponse - {http://controls.classes.win32.server.sirius.org/}GetTopIndexResponse
|
128
|
+
#
|
129
|
+
parameters = nil
|
130
|
+
puts obj.getTopIndex(parameters)
|
131
|
+
|
132
|
+
# SYNOPSIS
|
133
|
+
# selItemRange(parameters)
|
134
|
+
#
|
135
|
+
# ARGS
|
136
|
+
# parameters SelItemRange - {http://controls.classes.win32.server.sirius.org/}SelItemRange
|
137
|
+
#
|
138
|
+
# RETURNS
|
139
|
+
# parameters SelItemRangeResponse - {http://controls.classes.win32.server.sirius.org/}SelItemRangeResponse
|
140
|
+
#
|
141
|
+
parameters = nil
|
142
|
+
puts obj.selItemRange(parameters)
|
143
|
+
|
144
|
+
# SYNOPSIS
|
145
|
+
# getTextLen(parameters)
|
146
|
+
#
|
147
|
+
# ARGS
|
148
|
+
# parameters GetTextLen - {http://controls.classes.win32.server.sirius.org/}GetTextLen
|
149
|
+
#
|
150
|
+
# RETURNS
|
151
|
+
# parameters GetTextLenResponse - {http://controls.classes.win32.server.sirius.org/}GetTextLenResponse
|
152
|
+
#
|
153
|
+
parameters = nil
|
154
|
+
puts obj.getTextLen(parameters)
|
155
|
+
|
156
|
+
# SYNOPSIS
|
157
|
+
# getItemHeight(parameters)
|
158
|
+
#
|
159
|
+
# ARGS
|
160
|
+
# parameters GetItemHeight - {http://controls.classes.win32.server.sirius.org/}GetItemHeight
|
161
|
+
#
|
162
|
+
# RETURNS
|
163
|
+
# parameters GetItemHeightResponse - {http://controls.classes.win32.server.sirius.org/}GetItemHeightResponse
|
164
|
+
#
|
165
|
+
parameters = nil
|
166
|
+
puts obj.getItemHeight(parameters)
|
167
|
+
|
168
|
+
# SYNOPSIS
|
169
|
+
# findStringExact(parameters)
|
170
|
+
#
|
171
|
+
# ARGS
|
172
|
+
# parameters FindStringExact - {http://controls.classes.win32.server.sirius.org/}FindStringExact
|
173
|
+
#
|
174
|
+
# RETURNS
|
175
|
+
# parameters FindStringExactResponse - {http://controls.classes.win32.server.sirius.org/}FindStringExactResponse
|
176
|
+
#
|
177
|
+
parameters = nil
|
178
|
+
puts obj.findStringExact(parameters)
|
179
|
+
|
180
|
+
# SYNOPSIS
|
181
|
+
# getHorizontalExtent(parameters)
|
182
|
+
#
|
183
|
+
# ARGS
|
184
|
+
# parameters GetHorizontalExtent - {http://controls.classes.win32.server.sirius.org/}GetHorizontalExtent
|
185
|
+
#
|
186
|
+
# RETURNS
|
187
|
+
# parameters GetHorizontalExtentResponse - {http://controls.classes.win32.server.sirius.org/}GetHorizontalExtentResponse
|
188
|
+
#
|
189
|
+
parameters = nil
|
190
|
+
puts obj.getHorizontalExtent(parameters)
|
191
|
+
|
192
|
+
# SYNOPSIS
|
193
|
+
# getCaretIndex(parameters)
|
194
|
+
#
|
195
|
+
# ARGS
|
196
|
+
# parameters GetCaretIndex - {http://controls.classes.win32.server.sirius.org/}GetCaretIndex
|
197
|
+
#
|
198
|
+
# RETURNS
|
199
|
+
# parameters GetCaretIndexResponse - {http://controls.classes.win32.server.sirius.org/}GetCaretIndexResponse
|
200
|
+
#
|
201
|
+
parameters = nil
|
202
|
+
puts obj.getCaretIndex(parameters)
|
203
|
+
|
204
|
+
# SYNOPSIS
|
205
|
+
# setCaretIndex(parameters)
|
206
|
+
#
|
207
|
+
# ARGS
|
208
|
+
# parameters SetCaretIndex - {http://controls.classes.win32.server.sirius.org/}SetCaretIndex
|
209
|
+
#
|
210
|
+
# RETURNS
|
211
|
+
# parameters SetCaretIndexResponse - {http://controls.classes.win32.server.sirius.org/}SetCaretIndexResponse
|
212
|
+
#
|
213
|
+
parameters = nil
|
214
|
+
puts obj.setCaretIndex(parameters)
|
215
|
+
|
216
|
+
Sirius::Client::Win32::Core::Listbox
|