sirius-client-win32 2013.4.1.0 → 2013.4.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +31 -1
- data/lib/sirius/win32.rb +6 -3
- data/lib/sirius/win32/classes/Control.rb +7 -1
- data/lib/sirius/win32/classes/DialogBox.rb +27 -2
- data/lib/sirius/win32/classes/MainWindow.rb +6 -2
- data/lib/sirius/win32/classes/Menu.rb +21 -11
- data/lib/sirius/win32/classes/MenuItem.rb +4 -5
- data/lib/sirius/win32/classes/MovableWindow.rb +3 -3
- data/lib/sirius/win32/classes/TopLevelWindow.rb +5 -4
- data/lib/sirius/win32/classes/Window.rb +19 -17
- data/lib/sirius/win32/classes/controls/Button.rb +4 -1
- data/lib/sirius/win32/classes/controls/CheckBox.rb +4 -1
- data/lib/sirius/win32/core.rb +19 -5
- data/lib/sirius/win32/core/button/ButtonService.rb +73 -35
- data/lib/sirius/win32/core/button/ButtonServiceClient.rb +1 -1
- data/lib/sirius/win32/core/button/ButtonServiceDriver.rb +12 -11
- data/lib/sirius/win32/core/button/ButtonServiceMappingRegistry.rb +1 -1
- data/lib/sirius/win32/core/combobox/ComboBoxService.rb +553 -249
- data/lib/sirius/win32/core/combobox/ComboBoxServiceClient.rb +1 -1
- data/lib/sirius/win32/core/combobox/ComboBoxServiceDriver.rb +46 -45
- data/lib/sirius/win32/core/combobox/ComboBoxServiceMappingRegistry.rb +1 -1
- data/lib/sirius/win32/core/dialog/DialogService.rb +182 -89
- data/lib/sirius/win32/core/dialog/DialogServiceClient.rb +1 -1
- data/lib/sirius/win32/core/dialog/DialogServiceDriver.rb +20 -19
- data/lib/sirius/win32/core/dialog/DialogServiceMappingRegistry.rb +1 -1
- data/lib/sirius/win32/core/edit/EditService.rb +357 -180
- data/lib/sirius/win32/core/edit/EditServiceClient.rb +1 -1
- data/lib/sirius/win32/core/edit/EditServiceDriver.rb +38 -37
- data/lib/sirius/win32/core/edit/EditServiceMappingRegistry.rb +1 -1
- data/lib/sirius/win32/core/listbox/ListBoxService.rb +373 -186
- data/lib/sirius/win32/core/listbox/ListBoxServiceClient.rb +1 -1
- data/lib/sirius/win32/core/listbox/ListBoxServiceDriver.rb +38 -37
- data/lib/sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb +1 -1
- data/lib/sirius/win32/core/menu/MenuService.rb +425 -209
- data/lib/sirius/win32/core/menu/MenuServiceClient.rb +1 -1
- data/lib/sirius/win32/core/menu/MenuServiceDriver.rb +26 -25
- data/lib/sirius/win32/core/menu/MenuServiceMappingRegistry.rb +1 -1
- data/lib/sirius/win32/core/tabcontrol/TabControlService.rb +285 -139
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceClient.rb +1 -1
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceDriver.rb +22 -21
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceMappingRegistry.rb +1 -1
- data/lib/sirius/win32/core/utils/Win32UtilsService.rb +49 -22
- data/lib/sirius/win32/core/utils/Win32UtilsServiceClient.rb +1 -1
- data/lib/sirius/win32/core/utils/Win32UtilsServiceDriver.rb +8 -7
- data/lib/sirius/win32/core/utils/Win32UtilsServiceMappingRegistry.rb +1 -1
- data/lib/sirius/win32/core/window/WindowService.rb +643 -313
- data/lib/sirius/win32/core/window/WindowServiceClient.rb +1 -1
- data/lib/sirius/win32/core/window/WindowServiceDriver.rb +62 -61
- data/lib/sirius/win32/core/window/WindowServiceMappingRegistry.rb +1 -1
- metadata +2 -2
@@ -1,144 +1,145 @@
|
|
1
|
-
require 'ListBoxService.rb'
|
2
|
-
require 'ListBoxServiceMappingRegistry.rb'
|
1
|
+
require 'sirius/win32/core/listbox/ListBoxService.rb'
|
2
|
+
require 'sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb'
|
3
3
|
require 'soap/rpc/driver'
|
4
4
|
|
5
5
|
module Sirius::Client::Win32::Core::Listbox
|
6
6
|
|
7
7
|
|
8
|
-
class ListBox < ::SOAP::RPC::Driver
|
8
|
+
class ListBox < ::SOAP::RPC::Driver
|
9
|
+
DefaultEndpointUrl = "http:localhost:21212/win32/listbox"
|
9
10
|
Methods = [
|
10
11
|
[ "",
|
11
12
|
"getCount",
|
12
|
-
[ [
|
13
|
-
[
|
13
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCount"]],
|
14
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCountResponse"]] ],
|
14
15
|
{ :request_style => :document, :request_use => :literal,
|
15
16
|
:response_style => :document, :response_use => :literal,
|
16
17
|
:faults => {} }
|
17
18
|
],
|
18
19
|
[ "",
|
19
20
|
"findString",
|
20
|
-
[ [
|
21
|
-
[
|
21
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindString"]],
|
22
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindStringResponse"]] ],
|
22
23
|
{ :request_style => :document, :request_use => :literal,
|
23
24
|
:response_style => :document, :response_use => :literal,
|
24
25
|
:faults => {} }
|
25
26
|
],
|
26
27
|
[ "",
|
27
28
|
"getCurSel",
|
28
|
-
[ [
|
29
|
-
[
|
29
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurSel"]],
|
30
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurSelResponse"]] ],
|
30
31
|
{ :request_style => :document, :request_use => :literal,
|
31
32
|
:response_style => :document, :response_use => :literal,
|
32
33
|
:faults => {} }
|
33
34
|
],
|
34
35
|
[ "",
|
35
36
|
"getText",
|
36
|
-
[ [
|
37
|
-
[
|
37
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetText"]],
|
38
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTextResponse"]] ],
|
38
39
|
{ :request_style => :document, :request_use => :literal,
|
39
40
|
:response_style => :document, :response_use => :literal,
|
40
41
|
:faults => {} }
|
41
42
|
],
|
42
43
|
[ "",
|
43
44
|
"selectString",
|
44
|
-
[ [
|
45
|
-
[
|
45
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelectString"]],
|
46
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelectStringResponse"]] ],
|
46
47
|
{ :request_style => :document, :request_use => :literal,
|
47
48
|
:response_style => :document, :response_use => :literal,
|
48
49
|
:faults => {} }
|
49
50
|
],
|
50
51
|
[ "",
|
51
52
|
"setCurSel",
|
52
|
-
[ [
|
53
|
-
[
|
53
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurSel"]],
|
54
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurSelResponse"]] ],
|
54
55
|
{ :request_style => :document, :request_use => :literal,
|
55
56
|
:response_style => :document, :response_use => :literal,
|
56
57
|
:faults => {} }
|
57
58
|
],
|
58
59
|
[ "",
|
59
60
|
"getSel",
|
60
|
-
[ [
|
61
|
-
[
|
61
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSel"]],
|
62
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelResponse"]] ],
|
62
63
|
{ :request_style => :document, :request_use => :literal,
|
63
64
|
:response_style => :document, :response_use => :literal,
|
64
65
|
:faults => {} }
|
65
66
|
],
|
66
67
|
[ "",
|
67
68
|
"setSel",
|
68
|
-
[ [
|
69
|
-
[
|
69
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetSel"]],
|
70
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetSelResponse"]] ],
|
70
71
|
{ :request_style => :document, :request_use => :literal,
|
71
72
|
:response_style => :document, :response_use => :literal,
|
72
73
|
:faults => {} }
|
73
74
|
],
|
74
75
|
[ "",
|
75
76
|
"getSelCount",
|
76
|
-
[ [
|
77
|
-
[
|
77
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelCount"]],
|
78
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelCountResponse"]] ],
|
78
79
|
{ :request_style => :document, :request_use => :literal,
|
79
80
|
:response_style => :document, :response_use => :literal,
|
80
81
|
:faults => {} }
|
81
82
|
],
|
82
83
|
[ "",
|
83
84
|
"getTopIndex",
|
84
|
-
[ [
|
85
|
-
[
|
85
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTopIndex"]],
|
86
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTopIndexResponse"]] ],
|
86
87
|
{ :request_style => :document, :request_use => :literal,
|
87
88
|
:response_style => :document, :response_use => :literal,
|
88
89
|
:faults => {} }
|
89
90
|
],
|
90
91
|
[ "",
|
91
92
|
"selItemRange",
|
92
|
-
[ [
|
93
|
-
[
|
93
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelItemRange"]],
|
94
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SelItemRangeResponse"]] ],
|
94
95
|
{ :request_style => :document, :request_use => :literal,
|
95
96
|
:response_style => :document, :response_use => :literal,
|
96
97
|
:faults => {} }
|
97
98
|
],
|
98
99
|
[ "",
|
99
100
|
"getTextLen",
|
100
|
-
[ [
|
101
|
-
[
|
101
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTextLen"]],
|
102
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetTextLenResponse"]] ],
|
102
103
|
{ :request_style => :document, :request_use => :literal,
|
103
104
|
:response_style => :document, :response_use => :literal,
|
104
105
|
:faults => {} }
|
105
106
|
],
|
106
107
|
[ "",
|
107
108
|
"getItemHeight",
|
108
|
-
[ [
|
109
|
-
[
|
109
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemHeight"]],
|
110
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemHeightResponse"]] ],
|
110
111
|
{ :request_style => :document, :request_use => :literal,
|
111
112
|
:response_style => :document, :response_use => :literal,
|
112
113
|
:faults => {} }
|
113
114
|
],
|
114
115
|
[ "",
|
115
116
|
"findStringExact",
|
116
|
-
[ [
|
117
|
-
[
|
117
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindStringExact"]],
|
118
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "FindStringExactResponse"]] ],
|
118
119
|
{ :request_style => :document, :request_use => :literal,
|
119
120
|
:response_style => :document, :response_use => :literal,
|
120
121
|
:faults => {} }
|
121
122
|
],
|
122
123
|
[ "",
|
123
124
|
"getHorizontalExtent",
|
124
|
-
[ [
|
125
|
-
[
|
125
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetHorizontalExtent"]],
|
126
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetHorizontalExtentResponse"]] ],
|
126
127
|
{ :request_style => :document, :request_use => :literal,
|
127
128
|
:response_style => :document, :response_use => :literal,
|
128
129
|
:faults => {} }
|
129
130
|
],
|
130
131
|
[ "",
|
131
132
|
"getCaretIndex",
|
132
|
-
[ [
|
133
|
-
[
|
133
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCaretIndex"]],
|
134
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCaretIndexResponse"]] ],
|
134
135
|
{ :request_style => :document, :request_use => :literal,
|
135
136
|
:response_style => :document, :response_use => :literal,
|
136
137
|
:faults => {} }
|
137
138
|
],
|
138
139
|
[ "",
|
139
140
|
"setCaretIndex",
|
140
|
-
[ [
|
141
|
-
[
|
141
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCaretIndex"]],
|
142
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCaretIndexResponse"]] ],
|
142
143
|
{ :request_style => :document, :request_use => :literal,
|
143
144
|
:response_style => :document, :response_use => :literal,
|
144
145
|
:faults => {} }
|
@@ -3,74 +3,108 @@ require 'xsd/qname'
|
|
3
3
|
module Sirius; module Client; module Win32; module Core; module Menu
|
4
4
|
|
5
5
|
# {http://classes.win32.server.sirius.org/}GetMenuItemCount
|
6
|
-
# arg0 - SOAP::SOAPLong
|
7
6
|
class GetMenuItemCount
|
7
|
+
# arg0 - SOAP::SOAPLong
|
8
|
+
class GetMenuItemCount
|
9
|
+
|
8
10
|
attr_accessor :arg0
|
9
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
10
|
-
|
11
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
12
|
+
|
13
|
+
end
|
14
|
+
|
11
15
|
end
|
12
16
|
# {http://classes.win32.server.sirius.org/}GetMenuItemCountResponse
|
13
|
-
# m_return - SOAP::SOAPInt
|
14
|
-
class GetMenuItemCountResponse
|
15
17
|
def m_return
|
16
|
-
|
18
|
+
# m_return - SOAP::SOAPInt
|
19
|
+
|
20
|
+
class GetMenuItemCountResponse
|
21
|
+
def m_return
|
22
|
+
@v_return
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
def m_return=(value) @v_return = value
|
27
|
+
|
17
28
|
end
|
18
29
|
|
19
|
-
def
|
30
|
+
def initialize(v_return = nil) @v_return = v_return
|
31
|
+
|
20
32
|
end
|
21
33
|
|
22
|
-
def initialize(v_return = nil) @v_return = v_return
|
23
|
-
end
|
24
34
|
end
|
25
35
|
# {http://classes.win32.server.sirius.org/}pickItem
|
26
36
|
# arg0 - SOAP::SOAPLong
|
27
37
|
# arg1 - SOAP::SOAPLong
|
28
|
-
# arg2 - SOAP::SOAPInt
|
29
|
-
|
30
|
-
|
31
|
-
|
38
|
+
# arg2 - SOAP::SOAPInt
|
39
|
+
|
40
|
+
class PickItem
|
41
|
+
|
42
|
+
attr_accessor :arg0
|
43
|
+
|
44
|
+
attr_accessor :arg1
|
45
|
+
|
32
46
|
attr_accessor :arg2
|
33
47
|
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
34
48
|
@arg1 = arg1
|
35
|
-
@arg2 = arg2
|
36
|
-
|
49
|
+
@arg2 = arg2
|
50
|
+
|
51
|
+
end
|
52
|
+
|
37
53
|
end
|
38
54
|
# {http://classes.win32.server.sirius.org/}pickItemResponse
|
39
|
-
# m_return - SOAP::SOAPBoolean
|
40
|
-
class PickItemResponse
|
41
55
|
def m_return
|
42
|
-
|
56
|
+
# m_return - SOAP::SOAPBoolean
|
57
|
+
|
58
|
+
class PickItemResponse
|
59
|
+
def m_return
|
60
|
+
@v_return
|
61
|
+
|
43
62
|
end
|
44
63
|
|
45
|
-
def m_return=(value) @v_return = value
|
64
|
+
def m_return=(value) @v_return = value
|
65
|
+
|
66
|
+
end
|
67
|
+
|
68
|
+
def initialize(v_return = nil) @v_return = v_return
|
69
|
+
|
46
70
|
end
|
47
71
|
|
48
|
-
def initialize(v_return = nil) @v_return = v_return
|
49
|
-
end
|
50
72
|
end
|
51
73
|
# {http://classes.win32.server.sirius.org/}GetMenuItemInfo
|
52
74
|
# arg0 - SOAP::SOAPLong
|
53
75
|
# arg1 - SOAP::SOAPInt
|
54
76
|
# arg2 - SOAP::SOAPBoolean
|
55
|
-
# arg3 - Sirius::Client::Win32::Core::Menu::Menuiteminfo
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
attr_accessor :
|
77
|
+
# arg3 - Sirius::Client::Win32::Core::Menu::Menuiteminfo
|
78
|
+
|
79
|
+
class GetMenuItemInfo
|
80
|
+
|
81
|
+
attr_accessor :arg0
|
82
|
+
|
83
|
+
attr_accessor :arg1
|
84
|
+
|
85
|
+
attr_accessor :arg2
|
86
|
+
|
60
87
|
attr_accessor :arg3
|
61
88
|
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
|
62
89
|
@arg1 = arg1
|
63
90
|
@arg2 = arg2
|
64
|
-
@arg3 = arg3
|
65
|
-
|
91
|
+
@arg3 = arg3
|
92
|
+
|
93
|
+
end
|
94
|
+
|
66
95
|
end
|
67
96
|
# {http://classes.win32.server.sirius.org/}structure
|
68
97
|
# abstract
|
69
98
|
# autoRead - SOAP::SOAPBoolean
|
70
|
-
# autoWrite - SOAP::SOAPBoolean
|
71
|
-
|
72
|
-
|
99
|
+
# autoWrite - SOAP::SOAPBoolean
|
100
|
+
|
101
|
+
class Structure
|
102
|
+
|
103
|
+
attr_accessor :autoRead
|
104
|
+
|
73
105
|
attr_accessor :autoWrite
|
74
106
|
def initialize(autoRead = nil, autoWrite = nil) @autoRead = autoRead
|
75
|
-
@autoWrite = autoWrite
|
76
|
-
|
107
|
+
@autoWrite = autoWrite
|
108
|
+
|
109
|
+
end
|
110
|
+
|
77
111
|
end
|
78
112
|
# {http://classes.win32.server.sirius.org/}menuiteminfo
|
79
113
|
# autoRead - SOAP::SOAPBoolean
|
@@ -86,21 +120,36 @@ module Sirius; module Client; module Win32; module Core; module Menu
|
|
86
120
|
# dwItemData - Sirius::Client::Win32::Core::Menu::UlongPTR
|
87
121
|
# dwTypeData - SOAP::SOAPString
|
88
122
|
# cch - Sirius::Client::Win32::Core::Menu::Uint
|
89
|
-
# hbmpItem - Sirius::Client::Win32::Core::Menu::Hbitmap
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
attr_accessor :
|
94
|
-
|
95
|
-
attr_accessor :
|
96
|
-
|
97
|
-
attr_accessor :
|
98
|
-
|
99
|
-
attr_accessor :
|
100
|
-
|
101
|
-
attr_accessor :
|
102
|
-
|
103
|
-
attr_accessor :
|
123
|
+
# hbmpItem - Sirius::Client::Win32::Core::Menu::Hbitmap
|
124
|
+
|
125
|
+
class Menuiteminfo < Structure
|
126
|
+
|
127
|
+
attr_accessor :autoRead
|
128
|
+
|
129
|
+
attr_accessor :autoWrite
|
130
|
+
|
131
|
+
attr_accessor :cbSize
|
132
|
+
|
133
|
+
attr_accessor :fMask
|
134
|
+
|
135
|
+
attr_accessor :fType
|
136
|
+
|
137
|
+
attr_accessor :fState
|
138
|
+
|
139
|
+
attr_accessor :wID
|
140
|
+
|
141
|
+
attr_accessor :hSubMenu
|
142
|
+
|
143
|
+
attr_accessor :hbmpChecked
|
144
|
+
|
145
|
+
attr_accessor :hbmpUnchecked
|
146
|
+
|
147
|
+
attr_accessor :dwItemData
|
148
|
+
|
149
|
+
attr_accessor :dwTypeData
|
150
|
+
|
151
|
+
attr_accessor :cch
|
152
|
+
|
104
153
|
attr_accessor :hbmpItem
|
105
154
|
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
|
106
155
|
@autoWrite = autoWrite
|
@@ -115,8 +164,10 @@ module Sirius; module Client; module Win32; module Core; module Menu
|
|
115
164
|
@dwItemData = dwItemData
|
116
165
|
@dwTypeData = dwTypeData
|
117
166
|
@cch = cch
|
118
|
-
@hbmpItem = hbmpItem
|
119
|
-
|
167
|
+
@hbmpItem = hbmpItem
|
168
|
+
|
169
|
+
end
|
170
|
+
|
120
171
|
end
|
121
172
|
# {http://classes.win32.server.sirius.org/}rect
|
122
173
|
# autoRead - SOAP::SOAPBoolean
|
@@ -124,21 +175,30 @@ module Sirius; module Client; module Win32; module Core; module Menu
|
|
124
175
|
# left - SOAP::SOAPInt
|
125
176
|
# top - SOAP::SOAPInt
|
126
177
|
# right - SOAP::SOAPInt
|
127
|
-
# bottom - SOAP::SOAPInt
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
attr_accessor :
|
132
|
-
|
133
|
-
attr_accessor :
|
178
|
+
# bottom - SOAP::SOAPInt
|
179
|
+
|
180
|
+
class Rect < Structure
|
181
|
+
|
182
|
+
attr_accessor :autoRead
|
183
|
+
|
184
|
+
attr_accessor :autoWrite
|
185
|
+
|
186
|
+
attr_accessor :left
|
187
|
+
|
188
|
+
attr_accessor :top
|
189
|
+
|
190
|
+
attr_accessor :right
|
191
|
+
|
134
192
|
attr_accessor :bottom
|
135
193
|
def initialize(autoRead = nil, autoWrite = nil, left = nil, top = nil, right = nil, bottom = nil) @autoRead = autoRead
|
136
194
|
@autoWrite = autoWrite
|
137
195
|
@left = left
|
138
196
|
@top = top
|
139
197
|
@right = right
|
140
|
-
@bottom = bottom
|
141
|
-
|
198
|
+
@bottom = bottom
|
199
|
+
|
200
|
+
end
|
201
|
+
|
142
202
|
end
|
143
203
|
# {http://classes.win32.server.sirius.org/}menuinfo
|
144
204
|
# autoRead - SOAP::SOAPBoolean
|
@@ -149,16 +209,26 @@ module Sirius; module Client; module Win32; module Core; module Menu
|
|
149
209
|
# cyMax - Sirius::Client::Win32::Core::Menu::Uint
|
150
210
|
# hbrBack - Sirius::Client::Win32::Core::Menu::Hbrush
|
151
211
|
# dwContextHelpID - Sirius::Client::Win32::Core::Menu::Dword
|
152
|
-
# dwMenuData - Sirius::Client::Win32::Core::Menu::UlongPTR
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
attr_accessor :
|
157
|
-
|
158
|
-
attr_accessor :
|
159
|
-
|
160
|
-
attr_accessor :
|
161
|
-
|
212
|
+
# dwMenuData - Sirius::Client::Win32::Core::Menu::UlongPTR
|
213
|
+
|
214
|
+
class Menuinfo < Structure
|
215
|
+
|
216
|
+
attr_accessor :autoRead
|
217
|
+
|
218
|
+
attr_accessor :autoWrite
|
219
|
+
|
220
|
+
attr_accessor :cbSize
|
221
|
+
|
222
|
+
attr_accessor :fMask
|
223
|
+
|
224
|
+
attr_accessor :dwStyle
|
225
|
+
|
226
|
+
attr_accessor :cyMax
|
227
|
+
|
228
|
+
attr_accessor :hbrBack
|
229
|
+
|
230
|
+
attr_accessor :dwContextHelpID
|
231
|
+
|
162
232
|
attr_accessor :dwMenuData
|
163
233
|
def initialize(autoRead = nil, autoWrite = nil, cbSize = nil, fMask = nil, dwStyle = nil, cyMax = nil, hbrBack = nil, dwContextHelpID = nil, dwMenuData = nil) @autoRead = autoRead
|
164
234
|
@autoWrite = autoWrite
|
@@ -168,276 +238,422 @@ module Sirius; module Client; module Win32; module Core; module Menu
|
|
168
238
|
@cyMax = cyMax
|
169
239
|
@hbrBack = hbrBack
|
170
240
|
@dwContextHelpID = dwContextHelpID
|
171
|
-
@dwMenuData = dwMenuData
|
172
|
-
|
241
|
+
@dwMenuData = dwMenuData
|
242
|
+
|
243
|
+
end
|
244
|
+
|
173
245
|
end
|
174
246
|
# {http://classes.win32.server.sirius.org/}number
|
175
|
-
# abstract
|
176
|
-
class Number
|
177
247
|
def initialize
|
178
|
-
|
248
|
+
# abstract
|
249
|
+
|
250
|
+
class Number
|
251
|
+
def initialize
|
252
|
+
|
253
|
+
end
|
254
|
+
|
179
255
|
end
|
180
256
|
# {http://classes.win32.server.sirius.org/}integerType
|
181
|
-
# abstract
|
182
|
-
class IntegerType < Number
|
183
257
|
def initialize
|
184
|
-
|
258
|
+
# abstract
|
259
|
+
|
260
|
+
class IntegerType < Number
|
261
|
+
def initialize
|
262
|
+
|
263
|
+
end
|
264
|
+
|
185
265
|
end
|
186
|
-
# {http://classes.win32.server.sirius.org/}dword
|
187
|
-
class Dword < IntegerType
|
188
266
|
def initialize
|
189
|
-
|
267
|
+
# {http://classes.win32.server.sirius.org/}dword
|
268
|
+
|
269
|
+
class Dword < IntegerType
|
270
|
+
def initialize
|
271
|
+
|
272
|
+
end
|
273
|
+
|
190
274
|
end
|
191
|
-
# {http://classes.win32.server.sirius.org/}uint
|
192
|
-
class Uint < Dword
|
193
275
|
def initialize
|
194
|
-
|
276
|
+
# {http://classes.win32.server.sirius.org/}uint
|
277
|
+
|
278
|
+
class Uint < Dword
|
279
|
+
def initialize
|
280
|
+
|
281
|
+
end
|
282
|
+
|
195
283
|
end
|
196
|
-
# {http://classes.win32.server.sirius.org/}ulongPTR
|
197
|
-
class UlongPTR < IntegerType
|
198
284
|
def initialize
|
199
|
-
|
285
|
+
# {http://classes.win32.server.sirius.org/}ulongPTR
|
286
|
+
|
287
|
+
class UlongPTR < IntegerType
|
288
|
+
def initialize
|
289
|
+
|
290
|
+
end
|
291
|
+
|
200
292
|
end
|
201
293
|
# {http://classes.win32.server.sirius.org/}pointerType
|
202
294
|
# abstract
|
203
|
-
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
204
|
-
|
295
|
+
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
296
|
+
|
297
|
+
class PointerType
|
298
|
+
|
205
299
|
attr_accessor :pointer
|
206
|
-
def initialize(pointer = nil) @pointer = pointer
|
207
|
-
|
300
|
+
def initialize(pointer = nil) @pointer = pointer
|
301
|
+
|
302
|
+
end
|
303
|
+
|
208
304
|
end
|
209
305
|
# {http://classes.win32.server.sirius.org/}handle
|
210
|
-
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
211
|
-
|
306
|
+
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
307
|
+
|
308
|
+
class Handle < PointerType
|
309
|
+
|
212
310
|
attr_accessor :pointer
|
213
|
-
def initialize(pointer = nil) @pointer = pointer
|
214
|
-
|
311
|
+
def initialize(pointer = nil) @pointer = pointer
|
312
|
+
|
313
|
+
end
|
314
|
+
|
215
315
|
end
|
216
316
|
# {http://classes.win32.server.sirius.org/}hmenu
|
217
|
-
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
218
|
-
|
317
|
+
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
318
|
+
|
319
|
+
class Hmenu < Handle
|
320
|
+
|
219
321
|
attr_accessor :pointer
|
220
|
-
def initialize(pointer = nil) @pointer = pointer
|
221
|
-
|
322
|
+
def initialize(pointer = nil) @pointer = pointer
|
323
|
+
|
324
|
+
end
|
325
|
+
|
222
326
|
end
|
223
327
|
# {http://classes.win32.server.sirius.org/}hbitmap
|
224
|
-
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
225
|
-
|
328
|
+
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
329
|
+
|
330
|
+
class Hbitmap < Handle
|
331
|
+
|
226
332
|
attr_accessor :pointer
|
227
|
-
def initialize(pointer = nil) @pointer = pointer
|
228
|
-
|
333
|
+
def initialize(pointer = nil) @pointer = pointer
|
334
|
+
|
335
|
+
end
|
336
|
+
|
229
337
|
end
|
230
338
|
# {http://classes.win32.server.sirius.org/}hbrush
|
231
|
-
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
232
|
-
|
339
|
+
# pointer - Sirius::Client::Win32::Core::Menu::Pointer
|
340
|
+
|
341
|
+
class Hbrush < Handle
|
342
|
+
|
233
343
|
attr_accessor :pointer
|
234
|
-
def initialize(pointer = nil) @pointer = pointer
|
235
|
-
|
344
|
+
def initialize(pointer = nil) @pointer = pointer
|
345
|
+
|
346
|
+
end
|
347
|
+
|
236
348
|
end
|
237
|
-
# {http://classes.win32.server.sirius.org/}pointer
|
238
|
-
class Pointer
|
239
349
|
def initialize
|
240
|
-
|
350
|
+
# {http://classes.win32.server.sirius.org/}pointer
|
351
|
+
|
352
|
+
class Pointer
|
353
|
+
def initialize
|
354
|
+
|
355
|
+
end
|
356
|
+
|
241
357
|
end
|
242
358
|
# {http://classes.win32.server.sirius.org/}GetMenuItemInfoResponse
|
243
|
-
# m_return - SOAP::SOAPBoolean
|
244
|
-
class GetMenuItemInfoResponse
|
245
359
|
def m_return
|
246
|
-
|
360
|
+
# m_return - SOAP::SOAPBoolean
|
361
|
+
|
362
|
+
class GetMenuItemInfoResponse
|
363
|
+
def m_return
|
364
|
+
@v_return
|
365
|
+
|
366
|
+
end
|
367
|
+
|
368
|
+
def m_return=(value) @v_return = value
|
369
|
+
|
247
370
|
end
|
248
371
|
|
249
|
-
def
|
372
|
+
def initialize(v_return = nil) @v_return = v_return
|
373
|
+
|
250
374
|
end
|
251
375
|
|
252
|
-
def initialize(v_return = nil) @v_return = v_return
|
253
|
-
end
|
254
376
|
end
|
255
377
|
# {http://classes.win32.server.sirius.org/}GetMenuState
|
256
378
|
# arg0 - SOAP::SOAPLong
|
257
379
|
# arg1 - SOAP::SOAPInt
|
258
|
-
# arg2 - SOAP::SOAPInt
|
259
|
-
|
260
|
-
|
261
|
-
|
380
|
+
# arg2 - SOAP::SOAPInt
|
381
|
+
|
382
|
+
class GetMenuState
|
383
|
+
|
384
|
+
attr_accessor :arg0
|
385
|
+
|
386
|
+
attr_accessor :arg1
|
387
|
+
|
262
388
|
attr_accessor :arg2
|
263
389
|
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
264
390
|
@arg1 = arg1
|
265
|
-
@arg2 = arg2
|
266
|
-
|
391
|
+
@arg2 = arg2
|
392
|
+
|
393
|
+
end
|
394
|
+
|
267
395
|
end
|
268
396
|
# {http://classes.win32.server.sirius.org/}GetMenuStateResponse
|
269
|
-
# m_return - SOAP::SOAPInt
|
270
|
-
class GetMenuStateResponse
|
271
397
|
def m_return
|
272
|
-
|
398
|
+
# m_return - SOAP::SOAPInt
|
399
|
+
|
400
|
+
class GetMenuStateResponse
|
401
|
+
def m_return
|
402
|
+
@v_return
|
403
|
+
|
273
404
|
end
|
274
405
|
|
275
|
-
def m_return=(value) @v_return = value
|
406
|
+
def m_return=(value) @v_return = value
|
407
|
+
|
408
|
+
end
|
409
|
+
|
410
|
+
def initialize(v_return = nil) @v_return = v_return
|
411
|
+
|
276
412
|
end
|
277
413
|
|
278
|
-
def initialize(v_return = nil) @v_return = v_return
|
279
|
-
end
|
280
414
|
end
|
281
415
|
# {http://classes.win32.server.sirius.org/}GetMenuString
|
282
416
|
# arg0 - SOAP::SOAPLong
|
283
417
|
# arg1 - SOAP::SOAPInt
|
284
418
|
# arg2 - SOAP::SOAPUnsignedShort
|
285
419
|
# arg3 - SOAP::SOAPInt
|
286
|
-
# arg4 - SOAP::SOAPInt
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
attr_accessor :
|
291
|
-
|
420
|
+
# arg4 - SOAP::SOAPInt
|
421
|
+
|
422
|
+
class GetMenuString
|
423
|
+
|
424
|
+
attr_accessor :arg0
|
425
|
+
|
426
|
+
attr_accessor :arg1
|
427
|
+
|
428
|
+
attr_accessor :arg2
|
429
|
+
|
430
|
+
attr_accessor :arg3
|
431
|
+
|
292
432
|
attr_accessor :arg4
|
293
433
|
def initialize(arg0 = nil, arg1 = nil, arg2 = [], arg3 = nil, arg4 = nil) @arg0 = arg0
|
294
434
|
@arg1 = arg1
|
295
435
|
@arg2 = arg2
|
296
436
|
@arg3 = arg3
|
297
|
-
@arg4 = arg4
|
298
|
-
|
437
|
+
@arg4 = arg4
|
438
|
+
|
439
|
+
end
|
440
|
+
|
299
441
|
end
|
300
442
|
# {http://classes.win32.server.sirius.org/}GetMenuStringResponse
|
301
|
-
# m_return - SOAP::SOAPInt
|
302
|
-
class GetMenuStringResponse
|
303
443
|
def m_return
|
304
|
-
|
444
|
+
# m_return - SOAP::SOAPInt
|
445
|
+
|
446
|
+
class GetMenuStringResponse
|
447
|
+
def m_return
|
448
|
+
@v_return
|
449
|
+
|
305
450
|
end
|
306
451
|
|
307
|
-
def m_return=(value) @v_return = value
|
452
|
+
def m_return=(value) @v_return = value
|
453
|
+
|
454
|
+
end
|
455
|
+
|
456
|
+
def initialize(v_return = nil) @v_return = v_return
|
457
|
+
|
308
458
|
end
|
309
459
|
|
310
|
-
def initialize(v_return = nil) @v_return = v_return
|
311
|
-
end
|
312
460
|
end
|
313
461
|
# {http://classes.win32.server.sirius.org/}GetMenuItemRect
|
314
462
|
# arg0 - SOAP::SOAPLong
|
315
463
|
# arg1 - SOAP::SOAPLong
|
316
464
|
# arg2 - SOAP::SOAPInt
|
317
|
-
# arg3 - Sirius::Client::Win32::Core::Menu::Rect
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
attr_accessor :
|
465
|
+
# arg3 - Sirius::Client::Win32::Core::Menu::Rect
|
466
|
+
|
467
|
+
class GetMenuItemRect
|
468
|
+
|
469
|
+
attr_accessor :arg0
|
470
|
+
|
471
|
+
attr_accessor :arg1
|
472
|
+
|
473
|
+
attr_accessor :arg2
|
474
|
+
|
322
475
|
attr_accessor :arg3
|
323
476
|
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
|
324
477
|
@arg1 = arg1
|
325
478
|
@arg2 = arg2
|
326
|
-
@arg3 = arg3
|
327
|
-
|
479
|
+
@arg3 = arg3
|
480
|
+
|
481
|
+
end
|
482
|
+
|
328
483
|
end
|
329
484
|
# {http://classes.win32.server.sirius.org/}GetMenuItemRectResponse
|
330
|
-
# m_return - SOAP::SOAPBoolean
|
331
|
-
class GetMenuItemRectResponse
|
332
485
|
def m_return
|
333
|
-
|
486
|
+
# m_return - SOAP::SOAPBoolean
|
487
|
+
|
488
|
+
class GetMenuItemRectResponse
|
489
|
+
def m_return
|
490
|
+
@v_return
|
491
|
+
|
334
492
|
end
|
335
493
|
|
336
|
-
def m_return=(value) @v_return = value
|
494
|
+
def m_return=(value) @v_return = value
|
495
|
+
|
496
|
+
end
|
497
|
+
|
498
|
+
def initialize(v_return = nil) @v_return = v_return
|
499
|
+
|
337
500
|
end
|
338
501
|
|
339
|
-
def initialize(v_return = nil) @v_return = v_return
|
340
|
-
end
|
341
502
|
end
|
342
503
|
# {http://classes.win32.server.sirius.org/}GetMenuItemID
|
343
504
|
# arg0 - SOAP::SOAPLong
|
344
|
-
# arg1 - SOAP::SOAPInt
|
345
|
-
|
346
|
-
|
505
|
+
# arg1 - SOAP::SOAPInt
|
506
|
+
|
507
|
+
class GetMenuItemID
|
508
|
+
|
509
|
+
attr_accessor :arg0
|
510
|
+
|
347
511
|
attr_accessor :arg1
|
348
512
|
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
349
|
-
@arg1 = arg1
|
350
|
-
|
513
|
+
@arg1 = arg1
|
514
|
+
|
515
|
+
end
|
516
|
+
|
351
517
|
end
|
352
518
|
# {http://classes.win32.server.sirius.org/}GetMenuItemIDResponse
|
353
|
-
# m_return - SOAP::SOAPInt
|
354
|
-
class GetMenuItemIDResponse
|
355
519
|
def m_return
|
356
|
-
|
520
|
+
# m_return - SOAP::SOAPInt
|
521
|
+
|
522
|
+
class GetMenuItemIDResponse
|
523
|
+
def m_return
|
524
|
+
@v_return
|
525
|
+
|
526
|
+
end
|
527
|
+
|
528
|
+
def m_return=(value) @v_return = value
|
529
|
+
|
357
530
|
end
|
358
531
|
|
359
|
-
def
|
532
|
+
def initialize(v_return = nil) @v_return = v_return
|
533
|
+
|
360
534
|
end
|
361
535
|
|
362
|
-
def initialize(v_return = nil) @v_return = v_return
|
363
|
-
end
|
364
536
|
end
|
365
537
|
# {http://classes.win32.server.sirius.org/}GetMenuDefaultItem
|
366
538
|
# arg0 - SOAP::SOAPLong
|
367
539
|
# arg1 - SOAP::SOAPInt
|
368
|
-
# arg2 - SOAP::SOAPInt
|
369
|
-
|
370
|
-
|
371
|
-
|
540
|
+
# arg2 - SOAP::SOAPInt
|
541
|
+
|
542
|
+
class GetMenuDefaultItem
|
543
|
+
|
544
|
+
attr_accessor :arg0
|
545
|
+
|
546
|
+
attr_accessor :arg1
|
547
|
+
|
372
548
|
attr_accessor :arg2
|
373
549
|
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
374
550
|
@arg1 = arg1
|
375
|
-
@arg2 = arg2
|
376
|
-
|
551
|
+
@arg2 = arg2
|
552
|
+
|
553
|
+
end
|
554
|
+
|
377
555
|
end
|
378
556
|
# {http://classes.win32.server.sirius.org/}GetMenuDefaultItemResponse
|
379
|
-
# m_return - SOAP::SOAPInt
|
380
|
-
class GetMenuDefaultItemResponse
|
381
557
|
def m_return
|
382
|
-
|
558
|
+
# m_return - SOAP::SOAPInt
|
559
|
+
|
560
|
+
class GetMenuDefaultItemResponse
|
561
|
+
def m_return
|
562
|
+
@v_return
|
563
|
+
|
383
564
|
end
|
384
565
|
|
385
|
-
def m_return=(value) @v_return = value
|
566
|
+
def m_return=(value) @v_return = value
|
567
|
+
|
568
|
+
end
|
569
|
+
|
570
|
+
def initialize(v_return = nil) @v_return = v_return
|
571
|
+
|
386
572
|
end
|
387
573
|
|
388
|
-
def initialize(v_return = nil) @v_return = v_return
|
389
|
-
end
|
390
574
|
end
|
391
575
|
# {http://classes.win32.server.sirius.org/}GetMenuInfo
|
392
576
|
# arg0 - SOAP::SOAPLong
|
393
|
-
# arg1 - Sirius::Client::Win32::Core::Menu::Menuinfo
|
394
|
-
|
395
|
-
|
577
|
+
# arg1 - Sirius::Client::Win32::Core::Menu::Menuinfo
|
578
|
+
|
579
|
+
class GetMenuInfo
|
580
|
+
|
581
|
+
attr_accessor :arg0
|
582
|
+
|
396
583
|
attr_accessor :arg1
|
397
584
|
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
398
|
-
@arg1 = arg1
|
399
|
-
|
585
|
+
@arg1 = arg1
|
586
|
+
|
587
|
+
end
|
588
|
+
|
400
589
|
end
|
401
590
|
# {http://classes.win32.server.sirius.org/}GetMenuInfoResponse
|
402
|
-
# m_return - SOAP::SOAPBoolean
|
403
|
-
class GetMenuInfoResponse
|
404
591
|
def m_return
|
405
|
-
|
592
|
+
# m_return - SOAP::SOAPBoolean
|
593
|
+
|
594
|
+
class GetMenuInfoResponse
|
595
|
+
def m_return
|
596
|
+
@v_return
|
597
|
+
|
406
598
|
end
|
407
599
|
|
408
|
-
def m_return=(value) @v_return = value
|
600
|
+
def m_return=(value) @v_return = value
|
601
|
+
|
602
|
+
end
|
603
|
+
|
604
|
+
def initialize(v_return = nil) @v_return = v_return
|
605
|
+
|
409
606
|
end
|
410
607
|
|
411
|
-
def initialize(v_return = nil) @v_return = v_return
|
412
|
-
end
|
413
608
|
end
|
414
609
|
# {http://classes.win32.server.sirius.org/}IsMenu
|
415
|
-
# arg0 - SOAP::SOAPLong
|
416
|
-
|
610
|
+
# arg0 - SOAP::SOAPLong
|
611
|
+
|
612
|
+
class IsMenu
|
613
|
+
|
417
614
|
attr_accessor :arg0
|
418
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
419
|
-
|
615
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
616
|
+
|
617
|
+
end
|
618
|
+
|
420
619
|
end
|
421
620
|
# {http://classes.win32.server.sirius.org/}IsMenuResponse
|
422
|
-
# m_return - SOAP::SOAPBoolean
|
423
|
-
class IsMenuResponse
|
424
621
|
def m_return
|
425
|
-
|
622
|
+
# m_return - SOAP::SOAPBoolean
|
623
|
+
|
624
|
+
class IsMenuResponse
|
625
|
+
def m_return
|
626
|
+
@v_return
|
627
|
+
|
628
|
+
end
|
629
|
+
|
630
|
+
def m_return=(value) @v_return = value
|
631
|
+
|
426
632
|
end
|
427
633
|
|
428
|
-
def
|
634
|
+
def initialize(v_return = nil) @v_return = v_return
|
635
|
+
|
429
636
|
end
|
430
637
|
|
431
|
-
def initialize(v_return = nil) @v_return = v_return
|
432
|
-
end
|
433
638
|
end
|
434
639
|
# {http://classes.win32.server.sirius.org/}GetSubMenu
|
435
640
|
# arg0 - SOAP::SOAPLong
|
436
|
-
# arg1 - SOAP::SOAPInt
|
437
|
-
|
438
|
-
|
641
|
+
# arg1 - SOAP::SOAPInt
|
642
|
+
|
643
|
+
class GetSubMenu
|
644
|
+
|
645
|
+
attr_accessor :arg0
|
646
|
+
|
439
647
|
attr_accessor :arg1
|
440
648
|
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
441
|
-
@arg1 = arg1
|
442
|
-
|
649
|
+
@arg1 = arg1
|
650
|
+
|
651
|
+
end
|
652
|
+
|
443
653
|
end
|
444
654
|
# {http://classes.win32.server.sirius.org/}GetSubMenuResponse
|
445
|
-
# m_return - SOAP::SOAPLong
|
446
|
-
class GetSubMenuResponse
|
447
655
|
def m_return
|
448
|
-
|
656
|
+
# m_return - SOAP::SOAPLong
|
657
|
+
|
658
|
+
class GetSubMenuResponse
|
659
|
+
def m_return
|
660
|
+
@v_return
|
661
|
+
|
449
662
|
end
|
450
663
|
|
451
|
-
def m_return=(value) @v_return = value
|
664
|
+
def m_return=(value) @v_return = value
|
665
|
+
|
666
|
+
end
|
667
|
+
|
668
|
+
def initialize(v_return = nil) @v_return = v_return
|
669
|
+
|
452
670
|
end
|
453
671
|
|
454
|
-
def initialize(v_return = nil) @v_return = v_return
|
455
|
-
end
|
456
672
|
end
|
457
673
|
|
458
674
|
end; end; end; end; end
|