sirius-client-win32 2013.4.1.0 → 2013.4.30.0

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 (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 'DialogServiceDriver.rb'
2
+ require 'sirius/win32/core/dialog/DialogServiceDriver.rb'
3
3
 
4
4
  Sirius::Client::Win32::Core::Dialog
5
5
 
@@ -1,72 +1,73 @@
1
- require 'DialogService.rb'
2
- require 'DialogServiceMappingRegistry.rb'
1
+ require 'sirius/win32/core/dialog/DialogService.rb'
2
+ require 'sirius/win32/core/dialog/DialogServiceMappingRegistry.rb'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Sirius::Client::Win32::Core::Dialog
6
6
 
7
7
 
8
- class Dialog < ::SOAP::RPC::Driver DefaultEndpointUrl = "http:localhost:21212/win32/dialog"
8
+ class Dialog < ::SOAP::RPC::Driver
9
+ DefaultEndpointUrl = "http:localhost:21212/win32/dialog"
9
10
  Methods = [
10
11
  [ "",
11
12
  "getDlgCtrlID",
12
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgCtrlID"]],
13
- [:out, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgCtrlIDResponse"]] ],
13
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgCtrlID"]],
14
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgCtrlIDResponse"]] ],
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
  "getDlgItem",
20
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItem"]],
21
- [:out, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItemResponse"]] ],
21
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItem"]],
22
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItemResponse"]] ],
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
  "getDialogBaseUnits",
28
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDialogBaseUnits"]],
29
- [:out, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDialogBaseUnitsResponse"]] ],
29
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDialogBaseUnits"]],
30
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDialogBaseUnitsResponse"]] ],
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
  "getDlgItemInt",
36
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItemInt"]],
37
- [:out, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItemIntResponse"]] ],
37
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItemInt"]],
38
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItemIntResponse"]] ],
38
39
  { :request_style => :document, :request_use => :literal,
39
40
  :response_style => :document, :response_use => :literal,
40
41
  :faults => {} }
41
42
  ],
42
43
  [ "",
43
44
  "getDlgItemTextA",
44
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItemTextA"]],
45
- [:out, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItemTextAResponse"]] ],
45
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItemTextA"]],
46
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "getDlgItemTextAResponse"]] ],
46
47
  { :request_style => :document, :request_use => :literal,
47
48
  :response_style => :document, :response_use => :literal,
48
49
  :faults => {} }
49
50
  ],
50
51
  [ "",
51
52
  "isDlgButtonChecked",
52
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "isDlgButtonChecked"]],
53
- [:out, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "isDlgButtonCheckedResponse"]] ],
53
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "isDlgButtonChecked"]],
54
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "isDlgButtonCheckedResponse"]] ],
54
55
  { :request_style => :document, :request_use => :literal,
55
56
  :response_style => :document, :response_use => :literal,
56
57
  :faults => {} }
57
58
  ],
58
59
  [ "",
59
60
  "setDlgItemInt",
60
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "setDlgItemInt"]],
61
- [:out, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "setDlgItemIntResponse"]] ],
61
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "setDlgItemInt"]],
62
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "setDlgItemIntResponse"]] ],
62
63
  { :request_style => :document, :request_use => :literal,
63
64
  :response_style => :document, :response_use => :literal,
64
65
  :faults => {} }
65
66
  ],
66
67
  [ "",
67
68
  "setDlgItemText",
68
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "setDlgItemText"]],
69
- [:out, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "setDlgItemTextResponse"]] ],
69
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "setDlgItemText"]],
70
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "setDlgItemTextResponse"]] ],
70
71
  { :request_style => :document, :request_use => :literal,
71
72
  :response_style => :document, :response_use => :literal,
72
73
  :faults => {} }
@@ -1,4 +1,4 @@
1
- require 'DialogService.rb'
1
+ require 'sirius/win32/core/dialog/DialogService.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 Dialog
@@ -1,358 +1,535 @@
1
1
  require 'xsd/qname'
2
2
 
3
3
  module Sirius; module Client; module Win32; module Core; module Edit
4
-
5
4
  # {http:controls.classes.win32.server.sirius.org/}ReplaceSel
6
5
  # arg0 - SOAP::SOAPLong
7
- # arg1 - SOAP::SOAPString
8
6
  class ReplaceSel
9
- attr_accessor :arg0
7
+ # arg1 - SOAP::SOAPString
8
+ class ReplaceSel
9
+ attr_accessor :arg0
10
10
  attr_accessor :arg1
11
11
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
12
- @arg1 = arg1
13
- end
12
+ @arg1 = arg1
13
+
14
+ end
15
+
14
16
  end
15
17
  # {http:controls.classes.win32.server.sirius.org/}ReplaceSelResponse
16
- # m_return - SOAP::SOAPInt
17
- class ReplaceSelResponse
18
18
  def m_return
19
- @v_return
19
+ # m_return - SOAP::SOAPInt
20
+
21
+ class ReplaceSelResponse
22
+ def m_return
23
+ @v_return
24
+
20
25
  end
21
26
 
22
- def m_return=(value) @v_return = value
27
+ def m_return=(value) @v_return = value
28
+
29
+ end
30
+
31
+ def initialize(v_return = nil) @v_return = v_return
32
+
23
33
  end
24
34
 
25
- def initialize(v_return = nil) @v_return = v_return
26
- end
27
35
  end
28
36
  # {http:controls.classes.win32.server.sirius.org/}LineLength
29
37
  # arg0 - SOAP::SOAPLong
30
- # arg1 - SOAP::SOAPInt
31
- class LineLength
32
- attr_accessor :arg0
38
+ # arg1 - SOAP::SOAPInt
39
+
40
+ class LineLength
41
+
42
+ attr_accessor :arg0
43
+
33
44
  attr_accessor :arg1
34
45
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
35
- @arg1 = arg1
36
- end
46
+ @arg1 = arg1
47
+
48
+ end
49
+
37
50
  end
38
51
  # {http:controls.classes.win32.server.sirius.org/}LineLengthResponse
39
- # m_return - SOAP::SOAPInt
40
- class LineLengthResponse
41
52
  def m_return
42
- @v_return
53
+ # m_return - SOAP::SOAPInt
54
+
55
+ class LineLengthResponse
56
+ def m_return
57
+ @v_return
58
+
43
59
  end
44
60
 
45
- def m_return=(value) @v_return = value
61
+ def m_return=(value) @v_return = value
62
+
63
+ end
64
+
65
+ def initialize(v_return = nil) @v_return = v_return
66
+
46
67
  end
47
68
 
48
- def initialize(v_return = nil) @v_return = v_return
49
- end
50
69
  end
51
70
  # {http:controls.classes.win32.server.sirius.org/}LineIndex
52
71
  # arg0 - SOAP::SOAPLong
53
- # arg1 - SOAP::SOAPInt
54
- class LineIndex
55
- attr_accessor :arg0
72
+ # arg1 - SOAP::SOAPInt
73
+
74
+ class LineIndex
75
+
76
+ attr_accessor :arg0
77
+
56
78
  attr_accessor :arg1
57
79
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
58
- @arg1 = arg1
59
- end
80
+ @arg1 = arg1
81
+
82
+ end
83
+
60
84
  end
61
85
  # {http:controls.classes.win32.server.sirius.org/}LineIndexResponse
62
- # m_return - SOAP::SOAPInt
63
- class LineIndexResponse
64
86
  def m_return
65
- @v_return
87
+ # m_return - SOAP::SOAPInt
88
+
89
+ class LineIndexResponse
90
+ def m_return
91
+ @v_return
92
+
66
93
  end
67
94
 
68
- def m_return=(value) @v_return = value
95
+ def m_return=(value) @v_return = value
96
+
97
+ end
98
+
99
+ def initialize(v_return = nil) @v_return = v_return
100
+
69
101
  end
70
102
 
71
- def initialize(v_return = nil) @v_return = v_return
72
- end
73
103
  end
74
104
  # {http:controls.classes.win32.server.sirius.org/}Undo
75
- # arg0 - SOAP::SOAPLong
76
- class Undo
105
+ # arg0 - SOAP::SOAPLong
106
+
107
+ class Undo
108
+
77
109
  attr_accessor :arg0
78
- def initialize(arg0 = nil) @arg0 = arg0
79
- end
110
+ def initialize(arg0 = nil) @arg0 = arg0
111
+
112
+ end
113
+
80
114
  end
81
115
  # {http:controls.classes.win32.server.sirius.org/}UndoResponse
82
- # m_return - SOAP::SOAPInt
83
- class UndoResponse
84
116
  def m_return
85
- @v_return
117
+ # m_return - SOAP::SOAPInt
118
+
119
+ class UndoResponse
120
+ def m_return
121
+ @v_return
122
+
86
123
  end
87
124
 
88
- def m_return=(value) @v_return = value
125
+ def m_return=(value) @v_return = value
126
+
127
+ end
128
+
129
+ def initialize(v_return = nil) @v_return = v_return
130
+
89
131
  end
90
132
 
91
- def initialize(v_return = nil) @v_return = v_return
92
- end
93
133
  end
94
134
  # {http:controls.classes.win32.server.sirius.org/}LineFromChar
95
135
  # arg0 - SOAP::SOAPLong
96
- # arg1 - SOAP::SOAPInt
97
- class LineFromChar
98
- attr_accessor :arg0
136
+ # arg1 - SOAP::SOAPInt
137
+
138
+ class LineFromChar
139
+
140
+ attr_accessor :arg0
141
+
99
142
  attr_accessor :arg1
100
143
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
101
- @arg1 = arg1
102
- end
144
+ @arg1 = arg1
145
+
146
+ end
147
+
103
148
  end
104
149
  # {http:controls.classes.win32.server.sirius.org/}LineFromCharResponse
105
- # m_return - SOAP::SOAPInt
106
- class LineFromCharResponse
107
150
  def m_return
108
- @v_return
151
+ # m_return - SOAP::SOAPInt
152
+
153
+ class LineFromCharResponse
154
+ def m_return
155
+ @v_return
156
+
109
157
  end
110
158
 
111
- def m_return=(value) @v_return = value
159
+ def m_return=(value) @v_return = value
160
+
161
+ end
162
+
163
+ def initialize(v_return = nil) @v_return = v_return
164
+
112
165
  end
113
166
 
114
- def initialize(v_return = nil) @v_return = v_return
115
- end
116
167
  end
117
168
  # {http:controls.classes.win32.server.sirius.org/}GetFirstVisibleLine
118
- # arg0 - SOAP::SOAPLong
119
- class GetFirstVisibleLine
169
+ # arg0 - SOAP::SOAPLong
170
+
171
+ class GetFirstVisibleLine
172
+
120
173
  attr_accessor :arg0
121
- def initialize(arg0 = nil) @arg0 = arg0
122
- end
174
+ def initialize(arg0 = nil) @arg0 = arg0
175
+
176
+ end
177
+
123
178
  end
124
179
  # {http:controls.classes.win32.server.sirius.org/}GetFirstVisibleLineResponse
125
- # m_return - SOAP::SOAPInt
126
- class GetFirstVisibleLineResponse
127
180
  def m_return
128
- @v_return
181
+ # m_return - SOAP::SOAPInt
182
+
183
+ class GetFirstVisibleLineResponse
184
+ def m_return
185
+ @v_return
186
+
129
187
  end
130
188
 
131
- def m_return=(value) @v_return = value
189
+ def m_return=(value) @v_return = value
190
+
191
+ end
192
+
193
+ def initialize(v_return = nil) @v_return = v_return
194
+
132
195
  end
133
196
 
134
- def initialize(v_return = nil) @v_return = v_return
135
- end
136
197
  end
137
198
  # {http:controls.classes.win32.server.sirius.org/}EmptyUndoBuffer
138
- # arg0 - SOAP::SOAPLong
139
- class EmptyUndoBuffer
199
+ # arg0 - SOAP::SOAPLong
200
+
201
+ class EmptyUndoBuffer
202
+
140
203
  attr_accessor :arg0
141
- def initialize(arg0 = nil) @arg0 = arg0
142
- end
204
+ def initialize(arg0 = nil) @arg0 = arg0
205
+
206
+ end
207
+
143
208
  end
144
209
  # {http:controls.classes.win32.server.sirius.org/}EmptyUndoBufferResponse
145
- # m_return - SOAP::SOAPInt
146
- class EmptyUndoBufferResponse
147
210
  def m_return
148
- @v_return
211
+ # m_return - SOAP::SOAPInt
212
+
213
+ class EmptyUndoBufferResponse
214
+ def m_return
215
+ @v_return
216
+
217
+ end
218
+
219
+ def m_return=(value) @v_return = value
220
+
149
221
  end
150
222
 
151
- def m_return=(value) @v_return = value
223
+ def initialize(v_return = nil) @v_return = v_return
224
+
152
225
  end
153
226
 
154
- def initialize(v_return = nil) @v_return = v_return
155
- end
156
227
  end
157
228
  # {http:controls.classes.win32.server.sirius.org/}SetText
158
229
  # arg0 - SOAP::SOAPLong
159
- # arg1 - SOAP::SOAPString
160
- class SetText
161
- attr_accessor :arg0
230
+ # arg1 - SOAP::SOAPString
231
+
232
+ class SetText
233
+
234
+ attr_accessor :arg0
235
+
162
236
  attr_accessor :arg1
163
237
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
164
- @arg1 = arg1
165
- end
238
+ @arg1 = arg1
239
+
240
+ end
241
+
166
242
  end
167
243
  # {http:controls.classes.win32.server.sirius.org/}SetTextResponse
168
- # m_return - SOAP::SOAPBoolean
169
- class SetTextResponse
170
244
  def m_return
171
- @v_return
245
+ # m_return - SOAP::SOAPBoolean
246
+
247
+ class SetTextResponse
248
+ def m_return
249
+ @v_return
250
+
251
+ end
252
+
253
+ def m_return=(value) @v_return = value
254
+
172
255
  end
173
256
 
174
- def m_return=(value) @v_return = value
257
+ def initialize(v_return = nil) @v_return = v_return
258
+
175
259
  end
176
260
 
177
- def initialize(v_return = nil) @v_return = v_return
178
- end
179
261
  end
180
262
  # {http:controls.classes.win32.server.sirius.org/}SetPasswordChar
181
263
  # arg0 - SOAP::SOAPLong
182
- # arg1 - SOAP::SOAPInt
183
- class SetPasswordChar
184
- attr_accessor :arg0
264
+ # arg1 - SOAP::SOAPInt
265
+
266
+ class SetPasswordChar
267
+
268
+ attr_accessor :arg0
269
+
185
270
  attr_accessor :arg1
186
271
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
187
- @arg1 = arg1
188
- end
272
+ @arg1 = arg1
273
+
274
+ end
275
+
189
276
  end
190
277
  # {http:controls.classes.win32.server.sirius.org/}SetPasswordCharResponse
191
- # m_return - SOAP::SOAPInt
192
- class SetPasswordCharResponse
193
278
  def m_return
194
- @v_return
279
+ # m_return - SOAP::SOAPInt
280
+
281
+ class SetPasswordCharResponse
282
+ def m_return
283
+ @v_return
284
+
285
+ end
286
+
287
+ def m_return=(value) @v_return = value
288
+
195
289
  end
196
290
 
197
- def m_return=(value) @v_return = value
291
+ def initialize(v_return = nil) @v_return = v_return
292
+
198
293
  end
199
294
 
200
- def initialize(v_return = nil) @v_return = v_return
201
- end
202
295
  end
203
296
  # {http:controls.classes.win32.server.sirius.org/}ScrollCaret
204
- # arg0 - SOAP::SOAPLong
205
- class ScrollCaret
297
+ # arg0 - SOAP::SOAPLong
298
+
299
+ class ScrollCaret
300
+
206
301
  attr_accessor :arg0
207
- def initialize(arg0 = nil) @arg0 = arg0
208
- end
302
+ def initialize(arg0 = nil) @arg0 = arg0
303
+
304
+ end
305
+
209
306
  end
210
307
  # {http:controls.classes.win32.server.sirius.org/}ScrollCaretResponse
211
- # m_return - SOAP::SOAPBoolean
212
- class ScrollCaretResponse
213
308
  def m_return
214
- @v_return
309
+ # m_return - SOAP::SOAPBoolean
310
+
311
+ class ScrollCaretResponse
312
+ def m_return
313
+ @v_return
314
+
315
+ end
316
+
317
+ def m_return=(value) @v_return = value
318
+
215
319
  end
216
320
 
217
- def m_return=(value) @v_return = value
321
+ def initialize(v_return = nil) @v_return = v_return
322
+
218
323
  end
219
324
 
220
- def initialize(v_return = nil) @v_return = v_return
221
- end
222
325
  end
223
326
  # {http:controls.classes.win32.server.sirius.org/}SetSel
224
327
  # arg0 - SOAP::SOAPLong
225
328
  # arg1 - SOAP::SOAPInt
226
- # arg2 - SOAP::SOAPInt
227
- class SetSel
228
- attr_accessor :arg0
229
- attr_accessor :arg1
329
+ # arg2 - SOAP::SOAPInt
330
+
331
+ class SetSel
332
+
333
+ attr_accessor :arg0
334
+
335
+ attr_accessor :arg1
336
+
230
337
  attr_accessor :arg2
231
338
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
232
339
  @arg1 = arg1
233
- @arg2 = arg2
234
- end
340
+ @arg2 = arg2
341
+
342
+ end
343
+
235
344
  end
236
345
  # {http:controls.classes.win32.server.sirius.org/}SetSelResponse
237
- # m_return - SOAP::SOAPInt
238
- class SetSelResponse
239
346
  def m_return
240
- @v_return
347
+ # m_return - SOAP::SOAPInt
348
+
349
+ class SetSelResponse
350
+ def m_return
351
+ @v_return
352
+
353
+ end
354
+
355
+ def m_return=(value) @v_return = value
356
+
241
357
  end
242
358
 
243
- def m_return=(value) @v_return = value
359
+ def initialize(v_return = nil) @v_return = v_return
360
+
244
361
  end
245
362
 
246
- def initialize(v_return = nil) @v_return = v_return
247
- end
248
363
  end
249
364
  # {http:controls.classes.win32.server.sirius.org/}CanUndo
250
- # arg0 - SOAP::SOAPLong
251
- class CanUndo
365
+ # arg0 - SOAP::SOAPLong
366
+
367
+ class CanUndo
368
+
252
369
  attr_accessor :arg0
253
- def initialize(arg0 = nil) @arg0 = arg0
254
- end
370
+ def initialize(arg0 = nil) @arg0 = arg0
371
+
372
+ end
373
+
255
374
  end
256
375
  # {http:controls.classes.win32.server.sirius.org/}CanUndoResponse
257
- # m_return - SOAP::SOAPInt
258
- class CanUndoResponse
259
376
  def m_return
260
- @v_return
377
+ # m_return - SOAP::SOAPInt
378
+
379
+ class CanUndoResponse
380
+ def m_return
381
+ @v_return
382
+
261
383
  end
262
384
 
263
- def m_return=(value) @v_return = value
385
+ def m_return=(value) @v_return = value
386
+
387
+ end
388
+
389
+ def initialize(v_return = nil) @v_return = v_return
390
+
264
391
  end
265
392
 
266
- def initialize(v_return = nil) @v_return = v_return
267
- end
268
393
  end
269
394
  # {http:controls.classes.win32.server.sirius.org/}GetPasswordChar
270
- # arg0 - SOAP::SOAPLong
271
- class GetPasswordChar
395
+ # arg0 - SOAP::SOAPLong
396
+
397
+ class GetPasswordChar
398
+
272
399
  attr_accessor :arg0
273
- def initialize(arg0 = nil) @arg0 = arg0
274
- end
400
+ def initialize(arg0 = nil) @arg0 = arg0
401
+
402
+ end
403
+
275
404
  end
276
405
  # {http:controls.classes.win32.server.sirius.org/}GetPasswordCharResponse
277
- # m_return - SOAP::SOAPInt
278
- class GetPasswordCharResponse
279
406
  def m_return
280
- @v_return
407
+ # m_return - SOAP::SOAPInt
408
+
409
+ class GetPasswordCharResponse
410
+ def m_return
411
+ @v_return
412
+
281
413
  end
282
414
 
283
- def m_return=(value) @v_return = value
415
+ def m_return=(value) @v_return = value
416
+
417
+ end
418
+
419
+ def initialize(v_return = nil) @v_return = v_return
420
+
284
421
  end
285
422
 
286
- def initialize(v_return = nil) @v_return = v_return
287
- end
288
423
  end
289
424
  # {http:controls.classes.win32.server.sirius.org/}GetSel
290
- # arg0 - SOAP::SOAPLong
291
- class GetSel
425
+ # arg0 - SOAP::SOAPLong
426
+
427
+ class GetSel
428
+
292
429
  attr_accessor :arg0
293
- def initialize(arg0 = nil) @arg0 = arg0
294
- end
430
+ def initialize(arg0 = nil) @arg0 = arg0
431
+
432
+ end
433
+
295
434
  end
296
435
  # {http:controls.classes.win32.server.sirius.org/}GetSelResponse
297
- # m_return - SOAP::SOAPInt
298
- class GetSelResponse
299
436
  def m_return
300
- @v_return
437
+ # m_return - SOAP::SOAPInt
438
+
439
+ class GetSelResponse
440
+ def m_return
441
+ @v_return
442
+
443
+ end
444
+
445
+ def m_return=(value) @v_return = value
446
+
301
447
  end
302
448
 
303
- def m_return=(value) @v_return = value
449
+ def initialize(v_return = nil) @v_return = v_return
450
+
304
451
  end
305
452
 
306
- def initialize(v_return = nil) @v_return = v_return
307
- end
308
453
  end
309
454
  # {http:controls.classes.win32.server.sirius.org/}GetLineCount
310
- # arg0 - SOAP::SOAPLong
311
- class GetLineCount
455
+ # arg0 - SOAP::SOAPLong
456
+
457
+ class GetLineCount
458
+
312
459
  attr_accessor :arg0
313
- def initialize(arg0 = nil) @arg0 = arg0
314
- end
460
+ def initialize(arg0 = nil) @arg0 = arg0
461
+
462
+ end
463
+
315
464
  end
316
465
  # {http:controls.classes.win32.server.sirius.org/}GetLineCountResponse
317
- # m_return - SOAP::SOAPInt
318
- class GetLineCountResponse
319
466
  def m_return
320
- @v_return
467
+ # m_return - SOAP::SOAPInt
468
+
469
+ class GetLineCountResponse
470
+ def m_return
471
+ @v_return
472
+
473
+ end
474
+
475
+ def m_return=(value) @v_return = value
476
+
321
477
  end
322
478
 
323
- def m_return=(value) @v_return = value
479
+ def initialize(v_return = nil) @v_return = v_return
480
+
324
481
  end
325
482
 
326
- def initialize(v_return = nil) @v_return = v_return
327
- end
328
483
  end
329
484
  # {http:controls.classes.win32.server.sirius.org/}GetModify
330
- # arg0 - SOAP::SOAPLong
331
- class GetModify
485
+ # arg0 - SOAP::SOAPLong
486
+
487
+ class GetModify
488
+
332
489
  attr_accessor :arg0
333
- def initialize(arg0 = nil) @arg0 = arg0
334
- end
490
+ def initialize(arg0 = nil) @arg0 = arg0
491
+
492
+ end
493
+
335
494
  end
336
495
  # {http:controls.classes.win32.server.sirius.org/}GetModifyResponse
337
- # m_return - SOAP::SOAPInt
338
- class GetModifyResponse
339
496
  def m_return
340
- @v_return
497
+ # m_return - SOAP::SOAPInt
498
+
499
+ class GetModifyResponse
500
+ def m_return
501
+ @v_return
502
+
341
503
  end
342
504
 
343
- def m_return=(value) @v_return = value
505
+ def m_return=(value) @v_return = value
506
+
507
+ end
508
+
509
+ def initialize(v_return = nil) @v_return = v_return
510
+
344
511
  end
345
512
 
346
- def initialize(v_return = nil) @v_return = v_return
347
- end
348
513
  end
349
514
  # {http:controls.classes.win32.server.sirius.org/}Scroll
350
515
  # arg0 - SOAP::SOAPLong
351
516
  # arg1 - SOAP::SOAPInt
352
- # arg2 - SOAP::SOAPInt
353
- class Scroll
354
- attr_accessor :arg0
355
- attr_accessor :arg1
517
+ # arg2 - SOAP::SOAPInt
518
+
519
+ class Scroll
520
+
521
+ attr_accessor :arg0
522
+
523
+ attr_accessor :arg1
524
+
356
525
  attr_accessor :arg2
357
526
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
358
527
  @arg1 = arg1
359
- @arg2 = arg2
360
- end
528
+ @arg2 = arg2
529
+
530
+ end
531
+
361
532
  end
362
533
  # {http:controls.classes.win32.server.sirius.org/}ScrollResponse
363
- # m_return - SOAP::SOAPInt
364
- class ScrollResponse
365
534
  def m_return
366
- @v_return
535
+ # m_return - SOAP::SOAPInt
536
+
537
+ class ScrollResponse
538
+ def m_return
539
+ @v_return
540
+
367
541
  end
368
542
 
369
- def m_return=(value) @v_return = value
543
+ def m_return=(value) @v_return = value
544
+
545
+ end
546
+
547
+ def initialize(v_return = nil) @v_return = v_return
548
+
370
549
  end
371
550
 
372
- def initialize(v_return = nil) @v_return = v_return
373
- end
374
551
  end
375
552
 
376
553
  end; end; end; end; end