sirius-client-win32 1.1.1 → 1.2.21
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.rb +6 -0
- data/lib/sirius/win32/classes/Control.rb +10 -0
- data/lib/sirius/win32/classes/DialogBox.rb +10 -0
- data/lib/sirius/win32/classes/MainWindow.rb +17 -0
- data/lib/sirius/win32/classes/Menu.rb +10 -0
- data/lib/sirius/win32/classes/MenuItem.rb +10 -0
- data/lib/sirius/win32/classes/MovableWindow.rb +49 -0
- data/lib/sirius/win32/classes/TopLevelWindow.rb +32 -0
- data/lib/sirius/win32/classes/Window.rb +116 -0
- data/lib/sirius/win32/classes/controls/Button.rb +12 -0
- data/lib/sirius/win32/classes/controls/CheckBox.rb +12 -0
- data/lib/sirius/win32/classes/controls/Edit.rb +12 -0
- data/lib/sirius/win32/classes/controls/ListBox.rb +12 -0
- data/lib/sirius/win32/classes/controls/ListView.rb +12 -0
- data/lib/sirius/win32/classes/controls/RadioButton.rb +12 -0
- data/lib/sirius/win32/classes/controls/Toolbar.rb +12 -0
- data/lib/sirius/win32/classes/controls/UpDown.rb +12 -0
- data/lib/sirius/win32/core.rb +16 -0
- data/lib/sirius/win32/core/button/ButtonService.rb +71 -0
- data/lib/sirius/win32/core/button/ButtonServiceClient.rb +60 -0
- data/lib/sirius/win32/core/button/ButtonServiceDriver.rb +72 -0
- data/lib/sirius/win32/core/button/ButtonServiceMappingRegistry.rb +199 -0
- data/lib/sirius/win32/core/combobox/ComboBoxService.rb +471 -0
- data/lib/sirius/win32/core/combobox/ComboBoxServiceClient.rb +264 -0
- data/lib/sirius/win32/core/combobox/ComboBoxServiceDriver.rb +208 -0
- data/lib/sirius/win32/core/combobox/ComboBoxServiceMappingRegistry.rb +1100 -0
- data/lib/sirius/win32/core/dialog/DialogService.rb +187 -0
- data/lib/sirius/win32/core/dialog/DialogServiceClient.rb +108 -0
- data/lib/sirius/win32/core/dialog/DialogServiceDriver.rb +104 -0
- data/lib/sirius/win32/core/dialog/DialogServiceMappingRegistry.rb +424 -0
- data/lib/sirius/win32/core/edit/EditService.rb +358 -0
- data/lib/sirius/win32/core/edit/EditServiceClient.rb +216 -0
- data/lib/sirius/win32/core/edit/EditServiceDriver.rb +176 -0
- data/lib/sirius/win32/core/edit/EditServiceMappingRegistry.rb +859 -0
- data/lib/sirius/win32/core/listbox/ListBoxService.rb +379 -0
- data/lib/sirius/win32/core/listbox/ListBoxServiceClient.rb +216 -0
- data/lib/sirius/win32/core/listbox/ListBoxServiceDriver.rb +176 -0
- data/lib/sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb +880 -0
- data/lib/sirius/win32/core/menu/MenuService.rb +443 -0
- data/lib/sirius/win32/core/menu/MenuServiceClient.rb +144 -0
- data/lib/sirius/win32/core/menu/MenuServiceDriver.rb +128 -0
- data/lib/sirius/win32/core/menu/MenuServiceMappingRegistry.rb +830 -0
- data/lib/sirius/win32/core/tabcontrol/TabControlService.rb +286 -0
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceClient.rb +120 -0
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceDriver.rb +112 -0
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceMappingRegistry.rb +583 -0
- data/lib/sirius/win32/core/utils/Win32UtilsService.rb +64 -0
- data/lib/sirius/win32/core/utils/Win32UtilsServiceClient.rb +36 -0
- data/lib/sirius/win32/core/utils/Win32UtilsServiceDriver.rb +56 -0
- data/lib/sirius/win32/core/utils/Win32UtilsServiceMappingRegistry.rb +136 -0
- data/lib/sirius/win32/core/window/WindowService.rb +625 -0
- data/lib/sirius/win32/core/window/WindowServiceClient.rb +360 -0
- data/lib/sirius/win32/core/window/WindowServiceDriver.rb +272 -0
- data/lib/sirius/win32/core/window/WindowServiceMappingRegistry.rb +1513 -0
- metadata +54 -2
@@ -0,0 +1,443 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
module Sirius; module Client; module Win32; module Core; module Menu
|
4
|
+
|
5
|
+
# {http://classes.win32.server.sirius.org/}GetMenuItemCount
|
6
|
+
# arg0 - SOAP::SOAPLong
|
7
|
class GetMenuItemCount
|
8
|
+
attr_accessor :arg0
|
9
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
10
|
+
end
|
11
|
+
end
|
12
|
+
# {http://classes.win32.server.sirius.org/}GetMenuItemCountResponse
|
13
|
+
# m_return - SOAP::SOAPInt
|
14
|
+
class GetMenuItemCountResponse
|
1
15
|
def m_return
|
16
|
+
@v_return
|
17
|
+
end
|
18
|
+
|
19
|
+
def m_return=(value) @v_return = value
|
20
|
+
end
|
21
|
+
|
22
|
+
def initialize(v_return = nil) @v_return = v_return
|
23
|
+
end
|
24
|
+
end
|
25
|
+
# {http://classes.win32.server.sirius.org/}pickItem
|
26
|
+
# arg0 - SOAP::SOAPLong
|
27
|
+
# arg1 - SOAP::SOAPLong
|
28
|
+
# arg2 - SOAP::SOAPInt
|
29
|
+
class PickItem
|
30
|
+
attr_accessor :arg0
|
31
|
+
attr_accessor :arg1
|
32
|
+
attr_accessor :arg2
|
33
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
34
|
+
@arg1 = arg1
|
35
|
+
@arg2 = arg2
|
36
|
+
end
|
37
|
+
end
|
38
|
+
# {http://classes.win32.server.sirius.org/}pickItemResponse
|
39
|
+
# m_return - SOAP::SOAPBoolean
|
40
|
+
class PickItemResponse
|
2
41
|
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://classes.win32.server.sirius.org/}GetMenuItemInfo
|
52
|
+
# arg0 - SOAP::SOAPLong
|
53
|
+
# arg1 - SOAP::SOAPInt
|
54
|
+
# arg2 - SOAP::SOAPBoolean
|
55
|
+
# arg3 - Sirius::Client::Win32::Core::Menu::Menuiteminfo
|
56
|
+
class GetMenuItemInfo
|
57
|
+
attr_accessor :arg0
|
58
|
+
attr_accessor :arg1
|
59
|
+
attr_accessor :arg2
|
60
|
+
attr_accessor :arg3
|
61
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
|
62
|
+
@arg1 = arg1
|
63
|
+
@arg2 = arg2
|
64
|
+
@arg3 = arg3
|
65
|
+
end
|
66
|
+
end
|
67
|
+
# {http://classes.win32.server.sirius.org/}structure
|
68
|
+
# abstract
|
69
|
+
# autoRead - SOAP::SOAPBoolean
|
70
|
+
# autoWrite - SOAP::SOAPBoolean
|
71
|
+
class Structure
|
72
|
+
attr_accessor :autoRead
|
73
|
+
attr_accessor :autoWrite
|
74
|
+
def initialize(autoRead = nil, autoWrite = nil) @autoRead = autoRead
|
75
|
+
@autoWrite = autoWrite
|
76
|
+
end
|
77
|
+
end
|
78
|
+
# {http://classes.win32.server.sirius.org/}menuiteminfo
|
79
|
+
# autoRead - SOAP::SOAPBoolean
|
80
|
+
# autoWrite - SOAP::SOAPBoolean
|
81
|
+
# cbSize - SOAP::SOAPInt
|
82
|
+
# fMask - Sirius::Client::Win32::Core::Menu::Uint
|
83
|
+
# fType - Sirius::Client::Win32::Core::Menu::Uint
|
84
|
+
# fState - Sirius::Client::Win32::Core::Menu::Uint
|
85
|
+
# wID - Sirius::Client::Win32::Core::Menu::Uint
|
86
|
+
# hSubMenu - Sirius::Client::Win32::Core::Menu::Hmenu
|
87
|
+
# hbmpChecked - Sirius::Client::Win32::Core::Menu::Hbitmap
|
88
|
+
# hbmpUnchecked - Sirius::Client::Win32::Core::Menu::Hbitmap
|
89
|
+
# dwItemData - Sirius::Client::Win32::Core::Menu::UlongPTR
|
90
|
+
# dwTypeData - SOAP::SOAPString
|
91
|
+
# cch - Sirius::Client::Win32::Core::Menu::Uint
|
92
|
+
# hbmpItem - Sirius::Client::Win32::Core::Menu::Hbitmap
|
93
|
+
class Menuiteminfo < Structure
|
94
|
+
attr_accessor :autoRead
|
95
|
+
attr_accessor :autoWrite
|
96
|
+
attr_accessor :cbSize
|
97
|
+
attr_accessor :fMask
|
98
|
+
attr_accessor :fType
|
99
|
+
attr_accessor :fState
|
100
|
+
attr_accessor :wID
|
101
|
+
attr_accessor :hSubMenu
|
102
|
+
attr_accessor :hbmpChecked
|
103
|
+
attr_accessor :hbmpUnchecked
|
104
|
+
attr_accessor :dwItemData
|
105
|
+
attr_accessor :dwTypeData
|
106
|
+
attr_accessor :cch
|
107
|
+
attr_accessor :hbmpItem
|
108
|
+
def initialize(autoRead = nil, autoWrite = nil, cbSize = nil, fMask = nil, fType = nil, fState = nil, wID = nil, hSubMenu = nil, hbmpChecked = nil, hbmpUnchecked = nil, dwItemData = nil, dwTypeData = nil, cch = nil, hbmpItem = nil) @autoRead = autoRead
|
109
|
+
@autoWrite = autoWrite
|
110
|
+
@cbSize = cbSize
|
111
|
+
@fMask = fMask
|
112
|
+
@fType = fType
|
113
|
+
@fState = fState
|
114
|
+
@wID = wID
|
115
|
+
@hSubMenu = hSubMenu
|
116
|
+
@hbmpChecked = hbmpChecked
|
117
|
+
@hbmpUnchecked = hbmpUnchecked
|
118
|
+
@dwItemData = dwItemData
|
119
|
+
@dwTypeData = dwTypeData
|
120
|
+
@cch = cch
|
121
|
+
@hbmpItem = hbmpItem
|
122
|
+
end
|
123
|
+
end
|
124
|
+
# {http://classes.win32.server.sirius.org/}rect
|
125
|
+
# autoRead - SOAP::SOAPBoolean
|
126
|
+
# autoWrite - SOAP::SOAPBoolean
|
127
|
+
# left - SOAP::SOAPInt
|
128
|
+
# top - SOAP::SOAPInt
|
129
|
+
# right - SOAP::SOAPInt
|
130
|
+
# bottom - SOAP::SOAPInt
|
131
|
+
class Rect < Structure
|
132
|
+
attr_accessor :autoRead
|
133
|
+
attr_accessor :autoWrite
|
134
|
+
attr_accessor :left
|
135
|
+
attr_accessor :top
|
136
|
+
attr_accessor :right
|
137
|
+
attr_accessor :bottom
|
138
|
+
def initialize(autoRead = nil, autoWrite = nil, left = nil, top = nil, right = nil, bottom = nil) @autoRead = autoRead
|
139
|
+
@autoWrite = autoWrite
|
140
|
+
@left = left
|
141
|
+
@top = top
|
142
|
+
@right = right
|
143
|
+
@bottom = bottom
|
144
|
+
end
|
145
|
+
end
|
146
|
+
# {http://classes.win32.server.sirius.org/}menuinfo
|
147
|
+
# autoRead - SOAP::SOAPBoolean
|
148
|
+
# autoWrite - SOAP::SOAPBoolean
|
149
|
+
# cbSize - SOAP::SOAPInt
|
150
|
+
# fMask - Sirius::Client::Win32::Core::Menu::Dword
|
151
|
+
# dwStyle - Sirius::Client::Win32::Core::Menu::Dword
|
152
|
+
# cyMax - Sirius::Client::Win32::Core::Menu::Uint
|
153
|
+
# hbrBack - Sirius::Client::Win32::Core::Menu::Hbrush
|
154
|
+
# dwContextHelpID - Sirius::Client::Win32::Core::Menu::Dword
|
155
|
+
# dwMenuData - Sirius::Client::Win32::Core::Menu::UlongPTR
|
156
|
+
class Menuinfo < Structure
|
157
|
+
attr_accessor :autoRead
|
158
|
+
attr_accessor :autoWrite
|
159
|
+
attr_accessor :cbSize
|
160
|
+
attr_accessor :fMask
|
161
|
+
attr_accessor :dwStyle
|
162
|
+
attr_accessor :cyMax
|
163
|
+
attr_accessor :hbrBack
|
164
|
+
attr_accessor :dwContextHelpID
|
165
|
+
attr_accessor :dwMenuData
|
166
|
+
def initialize(autoRead = nil, autoWrite = nil, cbSize = nil, fMask = nil, dwStyle = nil, cyMax = nil, hbrBack = nil, dwContextHelpID = nil, dwMenuData = nil) @autoRead = autoRead
|
167
|
+
@autoWrite = autoWrite
|
168
|
+
@cbSize = cbSize
|
169
|
+
@fMask = fMask
|
170
|
+
@dwStyle = dwStyle
|
171
|
+
@cyMax = cyMax
|
172
|
+
@hbrBack = hbrBack
|
173
|
+
@dwContextHelpID = dwContextHelpID
|
174
|
+
@dwMenuData = dwMenuData
|
175
|
+
end
|
176
|
+
end
|
177
|
+
# {http://classes.win32.server.sirius.org/}number
|
178
|
+
# abstract
|
179
|
+
class Number
|
3
180
|
def initialize
|
181
|
+
end
|
182
|
+
end
|
183
|
+
# {http://classes.win32.server.sirius.org/}integerType
|
184
|
+
# abstract
|
185
|
+
class IntegerType < Number
|
4
186
|
def initialize
|
187
|
+
end
|
188
|
+
end
|
189
|
+
# {http://classes.win32.server.sirius.org/}dword
|
190
|
+
class Dword < IntegerType
|
5
191
|
def initialize
|
192
|
+
end
|
193
|
+
end
|
194
|
+
# {http://classes.win32.server.sirius.org/}uint
|
195
|
+
class Uint < Dword
|
6
196
|
def initialize
|
197
|
+
end
|
198
|
+
end
|
199
|
+
# {http://classes.win32.server.sirius.org/}ulongPTR
|
200
|
+
class UlongPTR < IntegerType
|
7
201
|
def initialize
|
202
|
+
end
|
203
|
+
end
|
204
|
+
# {http://classes.win32.server.sirius.org/}pointerType
|
205
|
+
# abstract
|
206
|
+
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
207
|
+
class PointerType
|
208
|
+
attr_accessor :pointer
|
209
|
+
def initialize(pointer = nil) @pointer = pointer
|
210
|
+
end
|
211
|
+
end
|
212
|
+
# {http://classes.win32.server.sirius.org/}handle
|
213
|
+
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
214
|
+
class Handle < PointerType
|
215
|
+
attr_accessor :pointer
|
216
|
+
def initialize(pointer = nil) @pointer = pointer
|
217
|
+
end
|
218
|
+
end
|
219
|
+
# {http://classes.win32.server.sirius.org/}hmenu
|
220
|
+
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
221
|
+
class Hmenu < Handle
|
222
|
+
attr_accessor :pointer
|
223
|
+
def initialize(pointer = nil) @pointer = pointer
|
224
|
+
end
|
225
|
+
end
|
226
|
+
# {http://classes.win32.server.sirius.org/}hbitmap
|
227
|
+
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
228
|
+
class Hbitmap < Handle
|
229
|
+
attr_accessor :pointer
|
230
|
+
def initialize(pointer = nil) @pointer = pointer
|
231
|
+
end
|
232
|
+
end
|
233
|
+
# {http://classes.win32.server.sirius.org/}hbrush
|
234
|
+
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
235
|
+
class Hbrush < Handle
|
236
|
+
attr_accessor :pointer
|
237
|
+
def initialize(pointer = nil) @pointer = pointer
|
238
|
+
end
|
239
|
+
end
|
240
|
+
# {http://classes.win32.server.sirius.org/}pointer
|
241
|
+
class Pointer
|
8
242
|
def initialize
|
243
|
+
end
|
244
|
+
end
|
245
|
+
# {http://classes.win32.server.sirius.org/}GetMenuItemInfoResponse
|
246
|
+
# m_return - SOAP::SOAPBoolean
|
247
|
+
class GetMenuItemInfoResponse
|
9
248
|
def m_return
|
249
|
+
@v_return
|
250
|
+
end
|
251
|
+
|
252
|
+
def m_return=(value) @v_return = value
|
253
|
+
end
|
254
|
+
|
255
|
+
def initialize(v_return = nil) @v_return = v_return
|
256
|
+
end
|
257
|
+
end
|
258
|
+
# {http://classes.win32.server.sirius.org/}GetMenuState
|
259
|
+
# arg0 - SOAP::SOAPLong
|
260
|
+
# arg1 - SOAP::SOAPInt
|
261
|
+
# arg2 - SOAP::SOAPInt
|
262
|
+
class GetMenuState
|
263
|
+
attr_accessor :arg0
|
264
|
+
attr_accessor :arg1
|
265
|
+
attr_accessor :arg2
|
266
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
267
|
+
@arg1 = arg1
|
268
|
+
@arg2 = arg2
|
269
|
+
end
|
270
|
+
end
|
271
|
+
# {http://classes.win32.server.sirius.org/}GetMenuStateResponse
|
272
|
+
# m_return - SOAP::SOAPInt
|
273
|
+
class GetMenuStateResponse
|
10
274
|
def m_return
|
275
|
+
@v_return
|
276
|
+
end
|
277
|
+
|
278
|
+
def m_return=(value) @v_return = value
|
279
|
+
end
|
280
|
+
|
281
|
+
def initialize(v_return = nil) @v_return = v_return
|
282
|
+
end
|
283
|
+
end
|
284
|
+
# {http://classes.win32.server.sirius.org/}GetMenuString
|
285
|
+
# arg0 - SOAP::SOAPLong
|
286
|
+
# arg1 - SOAP::SOAPInt
|
287
|
+
# arg2 - SOAP::SOAPUnsignedShort
|
288
|
+
# arg3 - SOAP::SOAPInt
|
289
|
+
# arg4 - SOAP::SOAPInt
|
290
|
+
class GetMenuString
|
291
|
+
attr_accessor :arg0
|
292
|
+
attr_accessor :arg1
|
293
|
+
attr_accessor :arg2
|
294
|
+
attr_accessor :arg3
|
295
|
+
attr_accessor :arg4
|
296
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = [], arg3 = nil, arg4 = nil) @arg0 = arg0
|
297
|
+
@arg1 = arg1
|
298
|
+
@arg2 = arg2
|
299
|
+
@arg3 = arg3
|
300
|
+
@arg4 = arg4
|
301
|
+
end
|
302
|
+
end
|
303
|
+
# {http://classes.win32.server.sirius.org/}GetMenuStringResponse
|
304
|
+
# m_return - SOAP::SOAPInt
|
305
|
+
class GetMenuStringResponse
|
11
306
|
def m_return
|
307
|
+
@v_return
|
308
|
+
end
|
309
|
+
|
310
|
+
def m_return=(value) @v_return = value
|
311
|
+
end
|
312
|
+
|
313
|
+
def initialize(v_return = nil) @v_return = v_return
|
314
|
+
end
|
315
|
+
end
|
316
|
+
# {http://classes.win32.server.sirius.org/}GetMenuItemRect
|
317
|
+
# arg0 - SOAP::SOAPLong
|
318
|
+
# arg1 - SOAP::SOAPLong
|
319
|
+
# arg2 - SOAP::SOAPInt
|
320
|
+
# arg3 - Sirius::Client::Win32::Core::Menu::Rect
|
321
|
+
class GetMenuItemRect
|
322
|
+
attr_accessor :arg0
|
323
|
+
attr_accessor :arg1
|
324
|
+
attr_accessor :arg2
|
325
|
+
attr_accessor :arg3
|
326
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
|
327
|
+
@arg1 = arg1
|
328
|
+
@arg2 = arg2
|
329
|
+
@arg3 = arg3
|
330
|
+
end
|
331
|
+
end
|
332
|
+
# {http://classes.win32.server.sirius.org/}GetMenuItemRectResponse
|
333
|
+
# m_return - SOAP::SOAPBoolean
|
334
|
+
class GetMenuItemRectResponse
|
12
335
|
def m_return
|
336
|
+
@v_return
|
337
|
+
end
|
338
|
+
|
339
|
+
def m_return=(value) @v_return = value
|
340
|
+
end
|
341
|
+
|
342
|
+
def initialize(v_return = nil) @v_return = v_return
|
343
|
+
end
|
344
|
+
end
|
345
|
+
# {http://classes.win32.server.sirius.org/}GetMenuItemID
|
346
|
+
# arg0 - SOAP::SOAPLong
|
347
|
+
# arg1 - SOAP::SOAPInt
|
348
|
+
class GetMenuItemID
|
349
|
+
attr_accessor :arg0
|
350
|
+
attr_accessor :arg1
|
351
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
352
|
+
@arg1 = arg1
|
353
|
+
end
|
354
|
+
end
|
355
|
+
# {http://classes.win32.server.sirius.org/}GetMenuItemIDResponse
|
356
|
+
# m_return - SOAP::SOAPInt
|
357
|
+
class GetMenuItemIDResponse
|
13
358
|
def m_return
|
359
|
+
@v_return
|
360
|
+
end
|
361
|
+
|
362
|
+
def m_return=(value) @v_return = value
|
363
|
+
end
|
364
|
+
|
365
|
+
def initialize(v_return = nil) @v_return = v_return
|
366
|
+
end
|
367
|
+
end
|
368
|
+
# {http://classes.win32.server.sirius.org/}GetMenuDefaultItem
|
369
|
+
# arg0 - SOAP::SOAPLong
|
370
|
+
# arg1 - SOAP::SOAPInt
|
371
|
+
# arg2 - SOAP::SOAPInt
|
372
|
+
class GetMenuDefaultItem
|
373
|
+
attr_accessor :arg0
|
374
|
+
attr_accessor :arg1
|
375
|
+
attr_accessor :arg2
|
376
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
377
|
+
@arg1 = arg1
|
378
|
+
@arg2 = arg2
|
379
|
+
end
|
380
|
+
end
|
381
|
+
# {http://classes.win32.server.sirius.org/}GetMenuDefaultItemResponse
|
382
|
+
# m_return - SOAP::SOAPInt
|
383
|
+
class GetMenuDefaultItemResponse
|
14
384
|
def m_return
|
385
|
+
@v_return
|
386
|
+
end
|
387
|
+
|
388
|
+
def m_return=(value) @v_return = value
|
389
|
+
end
|
390
|
+
|
391
|
+
def initialize(v_return = nil) @v_return = v_return
|
392
|
+
end
|
393
|
+
end
|
394
|
+
# {http://classes.win32.server.sirius.org/}GetMenuInfo
|
395
|
+
# arg0 - SOAP::SOAPLong
|
396
|
+
# arg1 - Sirius::Client::Win32::Core::Menu::Menuinfo
|
397
|
+
class GetMenuInfo
|
398
|
+
attr_accessor :arg0
|
399
|
+
attr_accessor :arg1
|
400
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
401
|
+
@arg1 = arg1
|
402
|
+
end
|
403
|
+
end
|
404
|
+
# {http://classes.win32.server.sirius.org/}GetMenuInfoResponse
|
405
|
+
# m_return - SOAP::SOAPBoolean
|
406
|
+
class GetMenuInfoResponse
|
15
407
|
def m_return
|
408
|
+
@v_return
|
409
|
+
end
|
410
|
+
|
411
|
+
def m_return=(value) @v_return = value
|
412
|
+
end
|
413
|
+
|
414
|
+
def initialize(v_return = nil) @v_return = v_return
|
415
|
+
end
|
416
|
+
end
|
417
|
+
# {http://classes.win32.server.sirius.org/}IsMenu
|
418
|
+
# arg0 - SOAP::SOAPLong
|
419
|
+
class IsMenu
|
420
|
+
attr_accessor :arg0
|
421
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
422
|
+
end
|
423
|
+
end
|
424
|
+
# {http://classes.win32.server.sirius.org/}IsMenuResponse
|
425
|
+
# m_return - SOAP::SOAPBoolean
|
426
|
+
class IsMenuResponse
|
16
427
|
def m_return
|
428
|
+
@v_return
|
429
|
+
end
|
430
|
+
|
431
|
+
def m_return=(value) @v_return = value
|
432
|
+
end
|
433
|
+
|
434
|
+
def initialize(v_return = nil) @v_return = v_return
|
435
|
+
end
|
436
|
+
end
|
437
|
+
# {http://classes.win32.server.sirius.org/}GetSubMenu
|
438
|
+
# arg0 - SOAP::SOAPLong
|
439
|
+
# arg1 - SOAP::SOAPInt
|
440
|
+
class GetSubMenu
|
441
|
+
attr_accessor :arg0
|
442
|
+
attr_accessor :arg1
|
443
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
444
|
+
@arg1 = arg1
|
445
|
+
end
|
446
|
+
end
|
447
|
+
# {http://classes.win32.server.sirius.org/}GetSubMenuResponse
|
448
|
+
# m_return - SOAP::SOAPLong
|
449
|
+
class GetSubMenuResponse
|
17
450
|
def m_return
|
451
|
+
@v_return
|
452
|
+
end
|
453
|
+
|
454
|
+
def m_return=(value) @v_return = value
|
455
|
+
end
|
456
|
+
|
457
|
+
def initialize(v_return = nil) @v_return = v_return
|
458
|
+
end
|
459
|
+
end
|
460
|
+
|
461
|
+
end; end; end; end; end
|