sirius-client-win32 2013.4.1.0 → 2013.4.30.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. data/Rakefile +31 -1
  2. data/lib/sirius/win32.rb +6 -3
  3. data/lib/sirius/win32/classes/Control.rb +7 -1
  4. data/lib/sirius/win32/classes/DialogBox.rb +27 -2
  5. data/lib/sirius/win32/classes/MainWindow.rb +6 -2
  6. data/lib/sirius/win32/classes/Menu.rb +21 -11
  7. data/lib/sirius/win32/classes/MenuItem.rb +4 -5
  8. data/lib/sirius/win32/classes/MovableWindow.rb +3 -3
  9. data/lib/sirius/win32/classes/TopLevelWindow.rb +5 -4
  10. data/lib/sirius/win32/classes/Window.rb +19 -17
  11. data/lib/sirius/win32/classes/controls/Button.rb +4 -1
  12. data/lib/sirius/win32/classes/controls/CheckBox.rb +4 -1
  13. data/lib/sirius/win32/core.rb +19 -5
  14. data/lib/sirius/win32/core/button/ButtonService.rb +73 -35
  15. data/lib/sirius/win32/core/button/ButtonServiceClient.rb +1 -1
  16. data/lib/sirius/win32/core/button/ButtonServiceDriver.rb +12 -11
  17. data/lib/sirius/win32/core/button/ButtonServiceMappingRegistry.rb +1 -1
  18. data/lib/sirius/win32/core/combobox/ComboBoxService.rb +553 -249
  19. data/lib/sirius/win32/core/combobox/ComboBoxServiceClient.rb +1 -1
  20. data/lib/sirius/win32/core/combobox/ComboBoxServiceDriver.rb +46 -45
  21. data/lib/sirius/win32/core/combobox/ComboBoxServiceMappingRegistry.rb +1 -1
  22. data/lib/sirius/win32/core/dialog/DialogService.rb +182 -89
  23. data/lib/sirius/win32/core/dialog/DialogServiceClient.rb +1 -1
  24. data/lib/sirius/win32/core/dialog/DialogServiceDriver.rb +20 -19
  25. data/lib/sirius/win32/core/dialog/DialogServiceMappingRegistry.rb +1 -1
  26. data/lib/sirius/win32/core/edit/EditService.rb +357 -180
  27. data/lib/sirius/win32/core/edit/EditServiceClient.rb +1 -1
  28. data/lib/sirius/win32/core/edit/EditServiceDriver.rb +38 -37
  29. data/lib/sirius/win32/core/edit/EditServiceMappingRegistry.rb +1 -1
  30. data/lib/sirius/win32/core/listbox/ListBoxService.rb +373 -186
  31. data/lib/sirius/win32/core/listbox/ListBoxServiceClient.rb +1 -1
  32. data/lib/sirius/win32/core/listbox/ListBoxServiceDriver.rb +38 -37
  33. data/lib/sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb +1 -1
  34. data/lib/sirius/win32/core/menu/MenuService.rb +425 -209
  35. data/lib/sirius/win32/core/menu/MenuServiceClient.rb +1 -1
  36. data/lib/sirius/win32/core/menu/MenuServiceDriver.rb +26 -25
  37. data/lib/sirius/win32/core/menu/MenuServiceMappingRegistry.rb +1 -1
  38. data/lib/sirius/win32/core/tabcontrol/TabControlService.rb +285 -139
  39. data/lib/sirius/win32/core/tabcontrol/TabControlServiceClient.rb +1 -1
  40. data/lib/sirius/win32/core/tabcontrol/TabControlServiceDriver.rb +22 -21
  41. data/lib/sirius/win32/core/tabcontrol/TabControlServiceMappingRegistry.rb +1 -1
  42. data/lib/sirius/win32/core/utils/Win32UtilsService.rb +49 -22
  43. data/lib/sirius/win32/core/utils/Win32UtilsServiceClient.rb +1 -1
  44. data/lib/sirius/win32/core/utils/Win32UtilsServiceDriver.rb +8 -7
  45. data/lib/sirius/win32/core/utils/Win32UtilsServiceMappingRegistry.rb +1 -1
  46. data/lib/sirius/win32/core/window/WindowService.rb +643 -313
  47. data/lib/sirius/win32/core/window/WindowServiceClient.rb +1 -1
  48. data/lib/sirius/win32/core/window/WindowServiceDriver.rb +62 -61
  49. data/lib/sirius/win32/core/window/WindowServiceMappingRegistry.rb +1 -1
  50. metadata +2 -2
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- require 'ButtonServiceDriver.rb'
2
+ require 'sirius/win32/core/button/ButtonServiceDriver.rb'
3
3
 
4
4
  Sirius::Client::Win32::Core::Button
5
5
 
@@ -1,40 +1,41 @@
1
- require 'ButtonService.rb'
2
- require 'ButtonServiceMappingRegistry.rb'
1
+ require 'sirius/win32/core/button/ButtonService.rb'
2
+ require 'sirius/win32/core/button/ButtonServiceMappingRegistry.rb'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Sirius::Client::Win32::Core::Button
6
6
 
7
7
 
8
- class Button < ::SOAP::RPC::Driver DefaultEndpointUrl = "http:localhost:21212/win32/button"
8
+ class Button < ::SOAP::RPC::Driver
9
+ DefaultEndpointUrl = "http:localhost:21212/win32/button"
9
10
  Methods = [
10
11
  [ "",
11
12
  "setState",
12
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetState"]],
13
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetStateResponse"]] ],
13
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetState"]],
14
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetStateResponse"]] ],
14
15
  { :request_style => :document, :request_use => :literal,
15
16
  :response_style => :document, :response_use => :literal,
16
17
  :faults => {} }
17
18
  ],
18
19
  [ "",
19
20
  "setCheck",
20
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCheck"]],
21
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCheckResponse"]] ],
21
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCheck"]],
22
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCheckResponse"]] ],
22
23
  { :request_style => :document, :request_use => :literal,
23
24
  :response_style => :document, :response_use => :literal,
24
25
  :faults => {} }
25
26
  ],
26
27
  [ "",
27
28
  "getState",
28
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetState"]],
29
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetStateResponse"]] ],
29
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetState"]],
30
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetStateResponse"]] ],
30
31
  { :request_style => :document, :request_use => :literal,
31
32
  :response_style => :document, :response_use => :literal,
32
33
  :faults => {} }
33
34
  ],
34
35
  [ "",
35
36
  "getCheck",
36
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCheck"]],
37
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCheckResponse"]] ],
37
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCheck"]],
38
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCheckResponse"]] ],
38
39
  { :request_style => :document, :request_use => :literal,
39
40
  :response_style => :document, :response_use => :literal,
40
41
  :faults => {} }
@@ -1,4 +1,4 @@
1
- require 'ButtonService.rb'
1
+ require 'sirius/win32/core/button/ButtonService.rb'
2
2
  require 'soap/mapping'
3
3
 
4
4
  module Sirius
5
5
  module Client
6
6
  module Win32
7
7
  module Core
8
8
  module Button
@@ -5,467 +5,771 @@ module Sirius; module Client; module Win32; module Core; module Combobox
5
5
  # {http:controls.classes.win32.server.sirius.org/}SetEditSel
6
6
  # arg0 - SOAP::SOAPLong
7
7
  # arg1 - SOAP::SOAPInt
8
- # arg2 - SOAP::SOAPInt
9
8
  class SetEditSel
10
- attr_accessor :arg0
11
- attr_accessor :arg1
9
+ # arg2 - SOAP::SOAPInt
10
+ class SetEditSel
11
+
12
+ attr_accessor :arg0
13
+
14
+ attr_accessor :arg1
15
+
12
16
  attr_accessor :arg2
13
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
17
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
18
+ @arg0 = arg0
14
19
  @arg1 = arg1
15
- @arg2 = arg2
16
- end
20
+ @arg2 = arg2
21
+
22
+ end
23
+
17
24
  end
18
25
  # {http:controls.classes.win32.server.sirius.org/}SetEditSelResponse
19
- # m_return - SOAP::SOAPInt
20
- class SetEditSelResponse
21
26
  def m_return
22
- @v_return
27
+ # m_return - SOAP::SOAPInt
28
+
29
+ class SetEditSelResponse
30
+ def m_return
31
+ @v_return
32
+
23
33
  end
24
34
 
25
- def m_return=(value) @v_return = value
35
+ def m_return=(value)
36
+ @v_return = value
37
+
38
+ end
39
+
40
+ def initialize(v_return = nil)
41
+ @v_return = v_return
42
+
26
43
  end
27
44
 
28
- def initialize(v_return = nil) @v_return = v_return
29
- end
30
45
  end
31
46
  # {http:controls.classes.win32.server.sirius.org/}FindStringExact
32
47
  # arg0 - SOAP::SOAPLong
33
48
  # arg1 - SOAP::SOAPInt
34
- # arg2 - SOAP::SOAPString
35
- class FindStringExact
36
- attr_accessor :arg0
37
- attr_accessor :arg1
49
+ # arg2 - SOAP::SOAPString
50
+
51
+ class FindStringExact
52
+
53
+ attr_accessor :arg0
54
+
55
+ attr_accessor :arg1
56
+
38
57
  attr_accessor :arg2
39
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
58
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
59
+ @arg0 = arg0
40
60
  @arg1 = arg1
41
- @arg2 = arg2
42
- end
61
+ @arg2 = arg2
62
+
63
+ end
64
+
43
65
  end
44
66
  # {http:controls.classes.win32.server.sirius.org/}FindStringExactResponse
45
- # m_return - SOAP::SOAPInt
46
- class FindStringExactResponse
47
67
  def m_return
48
- @v_return
68
+ # m_return - SOAP::SOAPInt
69
+
70
+ class FindStringExactResponse
71
+ def m_return
72
+ @v_return
73
+
49
74
  end
50
75
 
51
- def m_return=(value) @v_return = value
76
+ def m_return=(value)
77
+ @v_return = value
78
+
79
+ end
80
+
81
+ def initialize(v_return = nil)
82
+ @v_return = v_return
83
+
52
84
  end
53
85
 
54
- def initialize(v_return = nil) @v_return = v_return
55
- end
56
86
  end
57
87
  # {http:controls.classes.win32.server.sirius.org/}GetExtendedUI
58
- # arg0 - SOAP::SOAPLong
59
- class GetExtendedUI
88
+ # arg0 - SOAP::SOAPLong
89
+
90
+ class GetExtendedUI
91
+
60
92
  attr_accessor :arg0
61
- def initialize(arg0 = nil) @arg0 = arg0
62
- end
93
+ def initialize(arg0 = nil)
94
+ @arg0 = arg0
95
+
96
+ end
97
+
63
98
  end
64
99
  # {http:controls.classes.win32.server.sirius.org/}GetExtendedUIResponse
65
- # m_return - SOAP::SOAPInt
66
- class GetExtendedUIResponse
67
100
  def m_return
68
- @v_return
101
+ # m_return - SOAP::SOAPInt
102
+
103
+ class GetExtendedUIResponse
104
+ def m_return
105
+ @v_return
106
+
69
107
  end
70
108
 
71
- def m_return=(value) @v_return = value
109
+ def m_return=(value)
110
+ @v_return = value
111
+
112
+ end
113
+
114
+ def initialize(v_return = nil)
115
+ @v_return = v_return
116
+
72
117
  end
73
118
 
74
- def initialize(v_return = nil) @v_return = v_return
75
- end
76
119
  end
77
120
  # {http:controls.classes.win32.server.sirius.org/}ResetContent
78
- # arg0 - SOAP::SOAPLong
79
- class ResetContent
121
+ # arg0 - SOAP::SOAPLong
122
+
123
+ class ResetContent
124
+
80
125
  attr_accessor :arg0
81
- def initialize(arg0 = nil) @arg0 = arg0
82
- end
126
+ def initialize(arg0 = nil)
127
+ @arg0 = arg0
128
+
129
+ end
130
+
83
131
  end
84
132
  # {http:controls.classes.win32.server.sirius.org/}ResetContentResponse
85
- # m_return - SOAP::SOAPInt
86
- class ResetContentResponse
87
133
  def m_return
88
- @v_return
134
+ # m_return - SOAP::SOAPInt
135
+
136
+ class ResetContentResponse
137
+ def m_return
138
+ @v_return
139
+
89
140
  end
90
141
 
91
- def m_return=(value) @v_return = value
142
+ def m_return=(value)
143
+ @v_return = value
144
+
145
+ end
146
+
147
+ def initialize(v_return = nil)
148
+ @v_return = v_return
149
+
92
150
  end
93
151
 
94
- def initialize(v_return = nil) @v_return = v_return
95
- end
96
152
  end
97
153
  # {http:controls.classes.win32.server.sirius.org/}GetTextLength
98
- # arg0 - SOAP::SOAPLong
99
- class GetTextLength
154
+ # arg0 - SOAP::SOAPLong
155
+
156
+ class GetTextLength
157
+
100
158
  attr_accessor :arg0
101
- def initialize(arg0 = nil) @arg0 = arg0
102
- end
159
+ def initialize(arg0 = nil)
160
+ @arg0 = arg0
161
+
162
+ end
163
+
103
164
  end
104
165
  # {http:controls.classes.win32.server.sirius.org/}GetTextLengthResponse
105
- # m_return - SOAP::SOAPInt
106
- class GetTextLengthResponse
107
166
  def m_return
108
- @v_return
167
+ # m_return - SOAP::SOAPInt
168
+
169
+ class GetTextLengthResponse
170
+ def m_return
171
+ @v_return
172
+
109
173
  end
110
174
 
111
- def m_return=(value) @v_return = value
175
+ def m_return=(value)
176
+ @v_return = value
177
+
178
+ end
179
+
180
+ def initialize(v_return = nil)
181
+ @v_return = v_return
182
+
112
183
  end
113
184
 
114
- def initialize(v_return = nil) @v_return = v_return
115
- end
116
185
  end
117
186
  # {http:controls.classes.win32.server.sirius.org/}GetDroppedState
118
- # arg0 - SOAP::SOAPLong
119
- class GetDroppedState
187
+ # arg0 - SOAP::SOAPLong
188
+
189
+ class GetDroppedState
190
+
120
191
  attr_accessor :arg0
121
- def initialize(arg0 = nil) @arg0 = arg0
122
- end
192
+ def initialize(arg0 = nil)
193
+ @arg0 = arg0
194
+
195
+ end
196
+
123
197
  end
124
198
  # {http:controls.classes.win32.server.sirius.org/}GetDroppedStateResponse
125
- # m_return - SOAP::SOAPInt
126
- class GetDroppedStateResponse
127
199
  def m_return
128
- @v_return
200
+ # m_return - SOAP::SOAPInt
201
+
202
+ class GetDroppedStateResponse
203
+ def m_return
204
+ @v_return
205
+
206
+ end
207
+
208
+ def m_return=(value)
209
+ @v_return = value
210
+
129
211
  end
130
212
 
131
- def m_return=(value) @v_return = value
213
+ def initialize(v_return = nil)
214
+ @v_return = v_return
215
+
132
216
  end
133
217
 
134
- def initialize(v_return = nil) @v_return = v_return
135
- end
136
218
  end
137
219
  # {http:controls.classes.win32.server.sirius.org/}SetItemHeight
138
220
  # arg0 - SOAP::SOAPLong
139
221
  # arg1 - SOAP::SOAPInt
140
- # arg2 - SOAP::SOAPInt
141
- class SetItemHeight
142
- attr_accessor :arg0
143
- attr_accessor :arg1
222
+ # arg2 - SOAP::SOAPInt
223
+
224
+ class SetItemHeight
225
+
226
+ attr_accessor :arg0
227
+
228
+ attr_accessor :arg1
229
+
144
230
  attr_accessor :arg2
145
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
231
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
232
+ @arg0 = arg0
146
233
  @arg1 = arg1
147
- @arg2 = arg2
148
- end
234
+ @arg2 = arg2
235
+
236
+ end
237
+
149
238
  end
150
239
  # {http:controls.classes.win32.server.sirius.org/}SetItemHeightResponse
151
- # m_return - SOAP::SOAPInt
152
- class SetItemHeightResponse
153
240
  def m_return
154
- @v_return
241
+ # m_return - SOAP::SOAPInt
242
+
243
+ class SetItemHeightResponse
244
+ def m_return
245
+ @v_return
246
+
155
247
  end
156
248
 
157
- def m_return=(value) @v_return = value
249
+ def m_return=(value)
250
+ @v_return = value
251
+
252
+ end
253
+
254
+ def initialize(v_return = nil)
255
+ @v_return = v_return
256
+
158
257
  end
159
258
 
160
- def initialize(v_return = nil) @v_return = v_return
161
- end
162
259
  end
163
260
  # {http:controls.classes.win32.server.sirius.org/}GetCount
164
- # arg0 - SOAP::SOAPLong
165
- class GetCount
261
+ # arg0 - SOAP::SOAPLong
262
+
263
+ class GetCount
264
+
166
265
  attr_accessor :arg0
167
- def initialize(arg0 = nil) @arg0 = arg0
168
- end
266
+ def initialize(arg0 = nil)
267
+ @arg0 = arg0
268
+
269
+ end
270
+
169
271
  end
170
272
  # {http:controls.classes.win32.server.sirius.org/}GetCountResponse
171
- # m_return - SOAP::SOAPInt
172
- class GetCountResponse
173
273
  def m_return
174
- @v_return
274
+ # m_return - SOAP::SOAPInt
275
+
276
+ class GetCountResponse
277
+ def m_return
278
+ @v_return
279
+
175
280
  end
176
281
 
177
- def m_return=(value) @v_return = value
282
+ def m_return=(value)
283
+ @v_return = value
284
+
285
+ end
286
+
287
+ def initialize(v_return = nil)
288
+ @v_return = v_return
289
+
178
290
  end
179
291
 
180
- def initialize(v_return = nil) @v_return = v_return
181
- end
182
292
  end
183
293
  # {http:controls.classes.win32.server.sirius.org/}FindItemData
184
294
  # arg0 - SOAP::SOAPLong
185
295
  # arg1 - SOAP::SOAPInt
186
- # arg2 - Sirius::Client::Win32::Core::Combobox::Lparam
187
- class FindItemData
188
- attr_accessor :arg0
189
- attr_accessor :arg1
296
+ # arg2 - Sirius::Client::Win32::Core::Combobox::Lparam
297
+
298
+ class FindItemData
299
+
300
+ attr_accessor :arg0
301
+
302
+ attr_accessor :arg1
303
+
190
304
  attr_accessor :arg2
191
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
305
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
306
+ @arg0 = arg0
192
307
  @arg1 = arg1
193
- @arg2 = arg2
194
- end
308
+ @arg2 = arg2
309
+
310
+ end
311
+
195
312
  end
196
313
  # {http:controls.classes.win32.server.sirius.org/}number
197
- # abstract
198
- class Number
199
314
  def initialize
200
- end
315
+ # abstract
316
+
317
+ class Number
318
+ def initialize
319
+
320
+ end
321
+
201
322
  end
202
323
  # {http:controls.classes.win32.server.sirius.org/}integerType
203
- # abstract
204
- class IntegerType < Number
205
324
  def initialize
206
- end
325
+ # abstract
326
+
327
+ class IntegerType < Number
328
+ def initialize
329
+
330
+ end
331
+
207
332
  end
208
- # {http:controls.classes.win32.server.sirius.org/}longPTR
209
- class LongPTR < IntegerType
210
333
  def initialize
211
- end
334
+ # {http:controls.classes.win32.server.sirius.org/}longPTR
335
+
336
+ class LongPTR < IntegerType
337
+ def initialize
338
+
339
+ end
340
+
212
341
  end
213
- # {http:controls.classes.win32.server.sirius.org/}lparam
214
- class Lparam < LongPTR
215
342
  def initialize
216
- end
343
+ # {http:controls.classes.win32.server.sirius.org/}lparam
344
+
345
+ class Lparam < LongPTR
346
+ def initialize
347
+
348
+ end
349
+
217
350
  end
218
351
  # {http:controls.classes.win32.server.sirius.org/}FindItemDataResponse
219
- # m_return - SOAP::SOAPInt
220
- class FindItemDataResponse
221
352
  def m_return
222
- @v_return
353
+ # m_return - SOAP::SOAPInt
354
+
355
+ class FindItemDataResponse
356
+ def m_return
357
+ @v_return
358
+
223
359
  end
224
360
 
225
- def m_return=(value) @v_return = value
361
+ def m_return=(value)
362
+ @v_return = value
363
+
364
+ end
365
+
366
+ def initialize(v_return = nil)
367
+ @v_return = v_return
368
+
226
369
  end
227
370
 
228
- def initialize(v_return = nil) @v_return = v_return
229
- end
230
371
  end
231
372
  # {http:controls.classes.win32.server.sirius.org/}GetEditSel
232
- # arg0 - SOAP::SOAPLong
233
- class GetEditSel
373
+ # arg0 - SOAP::SOAPLong
374
+
375
+ class GetEditSel
376
+
234
377
  attr_accessor :arg0
235
- def initialize(arg0 = nil) @arg0 = arg0
236
- end
378
+ def initialize(arg0 = nil)
379
+ @arg0 = arg0
380
+
381
+ end
382
+
237
383
  end
238
384
  # {http:controls.classes.win32.server.sirius.org/}GetEditSelResponse
239
- # m_return - SOAP::SOAPInt
240
- class GetEditSelResponse
241
385
  def m_return
242
- @v_return
386
+ # m_return - SOAP::SOAPInt
387
+
388
+ class GetEditSelResponse
389
+ def m_return
390
+ @v_return
391
+
243
392
  end
244
393
 
245
- def m_return=(value) @v_return = value
394
+ def m_return=(value)
395
+ @v_return = value
396
+
397
+ end
398
+
399
+ def initialize(v_return = nil)
400
+ @v_return = v_return
401
+
246
402
  end
247
403
 
248
- def initialize(v_return = nil) @v_return = v_return
249
- end
250
404
  end
251
405
  # {http:controls.classes.win32.server.sirius.org/}SelectString
252
406
  # arg0 - SOAP::SOAPLong
253
407
  # arg1 - SOAP::SOAPInt
254
- # arg2 - SOAP::SOAPString
255
- class SelectString
256
- attr_accessor :arg0
257
- attr_accessor :arg1
408
+ # arg2 - SOAP::SOAPString
409
+
410
+ class SelectString
411
+
412
+ attr_accessor :arg0
413
+
414
+ attr_accessor :arg1
415
+
258
416
  attr_accessor :arg2
259
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
417
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
418
+ @arg0 = arg0
260
419
  @arg1 = arg1
261
- @arg2 = arg2
262
- end
420
+ @arg2 = arg2
421
+
422
+ end
423
+
263
424
  end
264
425
  # {http:controls.classes.win32.server.sirius.org/}SelectStringResponse
265
- # m_return - SOAP::SOAPInt
266
- class SelectStringResponse
267
426
  def m_return
268
- @v_return
427
+ # m_return - SOAP::SOAPInt
428
+
429
+ class SelectStringResponse
430
+ def m_return
431
+ @v_return
432
+
269
433
  end
270
434
 
271
- def m_return=(value) @v_return = value
435
+ def m_return=(value)
436
+ @v_return = value
437
+
438
+ end
439
+
440
+ def initialize(v_return = nil)
441
+ @v_return = v_return
442
+
272
443
  end
273
444
 
274
- def initialize(v_return = nil) @v_return = v_return
275
- end
276
445
  end
277
446
  # {http:controls.classes.win32.server.sirius.org/}GetItemHeight
278
- # arg0 - SOAP::SOAPLong
279
- class GetItemHeight
447
+ # arg0 - SOAP::SOAPLong
448
+
449
+ class GetItemHeight
450
+
280
451
  attr_accessor :arg0
281
- def initialize(arg0 = nil) @arg0 = arg0
282
- end
452
+ def initialize(arg0 = nil)
453
+ @arg0 = arg0
454
+
455
+ end
456
+
283
457
  end
284
458
  # {http:controls.classes.win32.server.sirius.org/}GetItemHeightResponse
285
- # m_return - SOAP::SOAPInt
286
- class GetItemHeightResponse
287
459
  def m_return
288
- @v_return
460
+ # m_return - SOAP::SOAPInt
461
+
462
+ class GetItemHeightResponse
463
+ def m_return
464
+ @v_return
465
+
289
466
  end
290
467
 
291
- def m_return=(value) @v_return = value
468
+ def m_return=(value)
469
+ @v_return = value
470
+
471
+ end
472
+
473
+ def initialize(v_return = nil)
474
+ @v_return = v_return
475
+
292
476
  end
293
477
 
294
- def initialize(v_return = nil) @v_return = v_return
295
- end
296
478
  end
297
479
  # {http:controls.classes.win32.server.sirius.org/}GetText
298
- # arg0 - SOAP::SOAPLong
299
- class GetText
480
+ # arg0 - SOAP::SOAPLong
481
+
482
+ class GetText
483
+
300
484
  attr_accessor :arg0
301
- def initialize(arg0 = nil) @arg0 = arg0
302
- end
485
+ def initialize(arg0 = nil)
486
+ @arg0 = arg0
487
+
488
+ end
489
+
303
490
  end
304
491
  # {http:controls.classes.win32.server.sirius.org/}GetTextResponse
305
- # m_return - SOAP::SOAPString
306
- class GetTextResponse
307
492
  def m_return
308
- @v_return
493
+ # m_return - SOAP::SOAPString
494
+
495
+ class GetTextResponse
496
+ def m_return
497
+ @v_return
498
+
309
499
  end
310
500
 
311
- def m_return=(value) @v_return = value
501
+ def m_return=(value)
502
+ @v_return = value
503
+
504
+ end
505
+
506
+ def initialize(v_return = nil)
507
+ @v_return = v_return
508
+
312
509
  end
313
510
 
314
- def initialize(v_return = nil) @v_return = v_return
315
- end
316
511
  end
317
512
  # {http:controls.classes.win32.server.sirius.org/}FindString
318
513
  # arg0 - SOAP::SOAPLong
319
514
  # arg1 - SOAP::SOAPInt
320
- # arg2 - SOAP::SOAPString
321
- class FindString
322
- attr_accessor :arg0
323
- attr_accessor :arg1
515
+ # arg2 - SOAP::SOAPString
516
+
517
+ class FindString
518
+
519
+ attr_accessor :arg0
520
+
521
+ attr_accessor :arg1
522
+
324
523
  attr_accessor :arg2
325
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
524
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
525
+ @arg0 = arg0
326
526
  @arg1 = arg1
327
- @arg2 = arg2
328
- end
527
+ @arg2 = arg2
528
+
529
+ end
530
+
329
531
  end
330
532
  # {http:controls.classes.win32.server.sirius.org/}FindStringResponse
331
- # m_return - SOAP::SOAPInt
332
- class FindStringResponse
333
533
  def m_return
334
- @v_return
534
+ # m_return - SOAP::SOAPInt
535
+
536
+ class FindStringResponse
537
+ def m_return
538
+ @v_return
539
+
335
540
  end
336
541
 
337
- def m_return=(value) @v_return = value
542
+ def m_return=(value)
543
+ @v_return = value
544
+
545
+ end
546
+
547
+ def initialize(v_return = nil)
548
+ @v_return = v_return
549
+
338
550
  end
339
551
 
340
- def initialize(v_return = nil) @v_return = v_return
341
- end
342
552
  end
343
553
  # {http:controls.classes.win32.server.sirius.org/}ShowDropdown
344
554
  # arg0 - SOAP::SOAPLong
345
- # arg1 - SOAP::SOAPBoolean
346
- class ShowDropdown
347
- attr_accessor :arg0
555
+ # arg1 - SOAP::SOAPBoolean
556
+
557
+ class ShowDropdown
558
+
559
+ attr_accessor :arg0
560
+
348
561
  attr_accessor :arg1
349
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
350
- @arg1 = arg1
351
- end
562
+ def initialize(arg0 = nil, arg1 = nil)
563
+ @arg0 = arg0
564
+ @arg1 = arg1
565
+
566
+ end
567
+
352
568
  end
353
569
  # {http:controls.classes.win32.server.sirius.org/}ShowDropdownResponse
354
- # m_return - SOAP::SOAPInt
355
- class ShowDropdownResponse
356
570
  def m_return
357
- @v_return
571
+ # m_return - SOAP::SOAPInt
572
+
573
+ class ShowDropdownResponse
574
+ def m_return
575
+ @v_return
576
+
358
577
  end
359
578
 
360
- def m_return=(value) @v_return = value
579
+ def m_return=(value)
580
+ @v_return = value
581
+
582
+ end
583
+
584
+ def initialize(v_return = nil)
585
+ @v_return = v_return
586
+
361
587
  end
362
588
 
363
- def initialize(v_return = nil) @v_return = v_return
364
- end
365
589
  end
366
590
  # {http:controls.classes.win32.server.sirius.org/}SetText
367
591
  # arg0 - SOAP::SOAPLong
368
- # arg1 - SOAP::SOAPString
369
- class SetText
370
- attr_accessor :arg0
592
+ # arg1 - SOAP::SOAPString
593
+
594
+ class SetText
595
+
596
+ attr_accessor :arg0
597
+
371
598
  attr_accessor :arg1
372
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
373
- @arg1 = arg1
374
- end
599
+ def initialize(arg0 = nil, arg1 = nil)
600
+ @arg0 = arg0
601
+ @arg1 = arg1
602
+
603
+ end
604
+
375
605
  end
376
- # {http:controls.classes.win32.server.sirius.org/}SetTextResponse
377
- class SetTextResponse
378
606
  def initialize
379
- end
607
+ # {http:controls.classes.win32.server.sirius.org/}SetTextResponse
608
+
609
+ class SetTextResponse
610
+ def initialize
611
+
612
+ end
613
+
380
614
  end
381
615
  # {http:controls.classes.win32.server.sirius.org/}GetCurSel
382
- # arg0 - SOAP::SOAPLong
383
- class GetCurSel
616
+ # arg0 - SOAP::SOAPLong
617
+
618
+ class GetCurSel
619
+
384
620
  attr_accessor :arg0
385
- def initialize(arg0 = nil) @arg0 = arg0
386
- end
621
+ def initialize(arg0 = nil)
622
+ @arg0 = arg0
623
+
624
+ end
625
+
387
626
  end
388
627
  # {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
389
- # m_return - SOAP::SOAPInt
390
- class GetCurSelResponse
391
628
  def m_return
392
- @v_return
629
+ # m_return - SOAP::SOAPInt
630
+
631
+ class GetCurSelResponse
632
+ def m_return
633
+ @v_return
634
+
393
635
  end
394
636
 
395
- def m_return=(value) @v_return = value
637
+ def m_return=(value)
638
+ @v_return = value
639
+
640
+ end
641
+
642
+ def initialize(v_return = nil)
643
+ @v_return = v_return
644
+
396
645
  end
397
646
 
398
- def initialize(v_return = nil) @v_return = v_return
399
- end
400
647
  end
401
648
  # {http:controls.classes.win32.server.sirius.org/}GetItemData
402
649
  # arg0 - SOAP::SOAPLong
403
- # arg1 - SOAP::SOAPInt
404
- class GetItemData
405
- attr_accessor :arg0
650
+ # arg1 - SOAP::SOAPInt
651
+
652
+ class GetItemData
653
+
654
+ attr_accessor :arg0
655
+
406
656
  attr_accessor :arg1
407
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
408
- @arg1 = arg1
409
- end
657
+ def initialize(arg0 = nil, arg1 = nil)
658
+ @arg0 = arg0
659
+ @arg1 = arg1
660
+
661
+ end
662
+
410
663
  end
411
664
  # {http:controls.classes.win32.server.sirius.org/}GetItemDataResponse
412
- # m_return - SOAP::SOAPInt
413
- class GetItemDataResponse
414
665
  def m_return
415
- @v_return
666
+ # m_return - SOAP::SOAPInt
667
+
668
+ class GetItemDataResponse
669
+ def m_return
670
+ @v_return
671
+
672
+ end
673
+
674
+ def m_return=(value)
675
+ @v_return = value
676
+
416
677
  end
417
678
 
418
- def m_return=(value) @v_return = value
679
+ def initialize(v_return = nil)
680
+ @v_return = v_return
681
+
419
682
  end
420
683
 
421
- def initialize(v_return = nil) @v_return = v_return
422
- end
423
684
  end
424
685
  # {http:controls.classes.win32.server.sirius.org/}GetLBText
425
686
  # arg0 - SOAP::SOAPLong
426
687
  # arg1 - SOAP::SOAPInt
427
- # arg2 - SOAP::SOAPString
428
- class GetLBText
429
- attr_accessor :arg0
430
- attr_accessor :arg1
688
+ # arg2 - SOAP::SOAPString
689
+
690
+ class GetLBText
691
+
692
+ attr_accessor :arg0
693
+
694
+ attr_accessor :arg1
695
+
431
696
  attr_accessor :arg2
432
- def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
697
+ def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
698
+ @arg0 = arg0
433
699
  @arg1 = arg1
434
- @arg2 = arg2
435
- end
700
+ @arg2 = arg2
701
+
702
+ end
703
+
436
704
  end
437
705
  # {http:controls.classes.win32.server.sirius.org/}GetLBTextResponse
438
- # m_return - SOAP::SOAPInt
439
- class GetLBTextResponse
440
706
  def m_return
441
- @v_return
707
+ # m_return - SOAP::SOAPInt
708
+
709
+ class GetLBTextResponse
710
+ def m_return
711
+ @v_return
712
+
713
+ end
714
+
715
+ def m_return=(value)
716
+ @v_return = value
717
+
442
718
  end
443
719
 
444
- def m_return=(value) @v_return = value
720
+ def initialize(v_return = nil)
721
+ @v_return = v_return
722
+
445
723
  end
446
724
 
447
- def initialize(v_return = nil) @v_return = v_return
448
- end
449
725
  end
450
726
  # {http:controls.classes.win32.server.sirius.org/}SetCurSel
451
727
  # arg0 - SOAP::SOAPLong
452
- # arg1 - SOAP::SOAPInt
453
- class SetCurSel
454
- attr_accessor :arg0
728
+ # arg1 - SOAP::SOAPInt
729
+
730
+ class SetCurSel
731
+
732
+ attr_accessor :arg0
733
+
455
734
  attr_accessor :arg1
456
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
457
- @arg1 = arg1
458
- end
735
+ def initialize(arg0 = nil, arg1 = nil)
736
+ @arg0 = arg0
737
+ @arg1 = arg1
738
+
739
+ end
740
+
459
741
  end
460
742
  # {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
461
- # m_return - SOAP::SOAPInt
462
- class SetCurSelResponse
463
743
  def m_return
464
- @v_return
744
+ # m_return - SOAP::SOAPInt
745
+
746
+ class SetCurSelResponse
747
+ def m_return
748
+ @v_return
749
+
465
750
  end
466
751
 
467
- def m_return=(value) @v_return = value
752
+ def m_return=(value)
753
+ @v_return = value
754
+
755
+ end
756
+
757
+ def initialize(v_return = nil)
758
+ @v_return = v_return
759
+
468
760
  end
469
761
 
470
- def initialize(v_return = nil) @v_return = v_return
471
- end
472
762
  end
473
763
  # {http:controls.classes.win32.server.sirius.org/}GetLBTextLen
474
764
  # arg0 - SOAP::SOAPLong
475
- # arg1 - SOAP::SOAPInt
476
- class GetLBTextLen
477
- attr_accessor :arg0
765
+ # arg1 - SOAP::SOAPInt
766
+
767
+ class GetLBTextLen
768
+
769
+ attr_accessor :arg0
770
+
478
771
  attr_accessor :arg1
479
- def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
480
- @arg1 = arg1
481
- end
772
+ def initialize(arg0 = nil, arg1 = nil)
773
+ @arg0 = arg0
774
+ @arg1 = arg1
775
+
776
+ end
777
+
482
778
  end
483
779
  # {http:controls.classes.win32.server.sirius.org/}GetLBTextLenResponse
484
- # m_return - SOAP::SOAPInt
485
- class GetLBTextLenResponse
486
780
  def m_return
487
- @v_return
781
+ # m_return - SOAP::SOAPInt
782
+
783
+ class GetLBTextLenResponse
784
+ def m_return
785
+ @v_return
786
+
488
787
  end
489
788
 
490
- def m_return=(value) @v_return = value
789
+ def m_return=(value)
790
+ @v_return = value
791
+
792
+ end
793
+
794
+ def initialize(v_return = nil)
795
+ @v_return = v_return
796
+
491
797
  end
492
798
 
493
- def initialize(v_return = nil) @v_return = v_return
494
- end
495
799
  end
496
800
 
497
801
  end; end; end; end; end