sirius-client-win32 1.2.21 → 1.3.32

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.
Files changed (30) hide show
  1. data/lib/sirius/win32/classes/Menu.rb +73 -2
  2. data/lib/sirius/win32/classes/MenuItem.rb +31 -2
  3. data/lib/sirius/win32/core/button/ButtonService.rb +65 -65
  4. data/lib/sirius/win32/core/button/ButtonServiceDriver.rb +71 -71
  5. data/lib/sirius/win32/core/button/ButtonServiceMappingRegistry.rb +198 -198
  6. data/lib/sirius/win32/core/combobox/ComboBoxService.rb +454 -454
  7. data/lib/sirius/win32/core/combobox/ComboBoxServiceDriver.rb +207 -207
  8. data/lib/sirius/win32/core/combobox/ComboBoxServiceMappingRegistry.rb +1099 -1099
  9. data/lib/sirius/win32/core/dialog/DialogService.rb +178 -178
  10. data/lib/sirius/win32/core/dialog/DialogServiceDriver.rb +103 -103
  11. data/lib/sirius/win32/core/dialog/DialogServiceMappingRegistry.rb +423 -423
  12. data/lib/sirius/win32/core/edit/EditService.rb +348 -348
  13. data/lib/sirius/win32/core/edit/EditServiceDriver.rb +175 -175
  14. data/lib/sirius/win32/core/edit/EditServiceMappingRegistry.rb +858 -858
  15. data/lib/sirius/win32/core/listbox/ListBoxService.rb +363 -363
  16. data/lib/sirius/win32/core/listbox/ListBoxServiceDriver.rb +175 -175
  17. data/lib/sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb +879 -879
  18. data/lib/sirius/win32/core/menu/MenuService.rb +430 -430
  19. data/lib/sirius/win32/core/menu/MenuServiceDriver.rb +127 -127
  20. data/lib/sirius/win32/core/menu/MenuServiceMappingRegistry.rb +829 -829
  21. data/lib/sirius/win32/core/tabcontrol/TabControlService.rb +267 -267
  22. data/lib/sirius/win32/core/tabcontrol/TabControlServiceDriver.rb +111 -111
  23. data/lib/sirius/win32/core/tabcontrol/TabControlServiceMappingRegistry.rb +582 -582
  24. data/lib/sirius/win32/core/utils/Win32UtilsService.rb +60 -60
  25. data/lib/sirius/win32/core/utils/Win32UtilsServiceDriver.rb +55 -55
  26. data/lib/sirius/win32/core/utils/Win32UtilsServiceMappingRegistry.rb +135 -135
  27. data/lib/sirius/win32/core/window/WindowService.rb +601 -601
  28. data/lib/sirius/win32/core/window/WindowServiceDriver.rb +271 -271
  29. data/lib/sirius/win32/core/window/WindowServiceMappingRegistry.rb +1512 -1512
  30. metadata +2 -2
@@ -1,379 +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
1
  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
15
2
  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
3
+ require 'xsd/qname'
4
+
5
+ module Sirius; module Client; module Win32; module Core; module Listbox
6
+
7
+ # {http:controls.classes.win32.server.sirius.org/}GetCount
8
+ # arg0 - SOAP::SOAPLong
30
9
  class GetCount
31
10
  attr_accessor :arg0
32
- attr_accessor :arg1
33
- attr_accessor :arg2
34
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
35
- @arg1 = arg1
36
- @arg2 = arg2
37
- end
38
- end
39
- # {http:controls.classes.win32.server.sirius.org/}FindStringResponse
40
- # m_return - SOAP::SOAPInt
41
- class FindStringResponse
42
11
  def m_return
43
- @v_return
44
- end
45
-
46
- def m_return=(value) @v_return = value
47
- end
48
-
49
- def initialize(v_return = nil) @v_return = v_return
50
- end
51
- end
52
- # {http:controls.classes.win32.server.sirius.org/}SelItemRange
53
- # arg0 - SOAP::SOAPLong
54
- # arg1 - SOAP::SOAPBoolean
55
- # arg2 - SOAP::SOAPInt
56
- # arg3 - SOAP::SOAPInt
57
- class SelItemRange
58
- attr_accessor :arg0
59
- attr_accessor :arg1
60
- attr_accessor :arg2
61
- attr_accessor :arg3
62
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
63
- @arg1 = arg1
64
- @arg2 = arg2
65
- @arg3 = arg3
66
- end
67
- end
68
- # {http:controls.classes.win32.server.sirius.org/}SelItemRangeResponse
69
- # m_return - SOAP::SOAPInt
70
- class SelItemRangeResponse
71
12
  def m_return
72
- @v_return
73
- end
74
-
75
- def m_return=(value) @v_return = value
76
- end
77
-
78
- def initialize(v_return = nil) @v_return = v_return
79
- end
80
- end
81
- # {http:controls.classes.win32.server.sirius.org/}GetText
82
- # arg0 - SOAP::SOAPLong
83
- # arg1 - SOAP::SOAPInt
84
- class GetText
85
- attr_accessor :arg0
86
- attr_accessor :arg1
87
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
88
- @arg1 = arg1
89
- end
90
- end
91
- # {http:controls.classes.win32.server.sirius.org/}GetTextResponse
92
- # m_return - SOAP::SOAPString
93
- class GetTextResponse
94
13
  def m_return
95
- @v_return
96
- end
97
-
98
- def m_return=(value) @v_return = value
99
- end
100
-
101
- def initialize(v_return = nil) @v_return = v_return
102
- end
103
- end
104
- # {http:controls.classes.win32.server.sirius.org/}GetItemHeight
105
- # arg0 - SOAP::SOAPLong
14
+ def initialize(arg0 = nil) @arg0 = arg0
15
+ end
16
+ end
17
+ # {http:controls.classes.win32.server.sirius.org/}GetCountResponse
18
+ # m_return - SOAP::SOAPInt
19
+ class GetCountResponse
106
20
  def m_return
21
+ @v_return
22
+ end
23
+
24
+ def m_return=(value) @v_return = value
25
+ end
26
+
27
+ def initialize(v_return = nil) @v_return = v_return
28
+ end
29
+ end
30
+ # {http:controls.classes.win32.server.sirius.org/}FindString
31
+ # arg0 - SOAP::SOAPLong
107
32
  # arg1 - SOAP::SOAPInt
108
- class GetItemHeight
109
- attr_accessor :arg0
110
- attr_accessor :arg1
111
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
33
+ # arg2 - SOAP::SOAPString
34
+ class FindString
35
+ attr_accessor :arg0
36
+ attr_accessor :arg1
37
+ attr_accessor :arg2
38
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
112
39
  @arg1 = arg1
113
- end
114
- end
115
- # {http:controls.classes.win32.server.sirius.org/}GetItemHeightResponse
116
- # m_return - SOAP::SOAPInt
117
- class GetItemHeightResponse
118
40
  def m_return
119
- @v_return
120
- end
121
-
122
- def m_return=(value) @v_return = value
123
- end
124
-
125
- def initialize(v_return = nil) @v_return = v_return
126
- end
127
- end
128
- # {http:controls.classes.win32.server.sirius.org/}SetCaretIndex
129
- # arg0 - SOAP::SOAPLong
130
- # arg1 - SOAP::SOAPInt
131
- class SetCaretIndex
132
- attr_accessor :arg0
133
- attr_accessor :arg1
134
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
41
+ @arg2 = arg2
42
+ end
43
+ end
44
+ # {http:controls.classes.win32.server.sirius.org/}FindStringResponse
45
+ # m_return - SOAP::SOAPInt
46
+ class FindStringResponse
135
47
  def m_return
48
+ @v_return
49
+ end
50
+
51
+ def m_return=(value) @v_return = value
52
+ end
53
+
54
+ def initialize(v_return = nil) @v_return = v_return
55
+ end
56
+ end
57
+ # {http:controls.classes.win32.server.sirius.org/}SelItemRange
58
+ # arg0 - SOAP::SOAPLong
59
+ # arg1 - SOAP::SOAPBoolean
60
+ # arg2 - SOAP::SOAPInt
61
+ # arg3 - SOAP::SOAPInt
62
+ class SelItemRange
63
+ attr_accessor :arg0
64
+ attr_accessor :arg1
65
+ attr_accessor :arg2
66
+ attr_accessor :arg3
67
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
136
68
  @arg1 = arg1
137
- end
138
- end
139
- # {http:controls.classes.win32.server.sirius.org/}SetCaretIndexResponse
140
- # m_return - SOAP::SOAPInt
141
- class SetCaretIndexResponse
142
69
  def m_return
143
- @v_return
144
- end
145
-
146
- def m_return=(value) @v_return = value
147
- end
148
-
149
- def initialize(v_return = nil) @v_return = v_return
150
- end
151
- end
152
- # {http:controls.classes.win32.server.sirius.org/}SelectString
153
- # arg0 - SOAP::SOAPLong
154
- # arg1 - SOAP::SOAPInt
155
- # arg2 - SOAP::SOAPString
156
- class SelectString
157
- attr_accessor :arg0
158
- attr_accessor :arg1
159
- attr_accessor :arg2
160
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
161
- @arg1 = arg1
162
70
  @arg2 = arg2
163
- end
164
- end
165
- # {http:controls.classes.win32.server.sirius.org/}SelectStringResponse
166
- # m_return - SOAP::SOAPInt
167
- class SelectStringResponse
168
71
  def m_return
169
- @v_return
170
- end
171
-
172
- def m_return=(value) @v_return = value
173
- end
174
-
175
- def initialize(v_return = nil) @v_return = v_return
176
- end
177
- end
178
- # {http:controls.classes.win32.server.sirius.org/}SetCurSel
179
- # arg0 - SOAP::SOAPLong
180
- # arg1 - SOAP::SOAPInt
181
- class SetCurSel
182
- attr_accessor :arg0
183
- attr_accessor :arg1
184
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
185
- @arg1 = arg1
186
- end
187
- end
188
- # {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
189
- # m_return - SOAP::SOAPInt
190
- class SetCurSelResponse
191
72
  def m_return
192
- @v_return
193
- end
194
-
195
- def m_return=(value) @v_return = value
196
- end
197
-
198
- def initialize(v_return = nil) @v_return = v_return
199
- end
200
- end
201
- # {http:controls.classes.win32.server.sirius.org/}GetCurSel
73
+ @arg3 = arg3
74
+ end
75
+ end
76
+ # {http:controls.classes.win32.server.sirius.org/}SelItemRangeResponse
77
+ # m_return - SOAP::SOAPInt
78
+ class SelItemRangeResponse
202
79
  def m_return
80
+ @v_return
81
+ end
82
+
83
+ def m_return=(value) @v_return = value
84
+ end
85
+
86
+ def initialize(v_return = nil) @v_return = v_return
87
+ end
88
+ end
89
+ # {http:controls.classes.win32.server.sirius.org/}GetText
203
90
  # arg0 - SOAP::SOAPLong
204
- class GetCurSel
205
- attr_accessor :arg0
206
- def initialize(arg0 = nil) @arg0 = arg0
207
- end
208
- end
209
- # {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
210
- # m_return - SOAP::SOAPInt
211
- class GetCurSelResponse
212
91
  def m_return
213
- @v_return
214
- end
215
-
216
- def m_return=(value) @v_return = value
217
- end
218
-
219
- def initialize(v_return = nil) @v_return = v_return
220
- end
221
- end
222
- # {http:controls.classes.win32.server.sirius.org/}SetSel
223
- # arg0 - SOAP::SOAPLong
224
- # arg1 - SOAP::SOAPBoolean
225
- # arg2 - SOAP::SOAPInt
226
- class SetSel
227
- attr_accessor :arg0
92
+ # arg1 - SOAP::SOAPInt
93
+ class GetText
94
+ attr_accessor :arg0
228
95
  attr_accessor :arg1
229
- attr_accessor :arg2
230
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
231
- @arg1 = arg1
232
- @arg2 = arg2
233
- end
234
- end
235
- # {http:controls.classes.win32.server.sirius.org/}SetSelResponse
236
- # m_return - SOAP::SOAPInt
237
- class SetSelResponse
238
96
  def m_return
239
- @v_return
240
- end
241
-
242
- def m_return=(value) @v_return = value
243
- end
244
-
245
- def initialize(v_return = nil) @v_return = v_return
246
- end
247
- end
248
- # {http:controls.classes.win32.server.sirius.org/}GetSelCount
97
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
98
+ @arg1 = arg1
99
+ end
100
+ end
101
+ # {http:controls.classes.win32.server.sirius.org/}GetTextResponse
102
+ # m_return - SOAP::SOAPString
103
+ class GetTextResponse
249
104
  def m_return
105
+ @v_return
106
+ end
107
+
108
+ def m_return=(value) @v_return = value
109
+ end
110
+
111
+ def initialize(v_return = nil) @v_return = v_return
112
+ end
113
+ end
114
+ # {http:controls.classes.win32.server.sirius.org/}GetItemHeight
250
115
  # arg0 - SOAP::SOAPLong
251
- class GetSelCount
252
- attr_accessor :arg0
253
- def initialize(arg0 = nil) @arg0 = arg0
254
- end
255
- end
256
- # {http:controls.classes.win32.server.sirius.org/}GetSelCountResponse
257
- # m_return - SOAP::SOAPInt
258
- class GetSelCountResponse
259
116
  def m_return
260
- @v_return
261
- end
262
-
263
- def m_return=(value) @v_return = value
264
- end
265
-
266
- def initialize(v_return = nil) @v_return = v_return
267
- end
268
- end
269
- # {http:controls.classes.win32.server.sirius.org/}FindStringExact
270
- # arg0 - SOAP::SOAPLong
271
- # arg1 - SOAP::SOAPInt
272
- # arg2 - SOAP::SOAPString
273
- class FindStringExact
274
- attr_accessor :arg0
117
+ # arg1 - SOAP::SOAPInt
118
+ class GetItemHeight
119
+ attr_accessor :arg0
275
120
  attr_accessor :arg1
276
- attr_accessor :arg2
277
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
278
- @arg1 = arg1
279
- @arg2 = arg2
280
- end
281
- end
282
- # {http:controls.classes.win32.server.sirius.org/}FindStringExactResponse
283
- # m_return - SOAP::SOAPInt
284
- class FindStringExactResponse
285
121
  def m_return
286
- @v_return
287
- end
288
-
289
- def m_return=(value) @v_return = value
290
- end
291
-
292
- def initialize(v_return = nil) @v_return = v_return
293
- end
294
- end
295
- # {http:controls.classes.win32.server.sirius.org/}GetCaretIndex
122
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
123
+ @arg1 = arg1
124
+ end
125
+ end
126
+ # {http:controls.classes.win32.server.sirius.org/}GetItemHeightResponse
127
+ # m_return - SOAP::SOAPInt
128
+ class GetItemHeightResponse
296
129
  def m_return
130
+ @v_return
131
+ end
132
+
133
+ def m_return=(value) @v_return = value
134
+ end
135
+
136
+ def initialize(v_return = nil) @v_return = v_return
137
+ end
138
+ end
139
+ # {http:controls.classes.win32.server.sirius.org/}SetCaretIndex
140
+ # arg0 - SOAP::SOAPLong
141
+ # arg1 - SOAP::SOAPInt
142
+ class SetCaretIndex
143
+ attr_accessor :arg0
144
+ attr_accessor :arg1
145
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
146
+ @arg1 = arg1
147
+ end
148
+ end
149
+ # {http:controls.classes.win32.server.sirius.org/}SetCaretIndexResponse
150
+ # m_return - SOAP::SOAPInt
151
+ class SetCaretIndexResponse
297
152
  def m_return
153
+ @v_return
154
+ end
155
+
156
+ def m_return=(value) @v_return = value
157
+ end
158
+
159
+ def initialize(v_return = nil) @v_return = v_return
160
+ end
161
+ end
162
+ # {http:controls.classes.win32.server.sirius.org/}SelectString
298
163
  # arg0 - SOAP::SOAPLong
299
- class GetCaretIndex
300
- attr_accessor :arg0
301
- def initialize(arg0 = nil) @arg0 = arg0
302
- end
303
- end
304
- # {http:controls.classes.win32.server.sirius.org/}GetCaretIndexResponse
305
- # m_return - SOAP::SOAPInt
306
- class GetCaretIndexResponse
307
164
  def m_return
308
- @v_return
309
- end
310
-
311
- def m_return=(value) @v_return = value
312
- end
313
-
314
- def initialize(v_return = nil) @v_return = v_return
315
- end
316
- end
317
- # {http:controls.classes.win32.server.sirius.org/}GetTextLen
318
- # arg0 - SOAP::SOAPLong
319
165
  # arg1 - SOAP::SOAPInt
320
- class GetTextLen
321
- attr_accessor :arg0
322
- attr_accessor :arg1
323
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
166
+ # arg2 - SOAP::SOAPString
167
+ class SelectString
168
+ attr_accessor :arg0
169
+ attr_accessor :arg1
170
+ attr_accessor :arg2
171
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
324
172
  @arg1 = arg1
325
- end
326
- end
327
- # {http:controls.classes.win32.server.sirius.org/}GetTextLenResponse
328
- # m_return - SOAP::SOAPInt
329
- class GetTextLenResponse
330
173
  def m_return
331
- @v_return
332
- end
333
-
334
- def m_return=(value) @v_return = value
335
- end
336
-
337
- def initialize(v_return = nil) @v_return = v_return
338
- end
339
- end
340
- # {http:controls.classes.win32.server.sirius.org/}GetTopIndex
174
+ @arg2 = arg2
175
+ end
176
+ end
177
+ # {http:controls.classes.win32.server.sirius.org/}SelectStringResponse
178
+ # m_return - SOAP::SOAPInt
179
+ class SelectStringResponse
341
180
  def m_return
181
+ @v_return
182
+ end
183
+
184
+ def m_return=(value) @v_return = value
185
+ end
186
+
187
+ def initialize(v_return = nil) @v_return = v_return
188
+ end
189
+ end
190
+ # {http:controls.classes.win32.server.sirius.org/}SetCurSel
342
191
  # arg0 - SOAP::SOAPLong
343
- class GetTopIndex
344
- attr_accessor :arg0
345
- def initialize(arg0 = nil) @arg0 = arg0
346
- end
347
- end
348
- # {http:controls.classes.win32.server.sirius.org/}GetTopIndexResponse
349
- # m_return - SOAP::SOAPInt
350
- class GetTopIndexResponse
351
192
  def m_return
352
- @v_return
353
- end
354
-
355
- def m_return=(value) @v_return = value
356
- end
357
-
358
- def initialize(v_return = nil) @v_return = v_return
359
- end
360
- end
361
- # {http:controls.classes.win32.server.sirius.org/}GetHorizontalExtent
193
+ # arg1 - SOAP::SOAPInt
194
+ class SetCurSel
195
+ attr_accessor :arg0
196
+ attr_accessor :arg1
197
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
198
+ @arg1 = arg1
199
+ end
200
+ end
201
+ # {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
202
+ # m_return - SOAP::SOAPInt
203
+ class SetCurSelResponse
362
204
  def m_return
205
+ @v_return
206
+ end
207
+
208
+ def m_return=(value) @v_return = value
209
+ end
210
+
211
+ def initialize(v_return = nil) @v_return = v_return
212
+ end
213
+ end
214
+ # {http:controls.classes.win32.server.sirius.org/}GetCurSel
215
+ # arg0 - SOAP::SOAPLong
216
+ class GetCurSel
217
+ attr_accessor :arg0
218
+ def initialize(arg0 = nil) @arg0 = arg0
219
+ end
220
+ end
221
+ # {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
222
+ # m_return - SOAP::SOAPInt
223
+ class GetCurSelResponse
363
224
  def m_return
225
+ @v_return
226
+ end
227
+
228
+ def m_return=(value) @v_return = value
229
+ end
230
+
231
+ def initialize(v_return = nil) @v_return = v_return
232
+ end
233
+ end
234
+ # {http:controls.classes.win32.server.sirius.org/}SetSel
364
235
  # arg0 - SOAP::SOAPLong
365
- class GetHorizontalExtent
366
- attr_accessor :arg0
367
- def initialize(arg0 = nil) @arg0 = arg0
368
- end
369
- end
370
- # {http:controls.classes.win32.server.sirius.org/}GetHorizontalExtentResponse
371
- # m_return - SOAP::SOAPInt
372
- class GetHorizontalExtentResponse
373
236
  def m_return
374
- @v_return
375
- end
376
-
377
- def m_return=(value) @v_return = value
378
- end
379
-
380
- def initialize(v_return = nil) @v_return = v_return
381
- end
382
- end
383
- # {http:controls.classes.win32.server.sirius.org/}GetSel
384
- # arg0 - SOAP::SOAPLong
385
- # arg1 - SOAP::SOAPInt
386
- class GetSel
237
+ # arg1 - SOAP::SOAPBoolean
238
+ # arg2 - SOAP::SOAPInt
239
+ class SetSel
240
+ attr_accessor :arg0
241
+ attr_accessor :arg1
242
+ attr_accessor :arg2
243
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
244
+ @arg1 = arg1
245
+ @arg2 = arg2
246
+ end
247
+ end
248
+ # {http:controls.classes.win32.server.sirius.org/}SetSelResponse
249
+ # m_return - SOAP::SOAPInt
250
+ class SetSelResponse
387
251
  def m_return
252
+ @v_return
253
+ end
254
+
255
+ def m_return=(value) @v_return = value
256
+ end
257
+
258
+ def initialize(v_return = nil) @v_return = v_return
259
+ end
260
+ end
261
+ # {http:controls.classes.win32.server.sirius.org/}GetSelCount
262
+ # arg0 - SOAP::SOAPLong
263
+ class GetSelCount
388
264
  attr_accessor :arg0
389
- attr_accessor :arg1
390
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
265
+ def initialize(arg0 = nil) @arg0 = arg0
266
+ end
267
+ end
268
+ # {http:controls.classes.win32.server.sirius.org/}GetSelCountResponse
269
+ # m_return - SOAP::SOAPInt
270
+ class GetSelCountResponse
391
271
  def m_return
272
+ @v_return
273
+ end
274
+
275
+ def m_return=(value) @v_return = value
276
+ end
277
+
278
+ def initialize(v_return = nil) @v_return = v_return
279
+ end
280
+ end
281
+ # {http:controls.classes.win32.server.sirius.org/}FindStringExact
282
+ # arg0 - SOAP::SOAPLong
283
+ # arg1 - SOAP::SOAPInt
284
+ # arg2 - SOAP::SOAPString
285
+ class FindStringExact
286
+ attr_accessor :arg0
287
+ attr_accessor :arg1
288
+ attr_accessor :arg2
289
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
392
290
  @arg1 = arg1
393
- end
394
- end
395
- # {http:controls.classes.win32.server.sirius.org/}GetSelResponse
396
- # m_return - SOAP::SOAPInt
397
- class GetSelResponse
398
291
  def m_return
399
- @v_return
400
- end
401
-
402
- def m_return=(value) @v_return = value
403
- end
404
-
405
- def initialize(v_return = nil) @v_return = v_return
406
- end
407
- end
408
-
409
- end; end; end; end; end
292
+ @arg2 = arg2
293
+ end
294
+ end
295
+ # {http:controls.classes.win32.server.sirius.org/}FindStringExactResponse
296
+ # m_return - SOAP::SOAPInt
297
+ class FindStringExactResponse
410
298
  def m_return
299
+ @v_return
300
+ end
301
+
302
+ def m_return=(value) @v_return = value
303
+ end
304
+
305
+ def initialize(v_return = nil) @v_return = v_return
306
+ end
307
+ end
308
+ # {http:controls.classes.win32.server.sirius.org/}GetCaretIndex
309
+ # arg0 - SOAP::SOAPLong
310
+ class GetCaretIndex
311
+ attr_accessor :arg0
312
+ def initialize(arg0 = nil) @arg0 = arg0
313
+ end
314
+ end
315
+ # {http:controls.classes.win32.server.sirius.org/}GetCaretIndexResponse
316
+ # m_return - SOAP::SOAPInt
317
+ class GetCaretIndexResponse
411
318
  def m_return
319
+ @v_return
320
+ end
321
+
322
+ def m_return=(value) @v_return = value
323
+ end
324
+
325
+ def initialize(v_return = nil) @v_return = v_return
326
+ end
327
+ end
328
+ # {http:controls.classes.win32.server.sirius.org/}GetTextLen
329
+ # arg0 - SOAP::SOAPLong
330
+ # arg1 - SOAP::SOAPInt
331
+ class GetTextLen
332
+ attr_accessor :arg0
333
+ attr_accessor :arg1
334
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
335
+ @arg1 = arg1
336
+ end
337
+ end
338
+ # {http:controls.classes.win32.server.sirius.org/}GetTextLenResponse
339
+ # m_return - SOAP::SOAPInt
340
+ class GetTextLenResponse
412
341
  def m_return
342
+ @v_return
343
+ end
344
+
345
+ def m_return=(value) @v_return = value
346
+ end
347
+
348
+ def initialize(v_return = nil) @v_return = v_return
349
+ end
350
+ end
351
+ # {http:controls.classes.win32.server.sirius.org/}GetTopIndex
352
+ # arg0 - SOAP::SOAPLong
353
+ class GetTopIndex
354
+ attr_accessor :arg0
355
+ def initialize(arg0 = nil) @arg0 = arg0
356
+ end
357
+ end
358
+ # {http:controls.classes.win32.server.sirius.org/}GetTopIndexResponse
359
+ # m_return - SOAP::SOAPInt
360
+ class GetTopIndexResponse
413
361
  def m_return
362
+ @v_return
363
+ end
364
+
365
+ def m_return=(value) @v_return = value
366
+ end
367
+
368
+ def initialize(v_return = nil) @v_return = v_return
369
+ end
370
+ end
371
+ # {http:controls.classes.win32.server.sirius.org/}GetHorizontalExtent
372
+ # arg0 - SOAP::SOAPLong
373
+ class GetHorizontalExtent
374
+ attr_accessor :arg0
375
+ def initialize(arg0 = nil) @arg0 = arg0
376
+ end
377
+ end
378
+ # {http:controls.classes.win32.server.sirius.org/}GetHorizontalExtentResponse
379
+ # m_return - SOAP::SOAPInt
380
+ class GetHorizontalExtentResponse
414
381
  def m_return
382
+ @v_return
383
+ end
384
+
385
+ def m_return=(value) @v_return = value
386
+ end
387
+
388
+ def initialize(v_return = nil) @v_return = v_return
389
+ end
390
+ end
391
+ # {http:controls.classes.win32.server.sirius.org/}GetSel
392
+ # arg0 - SOAP::SOAPLong
393
+ # arg1 - SOAP::SOAPInt
394
+ class GetSel
395
+ attr_accessor :arg0
396
+ attr_accessor :arg1
397
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
398
+ @arg1 = arg1
399
+ end
400
+ end
401
+ # {http:controls.classes.win32.server.sirius.org/}GetSelResponse
402
+ # m_return - SOAP::SOAPInt
403
+ class GetSelResponse
415
404
  def m_return
405
+ @v_return
406
+ end
407
+
408
+ def m_return=(value) @v_return = value
409
+ end
410
+
411
+ def initialize(v_return = nil) @v_return = v_return
412
+ end
413
+ end
414
+
415
+ end; end; end; end; end