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