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,471 +1,471 @@
1
- require 'xsd/qname'
2
-
3
- module Sirius; module Client; module Win32; module Core; module Combobox
4
-
5
- # {http:controls.classes.win32.server.sirius.org/}SetEditSel
6
- # arg0 - SOAP::SOAPLong
7
- # arg1 - SOAP::SOAPInt
8
- # arg2 - SOAP::SOAPInt
9
1
  class SetEditSel
10
- attr_accessor :arg0
11
- attr_accessor :arg1
12
- attr_accessor :arg2
13
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
14
- @arg1 = arg1
15
- @arg2 = arg2
16
- end
17
- end
18
- # {http:controls.classes.win32.server.sirius.org/}SetEditSelResponse
19
- # m_return - SOAP::SOAPInt
20
- class SetEditSelResponse
21
2
  def m_return
22
- @v_return
23
- end
24
-
25
- def m_return=(value) @v_return = value
26
- end
27
-
28
- def initialize(v_return = nil) @v_return = v_return
29
- end
30
- end
31
- # {http:controls.classes.win32.server.sirius.org/}FindStringExact
32
- # arg0 - SOAP::SOAPLong
33
- # arg1 - SOAP::SOAPInt
34
- # arg2 - SOAP::SOAPString
35
- class FindStringExact
36
- attr_accessor :arg0
37
- attr_accessor :arg1
38
- attr_accessor :arg2
39
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
40
- @arg1 = arg1
41
- @arg2 = arg2
42
- end
43
- end
44
- # {http:controls.classes.win32.server.sirius.org/}FindStringExactResponse
45
- # m_return - SOAP::SOAPInt
46
- class FindStringExactResponse
47
3
  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/}GetExtendedUI
58
- # arg0 - SOAP::SOAPLong
59
- class GetExtendedUI
60
- attr_accessor :arg0
61
- def initialize(arg0 = nil) @arg0 = arg0
62
- end
63
- end
64
- # {http:controls.classes.win32.server.sirius.org/}GetExtendedUIResponse
65
- # m_return - SOAP::SOAPInt
66
- class GetExtendedUIResponse
67
4
  def m_return
68
- @v_return
69
- end
70
-
71
- def m_return=(value) @v_return = value
72
- end
73
-
74
- def initialize(v_return = nil) @v_return = v_return
75
- end
76
- end
77
- # {http:controls.classes.win32.server.sirius.org/}ResetContent
78
- # arg0 - SOAP::SOAPLong
79
- class ResetContent
80
- attr_accessor :arg0
81
- def initialize(arg0 = nil) @arg0 = arg0
82
- end
83
- end
84
- # {http:controls.classes.win32.server.sirius.org/}ResetContentResponse
85
- # m_return - SOAP::SOAPInt
86
- class ResetContentResponse
87
5
  def m_return
88
- @v_return
89
- end
90
-
91
- def m_return=(value) @v_return = value
92
- end
93
-
94
- def initialize(v_return = nil) @v_return = v_return
95
- end
96
- end
97
- # {http:controls.classes.win32.server.sirius.org/}GetTextLength
6
+ require 'xsd/qname'
7
+
8
+ module Sirius; module Client; module Win32; module Core; module Combobox
9
+
10
+ # {http:controls.classes.win32.server.sirius.org/}SetEditSel
98
11
  # arg0 - SOAP::SOAPLong
99
- class GetTextLength
100
- attr_accessor :arg0
101
- def initialize(arg0 = nil) @arg0 = arg0
102
- end
103
- end
104
- # {http:controls.classes.win32.server.sirius.org/}GetTextLengthResponse
105
- # m_return - SOAP::SOAPInt
106
- class GetTextLengthResponse
107
12
  def m_return
108
- @v_return
109
- end
110
-
111
- def m_return=(value) @v_return = value
112
- end
113
-
114
- def initialize(v_return = nil) @v_return = v_return
115
- end
116
- end
117
- # {http:controls.classes.win32.server.sirius.org/}GetDroppedState
118
- # arg0 - SOAP::SOAPLong
119
- class GetDroppedState
120
- attr_accessor :arg0
121
- def initialize(arg0 = nil) @arg0 = arg0
122
- end
123
- end
124
- # {http:controls.classes.win32.server.sirius.org/}GetDroppedStateResponse
125
- # m_return - SOAP::SOAPInt
126
- class GetDroppedStateResponse
127
13
  def m_return
128
- @v_return
129
- end
130
-
131
- def m_return=(value) @v_return = value
132
- end
133
-
134
- def initialize(v_return = nil) @v_return = v_return
135
- end
136
- end
137
- # {http:controls.classes.win32.server.sirius.org/}SetItemHeight
138
- # arg0 - SOAP::SOAPLong
139
- # arg1 - SOAP::SOAPInt
140
- # arg2 - SOAP::SOAPInt
141
- class SetItemHeight
142
- attr_accessor :arg0
143
- attr_accessor :arg1
144
- attr_accessor :arg2
145
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
146
- @arg1 = arg1
147
- @arg2 = arg2
148
- end
149
- end
150
- # {http:controls.classes.win32.server.sirius.org/}SetItemHeightResponse
151
- # m_return - SOAP::SOAPInt
152
- class SetItemHeightResponse
153
14
  def m_return
154
- @v_return
155
- end
156
-
157
- def m_return=(value) @v_return = value
158
- end
159
-
160
- def initialize(v_return = nil) @v_return = v_return
161
- end
162
- end
163
- # {http:controls.classes.win32.server.sirius.org/}GetCount
15
+ # arg1 - SOAP::SOAPInt
16
+ # arg2 - SOAP::SOAPInt
164
17
  class SetEditSel
18
+ attr_accessor :arg0
19
+ attr_accessor :arg1
20
+ attr_accessor :arg2
21
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
22
+ @arg1 = arg1
23
+ @arg2 = arg2
24
+ end
25
+ end
26
+ # {http:controls.classes.win32.server.sirius.org/}SetEditSelResponse
27
+ # m_return - SOAP::SOAPInt
28
+ class SetEditSelResponse
165
29
  def m_return
30
+ @v_return
31
+ end
32
+
33
+ def m_return=(value) @v_return = value
34
+ end
35
+
36
+ def initialize(v_return = nil) @v_return = v_return
37
+ end
38
+ end
39
+ # {http:controls.classes.win32.server.sirius.org/}FindStringExact
166
40
  # arg0 - SOAP::SOAPLong
167
- class GetCount
168
- attr_accessor :arg0
169
- def initialize(arg0 = nil) @arg0 = arg0
170
- end
171
- end
172
- # {http:controls.classes.win32.server.sirius.org/}GetCountResponse
173
- # m_return - SOAP::SOAPInt
174
- class GetCountResponse
175
41
  def m_return
176
- @v_return
177
- end
178
-
179
- def m_return=(value) @v_return = value
180
- end
181
-
182
- def initialize(v_return = nil) @v_return = v_return
183
- end
184
- end
185
- # {http:controls.classes.win32.server.sirius.org/}FindItemData
186
- # arg0 - SOAP::SOAPLong
187
- # arg1 - SOAP::SOAPInt
188
- # arg2 - Sirius::Client::Win32::Core::Combobox::Lparam
189
- class FindItemData
42
+ # arg1 - SOAP::SOAPInt
43
+ # arg2 - SOAP::SOAPString
44
+ class FindStringExact
45
+ attr_accessor :arg0
46
+ attr_accessor :arg1
47
+ attr_accessor :arg2
48
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
49
+ @arg1 = arg1
50
+ @arg2 = arg2
51
+ end
52
+ end
53
+ # {http:controls.classes.win32.server.sirius.org/}FindStringExactResponse
54
+ # m_return - SOAP::SOAPInt
55
+ class FindStringExactResponse
190
56
  def m_return
57
+ @v_return
58
+ end
59
+
60
+ def m_return=(value) @v_return = value
61
+ end
62
+
63
+ def initialize(v_return = nil) @v_return = v_return
64
+ end
65
+ end
66
+ # {http:controls.classes.win32.server.sirius.org/}GetExtendedUI
67
+ # arg0 - SOAP::SOAPLong
68
+ class GetExtendedUI
191
69
  attr_accessor :arg0
192
- attr_accessor :arg1
193
- attr_accessor :arg2
194
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
195
- @arg1 = arg1
196
- @arg2 = arg2
197
- end
198
- end
199
- # {http:controls.classes.win32.server.sirius.org/}number
200
- # abstract
201
- class Number
202
70
  def initialize
203
- end
204
- end
205
- # {http:controls.classes.win32.server.sirius.org/}integerType
206
- # abstract
207
- class IntegerType < Number
208
71
  def initialize
209
- end
210
- end
211
- # {http:controls.classes.win32.server.sirius.org/}longPTR
212
- class LongPTR < IntegerType
213
72
  def initialize
214
- end
215
- end
216
- # {http:controls.classes.win32.server.sirius.org/}lparam
217
- class Lparam < LongPTR
218
73
  def initialize
219
- end
220
- end
221
- # {http:controls.classes.win32.server.sirius.org/}FindItemDataResponse
222
- # m_return - SOAP::SOAPInt
223
- class FindItemDataResponse
224
74
  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/}GetEditSel
235
- # arg0 - SOAP::SOAPLong
236
- class GetEditSel
237
- attr_accessor :arg0
238
- def initialize(arg0 = nil) @arg0 = arg0
239
- end
240
- end
241
- # {http:controls.classes.win32.server.sirius.org/}GetEditSelResponse
242
- # m_return - SOAP::SOAPInt
243
- class GetEditSelResponse
244
75
  def m_return
245
- @v_return
246
- end
247
-
248
- def m_return=(value) @v_return = value
249
- end
250
-
251
- def initialize(v_return = nil) @v_return = v_return
252
- end
253
- end
254
- # {http:controls.classes.win32.server.sirius.org/}SelectString
255
- # arg0 - SOAP::SOAPLong
256
- # arg1 - SOAP::SOAPInt
257
- # arg2 - SOAP::SOAPString
258
- class SelectString
76
+ def initialize(arg0 = nil) @arg0 = arg0
77
+ end
78
+ end
79
+ # {http:controls.classes.win32.server.sirius.org/}GetExtendedUIResponse
80
+ # m_return - SOAP::SOAPInt
81
+ class GetExtendedUIResponse
259
82
  def m_return
83
+ @v_return
84
+ end
85
+
86
+ def m_return=(value) @v_return = value
87
+ end
88
+
89
+ def initialize(v_return = nil) @v_return = v_return
90
+ end
91
+ end
92
+ # {http:controls.classes.win32.server.sirius.org/}ResetContent
93
+ # arg0 - SOAP::SOAPLong
94
+ class ResetContent
260
95
  attr_accessor :arg0
261
- attr_accessor :arg1
262
- attr_accessor :arg2
263
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
264
- @arg1 = arg1
265
- @arg2 = arg2
266
- end
267
- end
268
- # {http:controls.classes.win32.server.sirius.org/}SelectStringResponse
269
- # m_return - SOAP::SOAPInt
270
- class SelectStringResponse
271
96
  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/}GetItemHeight
282
- # arg0 - SOAP::SOAPLong
283
- class GetItemHeight
284
- attr_accessor :arg0
285
- def initialize(arg0 = nil) @arg0 = arg0
286
- end
287
- end
288
- # {http:controls.classes.win32.server.sirius.org/}GetItemHeightResponse
289
- # m_return - SOAP::SOAPInt
290
- class GetItemHeightResponse
291
97
  def m_return
292
- @v_return
293
- end
294
-
295
- def m_return=(value) @v_return = value
296
- end
297
-
298
- def initialize(v_return = nil) @v_return = v_return
299
- end
300
- end
301
- # {http:controls.classes.win32.server.sirius.org/}GetText
302
- # arg0 - SOAP::SOAPLong
303
- class GetText
304
- attr_accessor :arg0
305
- def initialize(arg0 = nil) @arg0 = arg0
306
- end
307
- end
308
- # {http:controls.classes.win32.server.sirius.org/}GetTextResponse
309
- # m_return - SOAP::SOAPString
310
- class GetTextResponse
311
98
  def m_return
312
- @v_return
313
- end
314
-
315
- def m_return=(value) @v_return = value
316
- end
317
-
318
- def initialize(v_return = nil) @v_return = v_return
319
- end
320
- end
321
- # {http:controls.classes.win32.server.sirius.org/}FindString
322
- # arg0 - SOAP::SOAPLong
323
- # arg1 - SOAP::SOAPInt
324
- # arg2 - SOAP::SOAPString
325
- class FindString
99
+ def initialize(arg0 = nil) @arg0 = arg0
100
+ end
101
+ end
102
+ # {http:controls.classes.win32.server.sirius.org/}ResetContentResponse
103
+ # m_return - SOAP::SOAPInt
104
+ class ResetContentResponse
326
105
  def m_return
106
+ @v_return
107
+ end
108
+
109
+ def m_return=(value) @v_return = value
110
+ end
111
+
112
+ def initialize(v_return = nil) @v_return = v_return
113
+ end
114
+ end
115
+ # {http:controls.classes.win32.server.sirius.org/}GetTextLength
116
+ # arg0 - SOAP::SOAPLong
117
+ class GetTextLength
327
118
  attr_accessor :arg0
328
- attr_accessor :arg1
329
- attr_accessor :arg2
330
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
331
- @arg1 = arg1
332
- @arg2 = arg2
333
- end
334
- end
335
- # {http:controls.classes.win32.server.sirius.org/}FindStringResponse
336
- # m_return - SOAP::SOAPInt
337
- class FindStringResponse
338
119
  def m_return
339
- @v_return
340
- end
341
-
342
- def m_return=(value) @v_return = value
343
- end
344
-
345
- def initialize(v_return = nil) @v_return = v_return
346
- end
347
- end
348
- # {http:controls.classes.win32.server.sirius.org/}ShowDropdown
349
- # arg0 - SOAP::SOAPLong
350
- # arg1 - SOAP::SOAPBoolean
351
- class ShowDropdown
120
+ def initialize(arg0 = nil) @arg0 = arg0
121
+ end
122
+ end
123
+ # {http:controls.classes.win32.server.sirius.org/}GetTextLengthResponse
124
+ # m_return - SOAP::SOAPInt
125
+ class GetTextLengthResponse
352
126
  def m_return
127
+ @v_return
128
+ end
129
+
130
+ def m_return=(value) @v_return = value
131
+ end
132
+
133
+ def initialize(v_return = nil) @v_return = v_return
134
+ end
135
+ end
136
+ # {http:controls.classes.win32.server.sirius.org/}GetDroppedState
137
+ # arg0 - SOAP::SOAPLong
138
+ class GetDroppedState
353
139
  attr_accessor :arg0
354
- attr_accessor :arg1
355
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
140
+ def initialize(arg0 = nil) @arg0 = arg0
141
+ end
142
+ end
143
+ # {http:controls.classes.win32.server.sirius.org/}GetDroppedStateResponse
144
+ # m_return - SOAP::SOAPInt
145
+ class GetDroppedStateResponse
356
146
  def m_return
147
+ @v_return
148
+ end
149
+
150
+ def m_return=(value) @v_return = value
151
+ end
152
+
153
+ def initialize(v_return = nil) @v_return = v_return
154
+ end
155
+ end
156
+ # {http:controls.classes.win32.server.sirius.org/}SetItemHeight
157
+ # arg0 - SOAP::SOAPLong
158
+ # arg1 - SOAP::SOAPInt
159
+ # arg2 - SOAP::SOAPInt
160
+ class SetItemHeight
161
+ attr_accessor :arg0
162
+ attr_accessor :arg1
163
+ attr_accessor :arg2
164
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
357
165
  @arg1 = arg1
358
- end
359
- end
360
- # {http:controls.classes.win32.server.sirius.org/}ShowDropdownResponse
361
- # m_return - SOAP::SOAPInt
362
- class ShowDropdownResponse
363
166
  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/}SetText
374
- # arg0 - SOAP::SOAPLong
375
- # arg1 - SOAP::SOAPString
376
- class SetText
167
+ @arg2 = arg2
168
+ end
169
+ end
170
+ # {http:controls.classes.win32.server.sirius.org/}SetItemHeightResponse
171
+ # m_return - SOAP::SOAPInt
172
+ class SetItemHeightResponse
377
173
  def m_return
174
+ @v_return
175
+ end
176
+
177
+ def m_return=(value) @v_return = value
178
+ end
179
+
180
+ def initialize(v_return = nil) @v_return = v_return
181
+ end
182
+ end
183
+ # {http:controls.classes.win32.server.sirius.org/}GetCount
184
+ # arg0 - SOAP::SOAPLong
185
+ class GetCount
378
186
  attr_accessor :arg0
379
- attr_accessor :arg1
380
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
381
- @arg1 = arg1
382
- end
383
- end
384
- # {http:controls.classes.win32.server.sirius.org/}SetTextResponse
385
- class SetTextResponse
386
187
  def initialize
387
- end
388
- end
389
- # {http:controls.classes.win32.server.sirius.org/}GetCurSel
188
+ def initialize(arg0 = nil) @arg0 = arg0
189
+ end
190
+ end
191
+ # {http:controls.classes.win32.server.sirius.org/}GetCountResponse
192
+ # m_return - SOAP::SOAPInt
193
+ class GetCountResponse
390
194
  def m_return
195
+ @v_return
196
+ end
197
+
198
+ def m_return=(value) @v_return = value
199
+ end
200
+
201
+ def initialize(v_return = nil) @v_return = v_return
202
+ end
203
+ end
204
+ # {http:controls.classes.win32.server.sirius.org/}FindItemData
391
205
  # arg0 - SOAP::SOAPLong
392
- class GetCurSel
393
- attr_accessor :arg0
394
- def initialize(arg0 = nil) @arg0 = arg0
395
- end
396
- end
397
- # {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
398
- # m_return - SOAP::SOAPInt
399
- class GetCurSelResponse
400
206
  def m_return
401
- @v_return
402
- end
403
-
404
- def m_return=(value) @v_return = value
405
- end
406
-
407
- def initialize(v_return = nil) @v_return = v_return
408
- end
409
- end
410
- # {http:controls.classes.win32.server.sirius.org/}GetItemData
411
- # arg0 - SOAP::SOAPLong
412
207
  # arg1 - SOAP::SOAPInt
413
- class GetItemData
414
- attr_accessor :arg0
415
- attr_accessor :arg1
416
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
208
+ # arg2 - Sirius::Client::Win32::Core::Combobox::Lparam
209
+ class FindItemData
210
+ attr_accessor :arg0
211
+ attr_accessor :arg1
212
+ attr_accessor :arg2
213
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
417
214
  @arg1 = arg1
418
- end
419
- end
420
- # {http:controls.classes.win32.server.sirius.org/}GetItemDataResponse
421
- # m_return - SOAP::SOAPInt
422
- class GetItemDataResponse
423
215
  def m_return
424
- @v_return
425
- end
426
-
427
- def m_return=(value) @v_return = value
428
- end
429
-
430
- def initialize(v_return = nil) @v_return = v_return
431
- end
432
- end
433
- # {http:controls.classes.win32.server.sirius.org/}GetLBText
434
- # arg0 - SOAP::SOAPLong
435
- # arg1 - SOAP::SOAPInt
436
- # arg2 - SOAP::SOAPString
437
- class GetLBText
216
+ @arg2 = arg2
217
+ end
218
+ end
219
+ # {http:controls.classes.win32.server.sirius.org/}number
220
+ # abstract
221
+ class Number
438
222
  def initialize
223
+ end
224
+ end
225
+ # {http:controls.classes.win32.server.sirius.org/}integerType
226
+ # abstract
227
+ class IntegerType < Number
439
228
  def initialize
229
+ end
230
+ end
231
+ # {http:controls.classes.win32.server.sirius.org/}longPTR
232
+ class LongPTR < IntegerType
440
233
  def initialize
234
+ end
235
+ end
236
+ # {http:controls.classes.win32.server.sirius.org/}lparam
237
+ class Lparam < LongPTR
441
238
  def initialize
239
+ end
240
+ end
241
+ # {http:controls.classes.win32.server.sirius.org/}FindItemDataResponse
242
+ # m_return - SOAP::SOAPInt
243
+ class FindItemDataResponse
442
244
  def m_return
245
+ @v_return
246
+ end
247
+
248
+ def m_return=(value) @v_return = value
249
+ end
250
+
251
+ def initialize(v_return = nil) @v_return = v_return
252
+ end
253
+ end
254
+ # {http:controls.classes.win32.server.sirius.org/}GetEditSel
255
+ # arg0 - SOAP::SOAPLong
256
+ class GetEditSel
443
257
  attr_accessor :arg0
444
- attr_accessor :arg1
445
- attr_accessor :arg2
446
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
447
- @arg1 = arg1
448
- @arg2 = arg2
449
- end
450
- end
451
- # {http:controls.classes.win32.server.sirius.org/}GetLBTextResponse
452
- # m_return - SOAP::SOAPInt
453
- class GetLBTextResponse
454
258
  def m_return
455
- @v_return
456
- end
457
-
458
- def m_return=(value) @v_return = value
459
- end
460
-
461
- def initialize(v_return = nil) @v_return = v_return
462
- end
463
- end
464
- # {http:controls.classes.win32.server.sirius.org/}SetCurSel
465
- # arg0 - SOAP::SOAPLong
259
+ def initialize(arg0 = nil) @arg0 = arg0
260
+ end
261
+ end
262
+ # {http:controls.classes.win32.server.sirius.org/}GetEditSelResponse
263
+ # m_return - SOAP::SOAPInt
264
+ class GetEditSelResponse
466
265
  def m_return
266
+ @v_return
267
+ end
268
+
269
+ def m_return=(value) @v_return = value
270
+ end
271
+
272
+ def initialize(v_return = nil) @v_return = v_return
273
+ end
274
+ end
275
+ # {http:controls.classes.win32.server.sirius.org/}SelectString
276
+ # arg0 - SOAP::SOAPLong
467
277
  # arg1 - SOAP::SOAPInt
468
- class SetCurSel
469
- attr_accessor :arg0
470
- attr_accessor :arg1
471
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
278
+ # arg2 - SOAP::SOAPString
279
+ class SelectString
280
+ attr_accessor :arg0
281
+ attr_accessor :arg1
282
+ attr_accessor :arg2
283
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
472
284
  @arg1 = arg1
473
- end
474
- end
475
- # {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
476
- # m_return - SOAP::SOAPInt
477
- class SetCurSelResponse
478
285
  def m_return
479
- @v_return
480
- end
481
-
482
- def m_return=(value) @v_return = value
483
- end
484
-
485
- def initialize(v_return = nil) @v_return = v_return
486
- end
487
- end
488
- # {http:controls.classes.win32.server.sirius.org/}GetLBTextLen
489
- # arg0 - SOAP::SOAPLong
286
+ @arg2 = arg2
287
+ end
288
+ end
289
+ # {http:controls.classes.win32.server.sirius.org/}SelectStringResponse
290
+ # m_return - SOAP::SOAPInt
291
+ class SelectStringResponse
490
292
  def m_return
293
+ @v_return
294
+ end
295
+
296
+ def m_return=(value) @v_return = value
297
+ end
298
+
299
+ def initialize(v_return = nil) @v_return = v_return
300
+ end
301
+ end
302
+ # {http:controls.classes.win32.server.sirius.org/}GetItemHeight
303
+ # arg0 - SOAP::SOAPLong
304
+ class GetItemHeight
305
+ attr_accessor :arg0
306
+ def initialize(arg0 = nil) @arg0 = arg0
307
+ end
308
+ end
309
+ # {http:controls.classes.win32.server.sirius.org/}GetItemHeightResponse
310
+ # m_return - SOAP::SOAPInt
311
+ class GetItemHeightResponse
491
312
  def m_return
313
+ @v_return
314
+ end
315
+
316
+ def m_return=(value) @v_return = value
317
+ end
318
+
319
+ def initialize(v_return = nil) @v_return = v_return
320
+ end
321
+ end
322
+ # {http:controls.classes.win32.server.sirius.org/}GetText
323
+ # arg0 - SOAP::SOAPLong
324
+ class GetText
325
+ attr_accessor :arg0
326
+ def initialize(arg0 = nil) @arg0 = arg0
327
+ end
328
+ end
329
+ # {http:controls.classes.win32.server.sirius.org/}GetTextResponse
330
+ # m_return - SOAP::SOAPString
331
+ class GetTextResponse
492
332
  def m_return
333
+ @v_return
334
+ end
335
+
336
+ def m_return=(value) @v_return = value
337
+ end
338
+
339
+ def initialize(v_return = nil) @v_return = v_return
340
+ end
341
+ end
342
+ # {http:controls.classes.win32.server.sirius.org/}FindString
343
+ # arg0 - SOAP::SOAPLong
493
344
  # arg1 - SOAP::SOAPInt
494
- class GetLBTextLen
345
+ # arg2 - SOAP::SOAPString
346
+ class FindString
347
+ attr_accessor :arg0
348
+ attr_accessor :arg1
349
+ attr_accessor :arg2
350
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
351
+ @arg1 = arg1
352
+ @arg2 = arg2
353
+ end
354
+ end
355
+ # {http:controls.classes.win32.server.sirius.org/}FindStringResponse
356
+ # m_return - SOAP::SOAPInt
357
+ class FindStringResponse
495
358
  def m_return
359
+ @v_return
360
+ end
361
+
362
+ def m_return=(value) @v_return = value
363
+ end
364
+
365
+ def initialize(v_return = nil) @v_return = v_return
366
+ end
367
+ end
368
+ # {http:controls.classes.win32.server.sirius.org/}ShowDropdown
369
+ # arg0 - SOAP::SOAPLong
370
+ # arg1 - SOAP::SOAPBoolean
371
+ class ShowDropdown
372
+ attr_accessor :arg0
373
+ attr_accessor :arg1
374
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
375
+ @arg1 = arg1
376
+ end
377
+ end
378
+ # {http:controls.classes.win32.server.sirius.org/}ShowDropdownResponse
379
+ # m_return - SOAP::SOAPInt
380
+ class ShowDropdownResponse
496
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/}SetText
392
+ # arg0 - SOAP::SOAPLong
393
+ # arg1 - SOAP::SOAPString
394
+ class SetText
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/}SetTextResponse
402
+ class SetTextResponse
497
403
  def initialize
404
+ end
405
+ end
406
+ # {http:controls.classes.win32.server.sirius.org/}GetCurSel
407
+ # arg0 - SOAP::SOAPLong
408
+ class GetCurSel
498
409
  attr_accessor :arg0
499
- attr_accessor :arg1
500
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
410
+ def initialize(arg0 = nil) @arg0 = arg0
411
+ end
412
+ end
413
+ # {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
414
+ # m_return - SOAP::SOAPInt
415
+ class GetCurSelResponse
501
416
  def m_return
417
+ @v_return
418
+ end
419
+
420
+ def m_return=(value) @v_return = value
421
+ end
422
+
423
+ def initialize(v_return = nil) @v_return = v_return
424
+ end
425
+ end
426
+ # {http:controls.classes.win32.server.sirius.org/}GetItemData
427
+ # arg0 - SOAP::SOAPLong
428
+ # arg1 - SOAP::SOAPInt
429
+ class GetItemData
430
+ attr_accessor :arg0
431
+ attr_accessor :arg1
432
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
433
+ @arg1 = arg1
434
+ end
435
+ end
436
+ # {http:controls.classes.win32.server.sirius.org/}GetItemDataResponse
437
+ # m_return - SOAP::SOAPInt
438
+ class GetItemDataResponse
502
439
  def m_return
440
+ @v_return
441
+ end
442
+
443
+ def m_return=(value) @v_return = value
444
+ end
445
+
446
+ def initialize(v_return = nil) @v_return = v_return
447
+ end
448
+ end
449
+ # {http:controls.classes.win32.server.sirius.org/}GetLBText
450
+ # arg0 - SOAP::SOAPLong
451
+ # arg1 - SOAP::SOAPInt
452
+ # arg2 - SOAP::SOAPString
453
+ class GetLBText
454
+ attr_accessor :arg0
455
+ attr_accessor :arg1
456
+ attr_accessor :arg2
457
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
503
458
  @arg1 = arg1
504
- end
505
- end
506
- # {http:controls.classes.win32.server.sirius.org/}GetLBTextLenResponse
507
- # m_return - SOAP::SOAPInt
508
- class GetLBTextLenResponse
509
459
  def m_return
510
- @v_return
511
- end
512
-
513
- def m_return=(value) @v_return = value
514
- end
515
-
516
- def initialize(v_return = nil) @v_return = v_return
517
- end
518
- end
519
-
520
- end; end; end; end; end
460
+ @arg2 = arg2
461
+ end
462
+ end
463
+ # {http:controls.classes.win32.server.sirius.org/}GetLBTextResponse
464
+ # m_return - SOAP::SOAPInt
465
+ class GetLBTextResponse
521
466
  def m_return
467
+ @v_return
468
+ end
469
+
470
+ def m_return=(value) @v_return = value
471
+ end
472
+
473
+ def initialize(v_return = nil) @v_return = v_return
474
+ end
475
+ end
476
+ # {http:controls.classes.win32.server.sirius.org/}SetCurSel
477
+ # arg0 - SOAP::SOAPLong
478
+ # arg1 - SOAP::SOAPInt
479
+ class SetCurSel
480
+ attr_accessor :arg0
481
+ attr_accessor :arg1
482
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
483
+ @arg1 = arg1
484
+ end
485
+ end
486
+ # {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
487
+ # m_return - SOAP::SOAPInt
488
+ class SetCurSelResponse
522
489
  def m_return
490
+ @v_return
491
+ end
492
+
493
+ def m_return=(value) @v_return = value
494
+ end
495
+
496
+ def initialize(v_return = nil) @v_return = v_return
497
+ end
498
+ end
499
+ # {http:controls.classes.win32.server.sirius.org/}GetLBTextLen
500
+ # arg0 - SOAP::SOAPLong
501
+ # arg1 - SOAP::SOAPInt
502
+ class GetLBTextLen
503
+ attr_accessor :arg0
504
+ attr_accessor :arg1
505
+ def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
506
+ @arg1 = arg1
507
+ end
508
+ end
509
+ # {http:controls.classes.win32.server.sirius.org/}GetLBTextLenResponse
510
+ # m_return - SOAP::SOAPInt
511
+ class GetLBTextLenResponse
523
512
  def m_return
513
+ @v_return
514
+ end
515
+
516
+ def m_return=(value) @v_return = value
517
+ end
518
+
519
+ def initialize(v_return = nil) @v_return = v_return
520
+ end
521
+ end
522
+
523
+ end; end; end; end; end