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,625 +1,625 @@
|
|
1
|
-
require 'xsd/qname'
|
2
|
-
|
3
|
-
module Sirius; module Client; module Win32; module Core; module Window
|
4
|
-
|
5
|
-
# {http://classes.win32.server.sirius.org/}keyUp
|
6
|
-
# arg0 - SOAP::SOAPLong
|
7
|
-
# arg1 - SOAP::SOAPInt
|
8
1
|
class KeyUp
|
9
|
-
|
10
|
-
|
11
|
-
|
2
|
+
require 'xsd/qname'
|
3
|
+
|
4
|
+
module Sirius; module Client; module Win32; module Core; module Window
|
5
|
+
|
6
|
+
# {http://classes.win32.server.sirius.org/}keyUp
|
7
|
+
# arg0 - SOAP::SOAPLong
|
8
|
+
# arg1 - SOAP::SOAPInt
|
12
9
|
class KeyUp
|
10
|
+
attr_accessor :arg0
|
11
|
+
attr_accessor :arg1
|
12
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
13
|
+
@arg1 = arg1
|
14
|
+
end
|
15
|
+
end
|
16
|
+
# {http://classes.win32.server.sirius.org/}keyUpResponse
|
17
|
+
class KeyUpResponse
|
13
18
|
def initialize
|
19
|
+
end
|
20
|
+
end
|
21
|
+
# {http://classes.win32.server.sirius.org/}getSystemMenu
|
22
|
+
# arg0 - SOAP::SOAPLong
|
23
|
+
# arg1 - SOAP::SOAPBoolean
|
24
|
+
class GetSystemMenu
|
25
|
+
attr_accessor :arg0
|
26
|
+
attr_accessor :arg1
|
27
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
28
|
+
@arg1 = arg1
|
29
|
+
end
|
30
|
+
end
|
31
|
+
# {http://classes.win32.server.sirius.org/}getSystemMenuResponse
|
32
|
+
# m_return - SOAP::SOAPLong
|
33
|
+
class GetSystemMenuResponse
|
14
34
|
def m_return
|
35
|
+
@v_return
|
36
|
+
end
|
37
|
+
|
38
|
+
def m_return=(value) @v_return = value
|
39
|
+
end
|
40
|
+
|
41
|
+
def initialize(v_return = nil) @v_return = v_return
|
42
|
+
end
|
43
|
+
end
|
44
|
+
# {http://classes.win32.server.sirius.org/}move
|
45
|
+
# arg0 - SOAP::SOAPLong
|
46
|
+
# arg1 - SOAP::SOAPInt
|
47
|
+
# arg2 - SOAP::SOAPInt
|
48
|
+
# arg3 - SOAP::SOAPInt
|
49
|
+
# arg4 - SOAP::SOAPInt
|
50
|
+
class Move
|
51
|
+
attr_accessor :arg0
|
52
|
+
attr_accessor :arg1
|
53
|
+
attr_accessor :arg2
|
54
|
+
attr_accessor :arg3
|
55
|
+
attr_accessor :arg4
|
56
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil) @arg0 = arg0
|
15
57
|
@arg1 = arg1
|
16
|
-
end
|
17
|
-
end
|
18
|
-
# {http://classes.win32.server.sirius.org/}keyUpResponse
|
19
|
-
class KeyUpResponse
|
20
58
|
def initialize
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
59
|
+
@arg2 = arg2
|
60
|
+
@arg3 = arg3
|
61
|
+
@arg4 = arg4
|
62
|
+
end
|
63
|
+
end
|
64
|
+
# {http://classes.win32.server.sirius.org/}moveResponse
|
65
|
+
class MoveResponse
|
27
66
|
def initialize
|
67
|
+
end
|
68
|
+
end
|
69
|
+
# {http://classes.win32.server.sirius.org/}getRect
|
70
|
+
# arg0 - SOAP::SOAPLong
|
71
|
+
class GetRect
|
28
72
|
attr_accessor :arg0
|
29
|
-
|
30
|
-
|
73
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
74
|
+
end
|
75
|
+
end
|
76
|
+
# {http://classes.win32.server.sirius.org/}getRectResponse
|
77
|
+
# m_return - Sirius::Client::Win32::Core::Window::Rect
|
78
|
+
class GetRectResponse
|
31
79
|
def m_return
|
80
|
+
@v_return
|
81
|
+
end
|
82
|
+
|
83
|
+
def m_return=(value) @v_return = value
|
84
|
+
end
|
85
|
+
|
86
|
+
def initialize(v_return = nil) @v_return = v_return
|
87
|
+
end
|
88
|
+
end
|
89
|
+
# {http://classes.win32.server.sirius.org/}structure
|
90
|
+
# abstract
|
91
|
+
# autoRead - SOAP::SOAPBoolean
|
92
|
+
# autoWrite - SOAP::SOAPBoolean
|
93
|
+
class Structure
|
94
|
+
attr_accessor :autoRead
|
95
|
+
attr_accessor :autoWrite
|
96
|
+
def initialize(autoRead = nil, autoWrite = nil) @autoRead = autoRead
|
97
|
+
@autoWrite = autoWrite
|
98
|
+
end
|
99
|
+
end
|
100
|
+
# {http://classes.win32.server.sirius.org/}rect
|
101
|
+
# autoRead - SOAP::SOAPBoolean
|
102
|
+
# autoWrite - SOAP::SOAPBoolean
|
103
|
+
# left - SOAP::SOAPInt
|
104
|
+
# top - SOAP::SOAPInt
|
105
|
+
# right - SOAP::SOAPInt
|
106
|
+
# bottom - SOAP::SOAPInt
|
107
|
+
class Rect < Structure
|
108
|
+
attr_accessor :autoRead
|
109
|
+
attr_accessor :autoWrite
|
110
|
+
attr_accessor :left
|
111
|
+
attr_accessor :top
|
112
|
+
attr_accessor :right
|
113
|
+
attr_accessor :bottom
|
114
|
+
def initialize(autoRead = nil, autoWrite = nil, left = nil, top = nil, right = nil, bottom = nil) @autoRead = autoRead
|
115
|
+
@autoWrite = autoWrite
|
116
|
+
@left = left
|
117
|
+
@top = top
|
118
|
+
@right = right
|
119
|
+
@bottom = bottom
|
120
|
+
end
|
121
|
+
end
|
122
|
+
# {http://classes.win32.server.sirius.org/}windowplacement
|
123
|
+
# autoRead - SOAP::SOAPBoolean
|
124
|
+
# autoWrite - SOAP::SOAPBoolean
|
125
|
+
# length - SOAP::SOAPInt
|
126
|
+
# flags - SOAP::SOAPInt
|
127
|
+
# showCmd - SOAP::SOAPInt
|
128
|
+
# ptMinPosition - Sirius::Client::Win32::Core::Window::Point
|
129
|
+
# ptMaxPosition - Sirius::Client::Win32::Core::Window::Point
|
130
|
+
# rcNormalPosition - Sirius::Client::Win32::Core::Window::Rect
|
131
|
+
class Windowplacement < Structure
|
132
|
+
attr_accessor :autoRead
|
133
|
+
attr_accessor :autoWrite
|
134
|
+
attr_accessor :length
|
135
|
+
attr_accessor :flags
|
136
|
+
attr_accessor :showCmd
|
137
|
+
attr_accessor :ptMinPosition
|
138
|
+
attr_accessor :ptMaxPosition
|
139
|
+
attr_accessor :rcNormalPosition
|
140
|
+
def initialize(autoRead = nil, autoWrite = nil, length = nil, flags = nil, showCmd = nil, ptMinPosition = nil, ptMaxPosition = nil, rcNormalPosition = nil) @autoRead = autoRead
|
141
|
+
@autoWrite = autoWrite
|
142
|
+
@length = length
|
143
|
+
@flags = flags
|
144
|
+
@showCmd = showCmd
|
145
|
+
@ptMinPosition = ptMinPosition
|
146
|
+
@ptMaxPosition = ptMaxPosition
|
147
|
+
@rcNormalPosition = rcNormalPosition
|
148
|
+
end
|
149
|
+
end
|
150
|
+
# {http://classes.win32.server.sirius.org/}point
|
151
|
+
# autoRead - SOAP::SOAPBoolean
|
152
|
+
# autoWrite - SOAP::SOAPBoolean
|
153
|
+
# x - SOAP::SOAPInt
|
154
|
+
# y - SOAP::SOAPInt
|
155
|
+
class Point < Structure
|
156
|
+
attr_accessor :autoRead
|
157
|
+
attr_accessor :autoWrite
|
158
|
+
attr_accessor :x
|
159
|
+
attr_accessor :y
|
160
|
+
def initialize(autoRead = nil, autoWrite = nil, x = nil, y = nil) @autoRead = autoRead
|
161
|
+
@autoWrite = autoWrite
|
162
|
+
@x = x
|
163
|
+
@y = y
|
164
|
+
end
|
165
|
+
end
|
166
|
+
# {http://classes.win32.server.sirius.org/}moveTo
|
167
|
+
# arg0 - SOAP::SOAPLong
|
168
|
+
# arg1 - SOAP::SOAPInt
|
169
|
+
# arg2 - SOAP::SOAPInt
|
170
|
+
class MoveTo
|
171
|
+
attr_accessor :arg0
|
172
|
+
attr_accessor :arg1
|
173
|
+
attr_accessor :arg2
|
174
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
32
175
|
@arg1 = arg1
|
33
|
-
end
|
34
|
-
end
|
35
|
-
# {http://classes.win32.server.sirius.org/}getSystemMenuResponse
|
36
|
-
# m_return - SOAP::SOAPLong
|
37
|
-
class GetSystemMenuResponse
|
38
176
|
def m_return
|
39
|
-
@
|
40
|
-
end
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
def initialize(v_return = nil) @v_return = v_return
|
46
|
-
end
|
47
|
-
end
|
48
|
-
# {http://classes.win32.server.sirius.org/}move
|
49
|
-
# arg0 - SOAP::SOAPLong
|
50
|
-
# arg1 - SOAP::SOAPInt
|
51
|
-
# arg2 - SOAP::SOAPInt
|
52
|
-
# arg3 - SOAP::SOAPInt
|
53
|
-
# arg4 - SOAP::SOAPInt
|
54
|
-
class Move
|
177
|
+
@arg2 = arg2
|
178
|
+
end
|
179
|
+
end
|
180
|
+
# {http://classes.win32.server.sirius.org/}moveToResponse
|
181
|
+
class MoveToResponse
|
55
182
|
def initialize
|
183
|
+
end
|
184
|
+
end
|
185
|
+
# {http://classes.win32.server.sirius.org/}isNormal
|
186
|
+
# arg0 - SOAP::SOAPLong
|
187
|
+
class IsNormal
|
56
188
|
attr_accessor :arg0
|
57
|
-
attr_accessor :arg1
|
58
|
-
attr_accessor :arg2
|
59
|
-
attr_accessor :arg3
|
60
|
-
attr_accessor :arg4
|
61
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil) @arg0 = arg0
|
62
|
-
@arg1 = arg1
|
63
|
-
@arg2 = arg2
|
64
|
-
@arg3 = arg3
|
65
|
-
@arg4 = arg4
|
66
|
-
end
|
67
|
-
end
|
68
|
-
# {http://classes.win32.server.sirius.org/}moveResponse
|
69
|
-
class MoveResponse
|
70
189
|
def initialize
|
71
|
-
|
72
|
-
|
73
|
-
|
190
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
191
|
+
end
|
192
|
+
end
|
193
|
+
# {http://classes.win32.server.sirius.org/}isNormalResponse
|
194
|
+
# m_return - SOAP::SOAPBoolean
|
195
|
+
class IsNormalResponse
|
74
196
|
def m_return
|
197
|
+
@v_return
|
198
|
+
end
|
199
|
+
|
200
|
+
def m_return=(value) @v_return = value
|
201
|
+
end
|
202
|
+
|
203
|
+
def initialize(v_return = nil) @v_return = v_return
|
204
|
+
end
|
205
|
+
end
|
206
|
+
# {http://classes.win32.server.sirius.org/}isWindow
|
207
|
+
# arg0 - SOAP::SOAPLong
|
208
|
+
class IsWindow
|
209
|
+
attr_accessor :arg0
|
210
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
211
|
+
end
|
212
|
+
end
|
213
|
+
# {http://classes.win32.server.sirius.org/}isWindowResponse
|
214
|
+
# m_return - SOAP::SOAPBoolean
|
215
|
+
class IsWindowResponse
|
75
216
|
def m_return
|
217
|
+
@v_return
|
218
|
+
end
|
219
|
+
|
220
|
+
def m_return=(value) @v_return = value
|
221
|
+
end
|
222
|
+
|
223
|
+
def initialize(v_return = nil) @v_return = v_return
|
224
|
+
end
|
225
|
+
end
|
226
|
+
# {http://classes.win32.server.sirius.org/}isVisible
|
227
|
+
# arg0 - SOAP::SOAPLong
|
228
|
+
class IsVisible
|
229
|
+
attr_accessor :arg0
|
230
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
231
|
+
end
|
232
|
+
end
|
233
|
+
# {http://classes.win32.server.sirius.org/}isVisibleResponse
|
234
|
+
# m_return - SOAP::SOAPBoolean
|
235
|
+
class IsVisibleResponse
|
76
236
|
def m_return
|
237
|
+
@v_return
|
238
|
+
end
|
239
|
+
|
240
|
+
def m_return=(value) @v_return = value
|
241
|
+
end
|
242
|
+
|
243
|
+
def initialize(v_return = nil) @v_return = v_return
|
244
|
+
end
|
245
|
+
end
|
246
|
+
# {http://classes.win32.server.sirius.org/}activate
|
247
|
+
# arg0 - SOAP::SOAPLong
|
248
|
+
class Activate
|
249
|
+
attr_accessor :arg0
|
250
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
251
|
+
end
|
252
|
+
end
|
253
|
+
# {http://classes.win32.server.sirius.org/}activateResponse
|
254
|
+
class ActivateResponse
|
77
255
|
def initialize
|
256
|
+
end
|
257
|
+
end
|
258
|
+
# {http://classes.win32.server.sirius.org/}getText
|
259
|
+
# arg0 - SOAP::SOAPLong
|
260
|
+
class GetText
|
261
|
+
attr_accessor :arg0
|
262
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
263
|
+
end
|
264
|
+
end
|
265
|
+
# {http://classes.win32.server.sirius.org/}getTextResponse
|
266
|
+
# m_return - SOAP::SOAPString
|
267
|
+
class GetTextResponse
|
78
268
|
def m_return
|
269
|
+
@v_return
|
270
|
+
end
|
271
|
+
|
272
|
+
def m_return=(value) @v_return = value
|
273
|
+
end
|
274
|
+
|
275
|
+
def initialize(v_return = nil) @v_return = v_return
|
276
|
+
end
|
277
|
+
end
|
278
|
+
# {http://classes.win32.server.sirius.org/}isMaximized
|
279
|
+
# arg0 - SOAP::SOAPLong
|
280
|
+
class IsMaximized
|
281
|
+
attr_accessor :arg0
|
282
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
283
|
+
end
|
284
|
+
end
|
285
|
+
# {http://classes.win32.server.sirius.org/}isMaximizedResponse
|
286
|
+
# m_return - SOAP::SOAPBoolean
|
287
|
+
class IsMaximizedResponse
|
79
288
|
def m_return
|
289
|
+
@v_return
|
290
|
+
end
|
291
|
+
|
292
|
+
def m_return=(value) @v_return = value
|
293
|
+
end
|
294
|
+
|
295
|
+
def initialize(v_return = nil) @v_return = v_return
|
296
|
+
end
|
297
|
+
end
|
298
|
+
# {http://classes.win32.server.sirius.org/}click
|
80
299
|
# arg0 - SOAP::SOAPLong
|
81
|
-
class GetRect
|
82
|
-
attr_accessor :arg0
|
83
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
84
|
-
end
|
85
|
-
end
|
86
|
-
# {http://classes.win32.server.sirius.org/}getRectResponse
|
87
|
-
# m_return - Sirius::Client::Win32::Core::Window::Rect
|
88
|
-
class GetRectResponse
|
89
300
|
def m_return
|
90
|
-
|
91
|
-
end
|
92
|
-
|
93
|
-
def m_return=(value) @v_return = value
|
94
|
-
end
|
95
|
-
|
96
|
-
def initialize(v_return = nil) @v_return = v_return
|
97
|
-
end
|
98
|
-
end
|
99
|
-
# {http://classes.win32.server.sirius.org/}structure
|
100
|
-
# abstract
|
101
|
-
# autoRead - SOAP::SOAPBoolean
|
102
|
-
# autoWrite - SOAP::SOAPBoolean
|
103
|
-
class Structure
|
104
|
-
attr_accessor :autoRead
|
105
|
-
attr_accessor :autoWrite
|
106
|
-
def initialize(autoRead = nil, autoWrite = nil) @autoRead = autoRead
|
107
|
-
@autoWrite = autoWrite
|
108
|
-
end
|
109
|
-
end
|
110
|
-
# {http://classes.win32.server.sirius.org/}rect
|
111
|
-
# autoRead - SOAP::SOAPBoolean
|
112
|
-
# autoWrite - SOAP::SOAPBoolean
|
113
|
-
# left - SOAP::SOAPInt
|
114
|
-
# top - SOAP::SOAPInt
|
115
|
-
# right - SOAP::SOAPInt
|
116
|
-
# bottom - SOAP::SOAPInt
|
117
|
-
class Rect < Structure
|
118
|
-
attr_accessor :autoRead
|
119
|
-
attr_accessor :autoWrite
|
120
|
-
attr_accessor :left
|
121
|
-
attr_accessor :top
|
122
|
-
attr_accessor :right
|
123
|
-
attr_accessor :bottom
|
124
|
-
def initialize(autoRead = nil, autoWrite = nil, left = nil, top = nil, right = nil, bottom = nil) @autoRead = autoRead
|
125
|
-
@autoWrite = autoWrite
|
126
|
-
@left = left
|
127
|
-
@top = top
|
128
|
-
@right = right
|
129
|
-
@bottom = bottom
|
130
|
-
end
|
131
|
-
end
|
132
|
-
# {http://classes.win32.server.sirius.org/}windowplacement
|
133
|
-
# autoRead - SOAP::SOAPBoolean
|
134
|
-
# autoWrite - SOAP::SOAPBoolean
|
135
|
-
# length - SOAP::SOAPInt
|
136
|
-
# flags - SOAP::SOAPInt
|
137
|
-
# showCmd - SOAP::SOAPInt
|
138
|
-
# ptMinPosition - Sirius::Client::Win32::Core::Window::Point
|
139
|
-
# ptMaxPosition - Sirius::Client::Win32::Core::Window::Point
|
140
|
-
# rcNormalPosition - Sirius::Client::Win32::Core::Window::Rect
|
141
|
-
class Windowplacement < Structure
|
142
|
-
attr_accessor :autoRead
|
143
|
-
attr_accessor :autoWrite
|
144
|
-
attr_accessor :length
|
145
|
-
attr_accessor :flags
|
146
|
-
attr_accessor :showCmd
|
147
|
-
attr_accessor :ptMinPosition
|
148
|
-
attr_accessor :ptMaxPosition
|
149
|
-
attr_accessor :rcNormalPosition
|
150
|
-
def initialize(autoRead = nil, autoWrite = nil, length = nil, flags = nil, showCmd = nil, ptMinPosition = nil, ptMaxPosition = nil, rcNormalPosition = nil) @autoRead = autoRead
|
151
|
-
@autoWrite = autoWrite
|
152
|
-
@length = length
|
153
|
-
@flags = flags
|
154
|
-
@showCmd = showCmd
|
155
|
-
@ptMinPosition = ptMinPosition
|
156
|
-
@ptMaxPosition = ptMaxPosition
|
157
|
-
@rcNormalPosition = rcNormalPosition
|
158
|
-
end
|
159
|
-
end
|
160
|
-
# {http://classes.win32.server.sirius.org/}point
|
161
|
-
# autoRead - SOAP::SOAPBoolean
|
162
|
-
# autoWrite - SOAP::SOAPBoolean
|
163
|
-
# x - SOAP::SOAPInt
|
164
|
-
# y - SOAP::SOAPInt
|
165
|
-
class Point < Structure
|
166
|
-
attr_accessor :autoRead
|
167
|
-
attr_accessor :autoWrite
|
168
|
-
attr_accessor :x
|
169
|
-
attr_accessor :y
|
170
|
-
def initialize(autoRead = nil, autoWrite = nil, x = nil, y = nil) @autoRead = autoRead
|
171
|
-
@autoWrite = autoWrite
|
172
|
-
@x = x
|
173
|
-
@y = y
|
174
|
-
end
|
175
|
-
end
|
176
|
-
# {http://classes.win32.server.sirius.org/}moveTo
|
177
|
-
# arg0 - SOAP::SOAPLong
|
178
|
-
# arg1 - SOAP::SOAPInt
|
301
|
+
# arg1 - SOAP::SOAPInt
|
179
302
|
# arg2 - SOAP::SOAPInt
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
303
|
+
# arg3 - SOAP::SOAPInt
|
304
|
+
# arg4 - SOAP::SOAPBoolean
|
305
|
+
# arg5 - SOAP::SOAPBoolean
|
306
|
+
# arg6 - SOAP::SOAPBoolean
|
307
|
+
class Click
|
308
|
+
attr_accessor :arg0
|
309
|
+
attr_accessor :arg1
|
310
|
+
attr_accessor :arg2
|
311
|
+
attr_accessor :arg3
|
312
|
+
attr_accessor :arg4
|
313
|
+
attr_accessor :arg5
|
314
|
+
attr_accessor :arg6
|
315
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
|
316
|
+
@arg1 = arg1
|
186
317
|
@arg2 = arg2
|
187
|
-
end
|
188
|
-
end
|
189
|
-
# {http://classes.win32.server.sirius.org/}moveToResponse
|
190
|
-
class MoveToResponse
|
191
318
|
def initialize
|
192
|
-
end
|
193
|
-
end
|
194
|
-
# {http://classes.win32.server.sirius.org/}isNormal
|
195
|
-
# arg0 - SOAP::SOAPLong
|
196
|
-
class IsNormal
|
197
|
-
attr_accessor :arg0
|
198
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
199
|
-
end
|
200
|
-
end
|
201
|
-
# {http://classes.win32.server.sirius.org/}isNormalResponse
|
202
|
-
# m_return - SOAP::SOAPBoolean
|
203
|
-
class IsNormalResponse
|
204
319
|
def m_return
|
205
|
-
@v_return
|
206
|
-
end
|
207
|
-
|
208
|
-
def m_return=(value) @v_return = value
|
209
|
-
end
|
210
|
-
|
211
|
-
def initialize(v_return = nil) @v_return = v_return
|
212
|
-
end
|
213
|
-
end
|
214
|
-
# {http://classes.win32.server.sirius.org/}isWindow
|
215
|
-
# arg0 - SOAP::SOAPLong
|
216
|
-
class IsWindow
|
217
|
-
attr_accessor :arg0
|
218
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
219
|
-
end
|
220
|
-
end
|
221
|
-
# {http://classes.win32.server.sirius.org/}isWindowResponse
|
222
|
-
# m_return - SOAP::SOAPBoolean
|
223
|
-
class IsWindowResponse
|
224
320
|
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://classes.win32.server.sirius.org/}isVisible
|
235
|
-
# arg0 - SOAP::SOAPLong
|
236
|
-
class IsVisible
|
237
|
-
attr_accessor :arg0
|
238
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
239
|
-
end
|
240
|
-
end
|
241
|
-
# {http://classes.win32.server.sirius.org/}isVisibleResponse
|
242
|
-
# m_return - SOAP::SOAPBoolean
|
243
|
-
class IsVisibleResponse
|
244
321
|
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://classes.win32.server.sirius.org/}activate
|
255
|
-
# arg0 - SOAP::SOAPLong
|
256
|
-
class Activate
|
257
|
-
attr_accessor :arg0
|
258
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
259
|
-
end
|
260
|
-
end
|
261
|
-
# {http://classes.win32.server.sirius.org/}activateResponse
|
262
|
-
class ActivateResponse
|
263
322
|
def initialize
|
264
|
-
|
265
|
-
|
266
|
-
|
323
|
+
@arg3 = arg3
|
324
|
+
@arg4 = arg4
|
325
|
+
@arg5 = arg5
|
326
|
+
@arg6 = arg6
|
327
|
+
end
|
328
|
+
end
|
329
|
+
# {http://classes.win32.server.sirius.org/}clickResponse
|
330
|
+
class ClickResponse
|
267
331
|
def initialize
|
332
|
+
end
|
333
|
+
end
|
334
|
+
# {http://classes.win32.server.sirius.org/}close
|
335
|
+
# arg0 - SOAP::SOAPLong
|
336
|
+
class Close
|
337
|
+
attr_accessor :arg0
|
338
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
339
|
+
end
|
340
|
+
end
|
341
|
+
# {http://classes.win32.server.sirius.org/}closeResponse
|
342
|
+
class CloseResponse
|
268
343
|
def initialize
|
344
|
+
end
|
345
|
+
end
|
346
|
+
# {http://classes.win32.server.sirius.org/}keyDown
|
269
347
|
# arg0 - SOAP::SOAPLong
|
270
|
-
class GetText
|
271
|
-
attr_accessor :arg0
|
272
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
273
|
-
end
|
274
|
-
end
|
275
|
-
# {http://classes.win32.server.sirius.org/}getTextResponse
|
276
|
-
# m_return - SOAP::SOAPString
|
277
|
-
class GetTextResponse
|
278
348
|
def m_return
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
349
|
+
# arg1 - SOAP::SOAPInt
|
350
|
+
class KeyDown
|
351
|
+
attr_accessor :arg0
|
352
|
+
attr_accessor :arg1
|
353
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
354
|
+
@arg1 = arg1
|
355
|
+
end
|
356
|
+
end
|
357
|
+
# {http://classes.win32.server.sirius.org/}keyDownResponse
|
358
|
+
class KeyDownResponse
|
289
359
|
def initialize
|
360
|
+
end
|
361
|
+
end
|
362
|
+
# {http://classes.win32.server.sirius.org/}keyPress
|
290
363
|
# arg0 - SOAP::SOAPLong
|
291
|
-
class IsMaximized
|
292
|
-
attr_accessor :arg0
|
293
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
294
|
-
end
|
295
|
-
end
|
296
|
-
# {http://classes.win32.server.sirius.org/}isMaximizedResponse
|
297
|
-
# m_return - SOAP::SOAPBoolean
|
298
|
-
class IsMaximizedResponse
|
299
364
|
def m_return
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
# arg0 - SOAP::SOAPLong
|
311
|
-
# arg1 - SOAP::SOAPInt
|
312
|
-
# arg2 - SOAP::SOAPInt
|
313
|
-
# arg3 - SOAP::SOAPInt
|
314
|
-
# arg4 - SOAP::SOAPBoolean
|
315
|
-
# arg5 - SOAP::SOAPBoolean
|
316
|
-
# arg6 - SOAP::SOAPBoolean
|
317
|
-
class Click
|
365
|
+
# arg1 - SOAP::SOAPInt
|
366
|
+
class KeyPress
|
367
|
+
attr_accessor :arg0
|
368
|
+
attr_accessor :arg1
|
369
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
370
|
+
@arg1 = arg1
|
371
|
+
end
|
372
|
+
end
|
373
|
+
# {http://classes.win32.server.sirius.org/}keyPressResponse
|
374
|
+
class KeyPressResponse
|
318
375
|
def initialize
|
376
|
+
end
|
377
|
+
end
|
378
|
+
# {http://classes.win32.server.sirius.org/}isMinimized
|
379
|
+
# arg0 - SOAP::SOAPLong
|
380
|
+
class IsMinimized
|
381
|
+
attr_accessor :arg0
|
382
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
383
|
+
end
|
384
|
+
end
|
385
|
+
# {http://classes.win32.server.sirius.org/}isMinimizedResponse
|
386
|
+
# m_return - SOAP::SOAPBoolean
|
387
|
+
class IsMinimizedResponse
|
319
388
|
def m_return
|
389
|
+
@v_return
|
390
|
+
end
|
391
|
+
|
392
|
+
def m_return=(value) @v_return = value
|
393
|
+
end
|
394
|
+
|
395
|
+
def initialize(v_return = nil) @v_return = v_return
|
396
|
+
end
|
397
|
+
end
|
398
|
+
# {http://classes.win32.server.sirius.org/}getMenu
|
399
|
+
# arg0 - SOAP::SOAPLong
|
400
|
+
class GetMenu
|
320
401
|
attr_accessor :arg0
|
402
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
403
|
+
end
|
404
|
+
end
|
405
|
+
# {http://classes.win32.server.sirius.org/}getMenuResponse
|
406
|
+
# m_return - SOAP::SOAPLong
|
407
|
+
class GetMenuResponse
|
321
408
|
def m_return
|
409
|
+
@v_return
|
410
|
+
end
|
411
|
+
|
412
|
+
def m_return=(value) @v_return = value
|
413
|
+
end
|
414
|
+
|
415
|
+
def initialize(v_return = nil) @v_return = v_return
|
416
|
+
end
|
417
|
+
end
|
418
|
+
# {http://classes.win32.server.sirius.org/}maximize
|
419
|
+
# arg0 - SOAP::SOAPLong
|
420
|
+
class Maximize
|
421
|
+
attr_accessor :arg0
|
422
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
423
|
+
end
|
424
|
+
end
|
425
|
+
# {http://classes.win32.server.sirius.org/}maximizeResponse
|
426
|
+
class MaximizeResponse
|
322
427
|
def initialize
|
428
|
+
end
|
429
|
+
end
|
430
|
+
# {http://classes.win32.server.sirius.org/}getWindowPlacement
|
431
|
+
# arg0 - SOAP::SOAPLong
|
432
|
+
# arg1 - Sirius::Client::Win32::Core::Window::Windowplacement
|
433
|
+
class GetWindowPlacement
|
434
|
+
attr_accessor :arg0
|
323
435
|
attr_accessor :arg1
|
324
|
-
attr_accessor :arg2
|
325
|
-
attr_accessor :arg3
|
326
|
-
attr_accessor :arg4
|
327
|
-
attr_accessor :arg5
|
328
|
-
attr_accessor :arg6
|
329
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
|
330
|
-
@arg1 = arg1
|
331
|
-
@arg2 = arg2
|
332
|
-
@arg3 = arg3
|
333
|
-
@arg4 = arg4
|
334
|
-
@arg5 = arg5
|
335
|
-
@arg6 = arg6
|
336
|
-
end
|
337
|
-
end
|
338
|
-
# {http://classes.win32.server.sirius.org/}clickResponse
|
339
|
-
class ClickResponse
|
340
436
|
def initialize
|
341
|
-
|
342
|
-
|
343
|
-
|
437
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
438
|
+
@arg1 = arg1
|
439
|
+
end
|
440
|
+
end
|
441
|
+
# {http://classes.win32.server.sirius.org/}getWindowPlacementResponse
|
442
|
+
# m_return - SOAP::SOAPBoolean
|
443
|
+
class GetWindowPlacementResponse
|
344
444
|
def m_return
|
445
|
+
@v_return
|
446
|
+
end
|
447
|
+
|
448
|
+
def m_return=(value) @v_return = value
|
449
|
+
end
|
450
|
+
|
451
|
+
def initialize(v_return = nil) @v_return = v_return
|
452
|
+
end
|
453
|
+
end
|
454
|
+
# {http://classes.win32.server.sirius.org/}getClientRect
|
455
|
+
# arg0 - SOAP::SOAPLong
|
456
|
+
class GetClientRect
|
457
|
+
attr_accessor :arg0
|
458
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
459
|
+
end
|
460
|
+
end
|
461
|
+
# {http://classes.win32.server.sirius.org/}getClientRectResponse
|
462
|
+
# m_return - Sirius::Client::Win32::Core::Window::Rect
|
463
|
+
class GetClientRectResponse
|
345
464
|
def m_return
|
465
|
+
@v_return
|
466
|
+
end
|
467
|
+
|
468
|
+
def m_return=(value) @v_return = value
|
469
|
+
end
|
470
|
+
|
471
|
+
def initialize(v_return = nil) @v_return = v_return
|
472
|
+
end
|
473
|
+
end
|
474
|
+
# {http://classes.win32.server.sirius.org/}mouseDown
|
346
475
|
# arg0 - SOAP::SOAPLong
|
347
|
-
class Close
|
348
|
-
attr_accessor :arg0
|
349
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
350
|
-
end
|
351
|
-
end
|
352
|
-
# {http://classes.win32.server.sirius.org/}closeResponse
|
353
|
-
class CloseResponse
|
354
476
|
def initialize
|
355
|
-
end
|
356
|
-
end
|
357
|
-
# {http://classes.win32.server.sirius.org/}keyDown
|
358
|
-
# arg0 - SOAP::SOAPLong
|
359
477
|
# arg1 - SOAP::SOAPInt
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
478
|
+
# arg2 - SOAP::SOAPInt
|
479
|
+
# arg3 - SOAP::SOAPInt
|
480
|
+
# arg4 - SOAP::SOAPBoolean
|
481
|
+
# arg5 - SOAP::SOAPBoolean
|
482
|
+
# arg6 - SOAP::SOAPBoolean
|
483
|
+
class MouseDown
|
484
|
+
attr_accessor :arg0
|
485
|
+
attr_accessor :arg1
|
486
|
+
attr_accessor :arg2
|
487
|
+
attr_accessor :arg3
|
488
|
+
attr_accessor :arg4
|
489
|
+
attr_accessor :arg5
|
490
|
+
attr_accessor :arg6
|
491
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
|
364
492
|
@arg1 = arg1
|
365
|
-
end
|
366
|
-
end
|
367
|
-
# {http://classes.win32.server.sirius.org/}keyDownResponse
|
368
|
-
class KeyDownResponse
|
369
493
|
def initialize
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
494
|
+
@arg2 = arg2
|
495
|
+
@arg3 = arg3
|
496
|
+
@arg4 = arg4
|
497
|
+
@arg5 = arg5
|
498
|
+
@arg6 = arg6
|
499
|
+
end
|
500
|
+
end
|
501
|
+
# {http://classes.win32.server.sirius.org/}mouseDownResponse
|
502
|
+
class MouseDownResponse
|
374
503
|
def initialize
|
504
|
+
end
|
505
|
+
end
|
506
|
+
# {http://classes.win32.server.sirius.org/}sizeTo
|
507
|
+
# arg0 - SOAP::SOAPLong
|
375
508
|
# arg1 - SOAP::SOAPInt
|
376
|
-
|
377
|
-
|
378
|
-
attr_accessor :
|
379
|
-
|
509
|
+
# arg2 - SOAP::SOAPInt
|
510
|
+
class SizeTo
|
511
|
+
attr_accessor :arg0
|
512
|
+
attr_accessor :arg1
|
513
|
+
attr_accessor :arg2
|
514
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
380
515
|
@arg1 = arg1
|
381
|
-
end
|
382
|
-
end
|
383
|
-
# {http://classes.win32.server.sirius.org/}keyPressResponse
|
384
|
-
class KeyPressResponse
|
385
516
|
def initialize
|
386
|
-
end
|
387
|
-
end
|
388
|
-
# {http://classes.win32.server.sirius.org/}isMinimized
|
389
|
-
# arg0 - SOAP::SOAPLong
|
390
|
-
class IsMinimized
|
391
|
-
attr_accessor :arg0
|
392
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
393
|
-
end
|
394
|
-
end
|
395
|
-
# {http://classes.win32.server.sirius.org/}isMinimizedResponse
|
396
|
-
# m_return - SOAP::SOAPBoolean
|
397
|
-
class IsMinimizedResponse
|
398
517
|
def m_return
|
399
|
-
@v_return
|
400
|
-
end
|
401
|
-
|
402
|
-
def m_return=(value) @v_return = value
|
403
|
-
end
|
404
|
-
|
405
|
-
def initialize(v_return = nil) @v_return = v_return
|
406
|
-
end
|
407
|
-
end
|
408
|
-
# {http://classes.win32.server.sirius.org/}getMenu
|
409
|
-
# arg0 - SOAP::SOAPLong
|
410
|
-
class GetMenu
|
411
|
-
attr_accessor :arg0
|
412
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
413
|
-
end
|
414
|
-
end
|
415
|
-
# {http://classes.win32.server.sirius.org/}getMenuResponse
|
416
|
-
# m_return - SOAP::SOAPLong
|
417
|
-
class GetMenuResponse
|
418
518
|
def m_return
|
419
|
-
@v_return
|
420
|
-
end
|
421
|
-
|
422
|
-
def m_return=(value) @v_return = value
|
423
|
-
end
|
424
|
-
|
425
|
-
def initialize(v_return = nil) @v_return = v_return
|
426
|
-
end
|
427
|
-
end
|
428
|
-
# {http://classes.win32.server.sirius.org/}maximize
|
429
|
-
# arg0 - SOAP::SOAPLong
|
430
|
-
class Maximize
|
431
|
-
attr_accessor :arg0
|
432
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
433
|
-
end
|
434
|
-
end
|
435
|
-
# {http://classes.win32.server.sirius.org/}maximizeResponse
|
436
|
-
class MaximizeResponse
|
437
519
|
def initialize
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
#
|
442
|
-
|
443
|
-
class GetWindowPlacement
|
520
|
+
@arg2 = arg2
|
521
|
+
end
|
522
|
+
end
|
523
|
+
# {http://classes.win32.server.sirius.org/}sizeToResponse
|
524
|
+
class SizeToResponse
|
444
525
|
def initialize
|
526
|
+
end
|
527
|
+
end
|
528
|
+
# {http://classes.win32.server.sirius.org/}restore
|
529
|
+
# arg0 - SOAP::SOAPLong
|
530
|
+
class Restore
|
445
531
|
attr_accessor :arg0
|
446
|
-
attr_accessor :arg1
|
447
|
-
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
448
|
-
@arg1 = arg1
|
449
|
-
end
|
450
|
-
end
|
451
|
-
# {http://classes.win32.server.sirius.org/}getWindowPlacementResponse
|
452
|
-
# m_return - SOAP::SOAPBoolean
|
453
|
-
class GetWindowPlacementResponse
|
454
532
|
def m_return
|
455
|
-
|
456
|
-
end
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
def initialize(v_return = nil) @v_return = v_return
|
462
|
-
end
|
463
|
-
end
|
464
|
-
# {http://classes.win32.server.sirius.org/}getClientRect
|
533
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
534
|
+
end
|
535
|
+
end
|
536
|
+
# {http://classes.win32.server.sirius.org/}restoreResponse
|
537
|
+
class RestoreResponse
|
465
538
|
def initialize
|
539
|
+
end
|
540
|
+
end
|
541
|
+
# {http://classes.win32.server.sirius.org/}start
|
466
542
|
# arg0 - SOAP::SOAPLong
|
467
|
-
class GetClientRect
|
468
|
-
attr_accessor :arg0
|
469
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
470
|
-
end
|
471
|
-
end
|
472
|
-
# {http://classes.win32.server.sirius.org/}getClientRectResponse
|
473
|
-
# m_return - Sirius::Client::Win32::Core::Window::Rect
|
474
|
-
class GetClientRectResponse
|
475
543
|
def m_return
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
end
|
484
|
-
end
|
485
|
-
# {http://classes.win32.server.sirius.org/}mouseDown
|
486
|
-
# arg0 - SOAP::SOAPLong
|
487
|
-
# arg1 - SOAP::SOAPInt
|
488
|
-
# arg2 - SOAP::SOAPInt
|
489
|
-
# arg3 - SOAP::SOAPInt
|
490
|
-
# arg4 - SOAP::SOAPBoolean
|
491
|
-
# arg5 - SOAP::SOAPBoolean
|
492
|
-
# arg6 - SOAP::SOAPBoolean
|
493
|
-
class MouseDown
|
494
|
-
attr_accessor :arg0
|
495
|
-
attr_accessor :arg1
|
496
|
-
attr_accessor :arg2
|
544
|
+
# arg1 - SOAP::SOAPString
|
545
|
+
# arg2 - SOAP::SOAPString
|
546
|
+
# arg3 - SOAP::SOAPString
|
547
|
+
class Start
|
548
|
+
attr_accessor :arg0
|
549
|
+
attr_accessor :arg1
|
550
|
+
attr_accessor :arg2
|
497
551
|
attr_accessor :arg3
|
498
|
-
attr_accessor :arg4
|
499
|
-
attr_accessor :arg5
|
500
|
-
attr_accessor :arg6
|
501
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
|
502
|
-
@arg1 = arg1
|
503
|
-
@arg2 = arg2
|
504
|
-
@arg3 = arg3
|
505
|
-
@arg4 = arg4
|
506
|
-
@arg5 = arg5
|
507
|
-
@arg6 = arg6
|
508
|
-
end
|
509
|
-
end
|
510
|
-
# {http://classes.win32.server.sirius.org/}mouseDownResponse
|
511
|
-
class MouseDownResponse
|
512
552
|
def initialize
|
513
|
-
|
514
|
-
|
515
|
-
# {http://classes.win32.server.sirius.org/}sizeTo
|
516
|
-
# arg0 - SOAP::SOAPLong
|
517
|
-
# arg1 - SOAP::SOAPInt
|
518
|
-
# arg2 - SOAP::SOAPInt
|
519
|
-
class SizeTo
|
520
|
-
attr_accessor :arg0
|
521
|
-
attr_accessor :arg1
|
522
|
-
attr_accessor :arg2
|
523
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
524
|
-
@arg1 = arg1
|
553
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
|
554
|
+
@arg1 = arg1
|
525
555
|
@arg2 = arg2
|
526
|
-
end
|
527
|
-
end
|
528
|
-
# {http://classes.win32.server.sirius.org/}sizeToResponse
|
529
|
-
class SizeToResponse
|
530
556
|
def initialize
|
531
|
-
|
532
|
-
|
533
|
-
|
557
|
+
@arg3 = arg3
|
558
|
+
end
|
559
|
+
end
|
560
|
+
# {http://classes.win32.server.sirius.org/}startResponse
|
561
|
+
class StartResponse
|
534
562
|
def initialize
|
563
|
+
end
|
564
|
+
end
|
565
|
+
# {http://classes.win32.server.sirius.org/}mouseUp
|
535
566
|
# arg0 - SOAP::SOAPLong
|
536
|
-
class Restore
|
537
|
-
attr_accessor :arg0
|
538
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
539
|
-
end
|
540
|
-
end
|
541
|
-
# {http://classes.win32.server.sirius.org/}restoreResponse
|
542
|
-
class RestoreResponse
|
543
567
|
def initialize
|
544
|
-
|
545
|
-
|
546
|
-
#
|
547
|
-
#
|
548
|
-
#
|
549
|
-
#
|
550
|
-
|
551
|
-
|
552
|
-
attr_accessor :
|
553
|
-
attr_accessor :
|
554
|
-
attr_accessor :
|
555
|
-
attr_accessor :
|
556
|
-
|
557
|
-
|
558
|
-
|
568
|
+
# arg1 - SOAP::SOAPInt
|
569
|
+
# arg2 - SOAP::SOAPInt
|
570
|
+
# arg3 - SOAP::SOAPInt
|
571
|
+
# arg4 - SOAP::SOAPBoolean
|
572
|
+
# arg5 - SOAP::SOAPBoolean
|
573
|
+
# arg6 - SOAP::SOAPBoolean
|
574
|
+
class MouseUp
|
575
|
+
attr_accessor :arg0
|
576
|
+
attr_accessor :arg1
|
577
|
+
attr_accessor :arg2
|
578
|
+
attr_accessor :arg3
|
579
|
+
attr_accessor :arg4
|
580
|
+
attr_accessor :arg5
|
581
|
+
attr_accessor :arg6
|
582
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
|
583
|
+
@arg1 = arg1
|
584
|
+
@arg2 = arg2
|
559
585
|
@arg3 = arg3
|
560
|
-
end
|
561
|
-
end
|
562
|
-
# {http://classes.win32.server.sirius.org/}startResponse
|
563
|
-
class StartResponse
|
564
586
|
def initialize
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
#
|
571
|
-
|
572
|
-
# arg4 - SOAP::SOAPBoolean
|
573
|
-
# arg5 - SOAP::SOAPBoolean
|
574
|
-
# arg6 - SOAP::SOAPBoolean
|
575
|
-
class MouseUp
|
587
|
+
@arg4 = arg4
|
588
|
+
@arg5 = arg5
|
589
|
+
@arg6 = arg6
|
590
|
+
end
|
591
|
+
end
|
592
|
+
# {http://classes.win32.server.sirius.org/}mouseUpResponse
|
593
|
+
class MouseUpResponse
|
576
594
|
def initialize
|
595
|
+
end
|
596
|
+
end
|
597
|
+
# {http://classes.win32.server.sirius.org/}minimize
|
598
|
+
# arg0 - SOAP::SOAPLong
|
599
|
+
class Minimize
|
577
600
|
attr_accessor :arg0
|
578
|
-
attr_accessor :arg1
|
579
|
-
attr_accessor :arg2
|
580
|
-
attr_accessor :arg3
|
581
|
-
attr_accessor :arg4
|
582
|
-
attr_accessor :arg5
|
583
|
-
attr_accessor :arg6
|
584
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
|
585
|
-
@arg1 = arg1
|
586
|
-
@arg2 = arg2
|
587
|
-
@arg3 = arg3
|
588
|
-
@arg4 = arg4
|
589
|
-
@arg5 = arg5
|
590
|
-
@arg6 = arg6
|
591
|
-
end
|
592
|
-
end
|
593
|
-
# {http://classes.win32.server.sirius.org/}mouseUpResponse
|
594
|
-
class MouseUpResponse
|
595
601
|
def initialize
|
596
|
-
end
|
597
|
-
end
|
598
|
-
# {http://classes.win32.server.sirius.org/}minimize
|
599
|
-
# arg0 - SOAP::SOAPLong
|
600
|
-
class Minimize
|
601
|
-
attr_accessor :arg0
|
602
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
603
|
-
end
|
604
|
-
end
|
605
|
-
# {http://classes.win32.server.sirius.org/}minimizeResponse
|
606
|
-
class MinimizeResponse
|
607
602
|
def initialize
|
608
|
-
end
|
609
|
-
end
|
610
|
-
# {http://classes.win32.server.sirius.org/}isEnabled
|
611
|
-
# arg0 - SOAP::SOAPLong
|
612
|
-
class IsEnabled
|
613
|
-
attr_accessor :arg0
|
614
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
615
|
-
end
|
616
|
-
end
|
617
|
-
# {http://classes.win32.server.sirius.org/}isEnabledResponse
|
618
|
-
# m_return - SOAP::SOAPBoolean
|
619
|
-
class IsEnabledResponse
|
620
603
|
def m_return
|
621
|
-
@v_return
|
622
|
-
end
|
623
|
-
|
624
|
-
def m_return=(value) @v_return = value
|
625
|
-
end
|
626
|
-
|
627
|
-
def initialize(v_return = nil) @v_return = v_return
|
628
|
-
end
|
629
|
-
end
|
630
|
-
# {http://classes.win32.server.sirius.org/}isUnicode
|
631
|
-
# arg0 - SOAP::SOAPLong
|
632
|
-
class IsUnicode
|
633
|
-
attr_accessor :arg0
|
634
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
635
|
-
end
|
636
|
-
end
|
637
|
-
# {http://classes.win32.server.sirius.org/}isUnicodeResponse
|
638
|
-
# m_return - SOAP::SOAPBoolean
|
639
|
-
class IsUnicodeResponse
|
640
604
|
def m_return
|
641
|
-
|
642
|
-
end
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
def initialize(v_return = nil) @v_return = v_return
|
648
|
-
end
|
649
|
-
end
|
650
|
-
# {http://classes.win32.server.sirius.org/}doubleClick
|
651
|
-
# arg0 - SOAP::SOAPLong
|
652
|
-
# arg1 - SOAP::SOAPInt
|
653
|
-
# arg2 - SOAP::SOAPInt
|
654
|
-
# arg3 - SOAP::SOAPInt
|
655
|
-
# arg4 - SOAP::SOAPBoolean
|
656
|
-
# arg5 - SOAP::SOAPBoolean
|
657
|
-
# arg6 - SOAP::SOAPBoolean
|
658
|
-
class DoubleClick
|
605
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
606
|
+
end
|
607
|
+
end
|
608
|
+
# {http://classes.win32.server.sirius.org/}minimizeResponse
|
609
|
+
class MinimizeResponse
|
659
610
|
def initialize
|
611
|
+
end
|
612
|
+
end
|
613
|
+
# {http://classes.win32.server.sirius.org/}isEnabled
|
614
|
+
# arg0 - SOAP::SOAPLong
|
615
|
+
class IsEnabled
|
660
616
|
attr_accessor :arg0
|
661
|
-
attr_accessor :arg1
|
662
|
-
attr_accessor :arg2
|
663
|
-
attr_accessor :arg3
|
664
|
-
attr_accessor :arg4
|
665
|
-
attr_accessor :arg5
|
666
|
-
attr_accessor :arg6
|
667
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
|
668
|
-
@arg1 = arg1
|
669
|
-
@arg2 = arg2
|
670
|
-
@arg3 = arg3
|
671
|
-
@arg4 = arg4
|
672
|
-
@arg5 = arg5
|
673
|
-
@arg6 = arg6
|
674
|
-
end
|
675
|
-
end
|
676
|
-
# {http://classes.win32.server.sirius.org/}doubleClickResponse
|
677
|
-
class DoubleClickResponse
|
678
617
|
def initialize
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
618
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
619
|
+
end
|
620
|
+
end
|
621
|
+
# {http://classes.win32.server.sirius.org/}isEnabledResponse
|
622
|
+
# m_return - SOAP::SOAPBoolean
|
623
|
+
class IsEnabledResponse
|
683
624
|
def m_return
|
625
|
+
@v_return
|
626
|
+
end
|
627
|
+
|
628
|
+
def m_return=(value) @v_return = value
|
629
|
+
end
|
630
|
+
|
631
|
+
def initialize(v_return = nil) @v_return = v_return
|
632
|
+
end
|
633
|
+
end
|
634
|
+
# {http://classes.win32.server.sirius.org/}isUnicode
|
635
|
+
# arg0 - SOAP::SOAPLong
|
636
|
+
class IsUnicode
|
637
|
+
attr_accessor :arg0
|
638
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
639
|
+
end
|
640
|
+
end
|
641
|
+
# {http://classes.win32.server.sirius.org/}isUnicodeResponse
|
642
|
+
# m_return - SOAP::SOAPBoolean
|
643
|
+
class IsUnicodeResponse
|
684
644
|
def m_return
|
645
|
+
@v_return
|
646
|
+
end
|
647
|
+
|
648
|
+
def m_return=(value) @v_return = value
|
649
|
+
end
|
650
|
+
|
651
|
+
def initialize(v_return = nil) @v_return = v_return
|
652
|
+
end
|
653
|
+
end
|
654
|
+
# {http://classes.win32.server.sirius.org/}doubleClick
|
655
|
+
# arg0 - SOAP::SOAPLong
|
656
|
+
# arg1 - SOAP::SOAPInt
|
657
|
+
# arg2 - SOAP::SOAPInt
|
658
|
+
# arg3 - SOAP::SOAPInt
|
659
|
+
# arg4 - SOAP::SOAPBoolean
|
660
|
+
# arg5 - SOAP::SOAPBoolean
|
661
|
+
# arg6 - SOAP::SOAPBoolean
|
662
|
+
class DoubleClick
|
663
|
+
attr_accessor :arg0
|
664
|
+
attr_accessor :arg1
|
665
|
+
attr_accessor :arg2
|
666
|
+
attr_accessor :arg3
|
667
|
+
attr_accessor :arg4
|
668
|
+
attr_accessor :arg5
|
669
|
+
attr_accessor :arg6
|
670
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
|
671
|
+
@arg1 = arg1
|
672
|
+
@arg2 = arg2
|
673
|
+
@arg3 = arg3
|
674
|
+
@arg4 = arg4
|
675
|
+
@arg5 = arg5
|
676
|
+
@arg6 = arg6
|
677
|
+
end
|
678
|
+
end
|
679
|
+
# {http://classes.win32.server.sirius.org/}doubleClickResponse
|
680
|
+
class DoubleClickResponse
|
685
681
|
def initialize
|
682
|
+
end
|
683
|
+
end
|
684
|
+
|
685
|
+
end; end; end; end; end
|