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