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,60 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'ButtonServiceDriver.rb'
|
3
|
+
|
4
|
+
Sirius::Client::Win32::Core::Button
|
5
|
+
|
6
|
+
endpoint_url = ARGV.shift
|
7
|
+
obj = Button.new(endpoint_url)
|
8
|
+
|
9
|
+
# run ruby with -d to see SOAP wiredumps.
|
10
|
+
obj.wiredump_dev = STDERR if $DEBUG
|
11
|
+
|
12
|
+
# SYNOPSIS
|
13
|
+
# setState(parameters)
|
14
|
+
#
|
15
|
+
# ARGS
|
16
|
+
# parameters SetState - {http://controls.classes.win32.server.sirius.org/}SetState
|
17
|
+
#
|
18
|
+
# RETURNS
|
19
|
+
# parameters SetStateResponse - {http://controls.classes.win32.server.sirius.org/}SetStateResponse
|
20
|
+
#
|
21
|
+
parameters = nil
|
22
|
+
puts obj.setState(parameters)
|
23
|
+
|
24
|
+
# SYNOPSIS
|
25
|
+
# setCheck(parameters)
|
26
|
+
#
|
27
|
+
# ARGS
|
28
|
+
# parameters SetCheck - {http://controls.classes.win32.server.sirius.org/}SetCheck
|
29
|
+
#
|
30
|
+
# RETURNS
|
31
|
+
# parameters SetCheckResponse - {http://controls.classes.win32.server.sirius.org/}SetCheckResponse
|
32
|
+
#
|
33
|
+
parameters = nil
|
34
|
+
puts obj.setCheck(parameters)
|
35
|
+
|
36
|
+
# SYNOPSIS
|
37
|
+
# getState(parameters)
|
38
|
+
#
|
39
|
+
# ARGS
|
40
|
+
# parameters GetState - {http://controls.classes.win32.server.sirius.org/}GetState
|
41
|
+
#
|
42
|
+
# RETURNS
|
43
|
+
# parameters GetStateResponse - {http://controls.classes.win32.server.sirius.org/}GetStateResponse
|
44
|
+
#
|
45
|
+
parameters = nil
|
46
|
+
puts obj.getState(parameters)
|
47
|
+
|
48
|
+
# SYNOPSIS
|
49
|
+
# getCheck(parameters)
|
50
|
+
#
|
51
|
+
# ARGS
|
52
|
+
# parameters GetCheck - {http://controls.classes.win32.server.sirius.org/}GetCheck
|
53
|
+
#
|
54
|
+
# RETURNS
|
55
|
+
# parameters GetCheckResponse - {http://controls.classes.win32.server.sirius.org/}GetCheckResponse
|
56
|
+
#
|
57
|
+
parameters = nil
|
58
|
+
puts obj.getCheck(parameters)
|
59
|
+
|
60
|
+
Sirius::Client::Win32::Core::Button
|
@@ -0,0 +1,72 @@
|
|
1
|
+
require 'ButtonService.rb'
|
2
|
+
require 'ButtonServiceMappingRegistry.rb'
|
3
|
+
require 'soap/rpc/driver'
|
4
|
+
|
5
|
+
module Sirius::Client::Win32::Core::Button
|
6
|
+
|
7
|
+
|
8
|
+
class Button < ::SOAP::RPC::Driver DefaultEndpointUrl = "http:localhost:21212/win32/button"
|
9
|
+
Methods = [
|
10
|
+
[ "",
|
11
|
+
"setState",
|
12
|
+
[ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetState"]],
|
13
|
+
[:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetStateResponse"]] ],
|
14
|
+
{ :request_style => :document, :request_use => :literal,
|
15
|
+
:response_style => :document, :response_use => :literal,
|
16
|
+
:faults => {} }
|
17
|
+
],
|
18
|
+
[ "",
|
19
|
+
"setCheck",
|
20
|
+
[ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCheck"]],
|
21
|
+
[:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCheckResponse"]] ],
|
22
|
+
{ :request_style => :document, :request_use => :literal,
|
23
|
+
:response_style => :document, :response_use => :literal,
|
24
|
+
:faults => {} }
|
25
|
+
],
|
26
|
+
[ "",
|
27
|
+
"getState",
|
28
|
+
[ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetState"]],
|
29
|
+
[:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetStateResponse"]] ],
|
30
|
+
{ :request_style => :document, :request_use => :literal,
|
31
|
+
:response_style => :document, :response_use => :literal,
|
32
|
+
:faults => {} }
|
33
|
+
],
|
34
|
+
[ "",
|
35
|
+
"getCheck",
|
36
|
+
[ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCheck"]],
|
37
|
+
[:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCheckResponse"]] ],
|
38
|
+
{ :request_style => :document, :request_use => :literal,
|
39
|
+
:response_style => :document, :response_use => :literal,
|
40
|
+
:faults => {} }
|
41
|
+
]
|
42
|
+
]
|
43
|
+
|
44
|
+
def initialize(endpoint_url = nil) endpoint_url ||= DefaultEndpointUrl
|
45
|
+
super(endpoint_url, nil)
|
46
|
+
self.mapping_registry = ButtonServiceMappingRegistry::EncodedRegistry
|
47
|
+
self.literal_mapping_registry = ButtonServiceMappingRegistry::LiteralRegistry
|
48
|
+
init_methods
|
49
|
+
end
|
50
|
+
private
|
51
|
+
|
52
|
+
def init_methods
|
53
|
+
Methods.each do |definitions|
|
54
|
+
opt = definitions.last
|
55
|
+
if opt[:request_style] == :document
|
56
|
+
add_document_operation(*definitions)
|
57
|
+
else
|
58
|
+
add_rpc_operation(*definitions)
|
59
|
+
qname = definitions[0]
|
60
|
+
name = definitions[2]
|
61
|
+
if qname.name != name and qname.name.capitalize == name.capitalize
|
62
|
+
::SOAP::Mapping.define_singleton_method(self, qname.name) do |*arg|
|
63
|
+
__send__(name, *arg)
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
end
|
@@ -0,0 +1,199 @@
|
|
1
|
+
require 'ButtonService.rb'
|
2
|
+
require 'soap/mapping'
|
3
|
+
|
4
|
+
module Sirius
|
5
|
module Client
|
1
6
|
module Win32
|
2
7
|
module Core
|
3
8
|
module Button
|
9
|
+
module ButtonServiceMappingRegistry EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
|
10
|
+
LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
|
11
|
+
NsControlsClassesWin32ServerSiriusOrg = "http:controls.classes.win32.server.sirius.org/"
|
12
|
+
EncodedRegistry.register(
|
13
|
+
:class => Sirius::Client::Win32::Core::Button::GetState,
|
14
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetState"),
|
15
|
+
:schema_element => [
|
16
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]]
|
17
|
+
]
|
18
|
+
)
|
19
|
+
|
20
|
+
EncodedRegistry.register(
|
21
|
+
:class => Sirius::Client::Win32::Core::Button::GetStateResponse,
|
22
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetStateResponse"),
|
23
|
+
:schema_element => [
|
24
|
+
["v_return", ["SOAP::SOAPInt", XSD::QName.new(nil, "return")]]
|
25
|
+
]
|
26
|
+
)
|
27
|
+
|
28
|
+
EncodedRegistry.register(
|
29
|
+
:class => Sirius::Client::Win32::Core::Button::SetCheck,
|
30
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetCheck"),
|
31
|
+
:schema_element => [
|
32
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]],
|
33
|
+
["arg1", ["SOAP::SOAPInt", XSD::QName.new(nil, "arg1")]]
|
34
|
+
]
|
35
|
+
)
|
36
|
+
|
37
|
+
EncodedRegistry.register(
|
38
|
+
:class => Sirius::Client::Win32::Core::Button::SetCheckResponse,
|
39
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetCheckResponse"),
|
40
|
+
:schema_element => []
|
41
|
+
)
|
42
|
+
|
43
|
+
EncodedRegistry.register(
|
44
|
+
:class => Sirius::Client::Win32::Core::Button::SetState,
|
45
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetState"),
|
46
|
+
:schema_element => [
|
47
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]],
|
48
|
+
["arg1", ["SOAP::SOAPInt", XSD::QName.new(nil, "arg1")]]
|
49
|
+
]
|
50
|
+
)
|
51
|
+
|
52
|
+
EncodedRegistry.register(
|
53
|
+
:class => Sirius::Client::Win32::Core::Button::SetStateResponse,
|
54
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetStateResponse"),
|
55
|
+
:schema_element => []
|
56
|
+
)
|
57
|
+
|
58
|
+
EncodedRegistry.register(
|
59
|
+
:class => Sirius::Client::Win32::Core::Button::GetCheck,
|
60
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetCheck"),
|
61
|
+
:schema_element => [
|
62
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]]
|
63
|
+
]
|
64
|
+
)
|
65
|
+
|
66
|
+
EncodedRegistry.register(
|
67
|
+
:class => Sirius::Client::Win32::Core::Button::GetCheckResponse,
|
68
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetCheckResponse"),
|
69
|
+
:schema_element => [
|
70
|
+
["v_return", ["SOAP::SOAPInt", XSD::QName.new(nil, "return")]]
|
71
|
+
]
|
72
|
+
)
|
73
|
+
|
74
|
+
LiteralRegistry.register(
|
75
|
+
:class => Sirius::Client::Win32::Core::Button::GetState,
|
76
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetState"),
|
77
|
+
:schema_element => [
|
78
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]]
|
79
|
+
]
|
80
|
+
)
|
81
|
+
|
82
|
+
LiteralRegistry.register(
|
83
|
+
:class => Sirius::Client::Win32::Core::Button::GetStateResponse,
|
84
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetStateResponse"),
|
85
|
+
:schema_element => [
|
86
|
+
["v_return", ["SOAP::SOAPInt", XSD::QName.new(nil, "return")]]
|
87
|
+
]
|
88
|
+
)
|
89
|
+
|
90
|
+
LiteralRegistry.register(
|
91
|
+
:class => Sirius::Client::Win32::Core::Button::SetCheck,
|
92
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetCheck"),
|
93
|
+
:schema_element => [
|
94
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]],
|
95
|
+
["arg1", ["SOAP::SOAPInt", XSD::QName.new(nil, "arg1")]]
|
96
|
+
]
|
97
|
+
)
|
98
|
+
|
99
|
+
LiteralRegistry.register(
|
100
|
+
:class => Sirius::Client::Win32::Core::Button::SetCheckResponse,
|
101
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetCheckResponse"),
|
102
|
+
:schema_element => []
|
103
|
+
)
|
104
|
+
|
105
|
+
LiteralRegistry.register(
|
106
|
+
:class => Sirius::Client::Win32::Core::Button::SetState,
|
107
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetState"),
|
108
|
+
:schema_element => [
|
109
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]],
|
110
|
+
["arg1", ["SOAP::SOAPInt", XSD::QName.new(nil, "arg1")]]
|
111
|
+
]
|
112
|
+
)
|
113
|
+
|
114
|
+
LiteralRegistry.register(
|
115
|
+
:class => Sirius::Client::Win32::Core::Button::SetStateResponse,
|
116
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetStateResponse"),
|
117
|
+
:schema_element => []
|
118
|
+
)
|
119
|
+
|
120
|
+
LiteralRegistry.register(
|
121
|
+
:class => Sirius::Client::Win32::Core::Button::GetCheck,
|
122
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetCheck"),
|
123
|
+
:schema_element => [
|
124
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]]
|
125
|
+
]
|
126
|
+
)
|
127
|
+
|
128
|
+
LiteralRegistry.register(
|
129
|
+
:class => Sirius::Client::Win32::Core::Button::GetCheckResponse,
|
130
|
+
:schema_type => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetCheckResponse"),
|
131
|
+
:schema_element => [
|
132
|
+
["v_return", ["SOAP::SOAPInt", XSD::QName.new(nil, "return")]]
|
133
|
+
]
|
134
|
+
)
|
135
|
+
|
136
|
+
LiteralRegistry.register(
|
137
|
+
:class => Sirius::Client::Win32::Core::Button::GetCheck,
|
138
|
+
:schema_name => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetCheck"),
|
139
|
+
:schema_element => [
|
140
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]]
|
141
|
+
]
|
142
|
+
)
|
143
|
+
|
144
|
+
LiteralRegistry.register(
|
145
|
+
:class => Sirius::Client::Win32::Core::Button::GetCheckResponse,
|
146
|
+
:schema_name => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetCheckResponse"),
|
147
|
+
:schema_element => [
|
148
|
+
["v_return", ["SOAP::SOAPInt", XSD::QName.new(nil, "return")]]
|
149
|
+
]
|
150
|
+
)
|
151
|
+
|
152
|
+
LiteralRegistry.register(
|
153
|
+
:class => Sirius::Client::Win32::Core::Button::GetState,
|
154
|
+
:schema_name => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetState"),
|
155
|
+
:schema_element => [
|
156
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]]
|
157
|
+
]
|
158
|
+
)
|
159
|
+
|
160
|
+
LiteralRegistry.register(
|
161
|
+
:class => Sirius::Client::Win32::Core::Button::GetStateResponse,
|
162
|
+
:schema_name => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "GetStateResponse"),
|
163
|
+
:schema_element => [
|
164
|
+
["v_return", ["SOAP::SOAPInt", XSD::QName.new(nil, "return")]]
|
165
|
+
]
|
166
|
+
)
|
167
|
+
|
168
|
+
LiteralRegistry.register(
|
169
|
+
:class => Sirius::Client::Win32::Core::Button::SetCheck,
|
170
|
+
:schema_name => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetCheck"),
|
171
|
+
:schema_element => [
|
172
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]],
|
173
|
+
["arg1", ["SOAP::SOAPInt", XSD::QName.new(nil, "arg1")]]
|
174
|
+
]
|
175
|
+
)
|
176
|
+
|
177
|
+
LiteralRegistry.register(
|
178
|
+
:class => Sirius::Client::Win32::Core::Button::SetCheckResponse,
|
179
|
+
:schema_name => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetCheckResponse"),
|
180
|
+
:schema_element => []
|
181
|
+
)
|
182
|
+
|
183
|
+
LiteralRegistry.register(
|
184
|
+
:class => Sirius::Client::Win32::Core::Button::SetState,
|
185
|
+
:schema_name => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetState"),
|
186
|
+
:schema_element => [
|
187
|
+
["arg0", ["SOAP::SOAPLong", XSD::QName.new(nil, "arg0")]],
|
188
|
+
["arg1", ["SOAP::SOAPInt", XSD::QName.new(nil, "arg1")]]
|
189
|
+
]
|
190
|
+
)
|
191
|
+
|
192
|
+
LiteralRegistry.register(
|
193
|
+
:class => Sirius::Client::Win32::Core::Button::SetStateResponse,
|
194
|
+
:schema_name => XSD::QName.new(NsControlsClassesWin32ServerSiriusOrg, "SetStateResponse"),
|
195
|
+
:schema_element => []
|
196
|
+
)
|
197
|
+
end
|
198
|
+
|
199
|
+
end
|
200
|
+
end
|
201
|
+
end
|
202
|
+
end
|
203
|
+
end
|
@@ -0,0 +1,471 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
module Sirius; module Client; module Win32; module Core; module Combobox
|
4
|
+
|
5
|
+
# {http:controls.classes.win32.server.sirius.org/}SetEditSel
|
6
|
+
# arg0 - SOAP::SOAPLong
|
7
|
+
# arg1 - SOAP::SOAPInt
|
8
|
+
# arg2 - SOAP::SOAPInt
|
9
|
class SetEditSel
|
10
|
+
attr_accessor :arg0
|
11
|
+
attr_accessor :arg1
|
12
|
+
attr_accessor :arg2
|
13
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
14
|
+
@arg1 = arg1
|
15
|
+
@arg2 = arg2
|
16
|
+
end
|
17
|
+
end
|
18
|
+
# {http:controls.classes.win32.server.sirius.org/}SetEditSelResponse
|
19
|
+
# m_return - SOAP::SOAPInt
|
20
|
+
class SetEditSelResponse
|
1
21
|
def m_return
|
22
|
+
@v_return
|
23
|
+
end
|
24
|
+
|
25
|
+
def m_return=(value) @v_return = value
|
26
|
+
end
|
27
|
+
|
28
|
+
def initialize(v_return = nil) @v_return = v_return
|
29
|
+
end
|
30
|
+
end
|
31
|
+
# {http:controls.classes.win32.server.sirius.org/}FindStringExact
|
32
|
+
# arg0 - SOAP::SOAPLong
|
33
|
+
# arg1 - SOAP::SOAPInt
|
34
|
+
# arg2 - SOAP::SOAPString
|
35
|
+
class FindStringExact
|
36
|
+
attr_accessor :arg0
|
37
|
+
attr_accessor :arg1
|
38
|
+
attr_accessor :arg2
|
39
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
40
|
+
@arg1 = arg1
|
41
|
+
@arg2 = arg2
|
42
|
+
end
|
43
|
+
end
|
44
|
+
# {http:controls.classes.win32.server.sirius.org/}FindStringExactResponse
|
45
|
+
# m_return - SOAP::SOAPInt
|
46
|
+
class FindStringExactResponse
|
2
47
|
def m_return
|
48
|
+
@v_return
|
49
|
+
end
|
50
|
+
|
51
|
+
def m_return=(value) @v_return = value
|
52
|
+
end
|
53
|
+
|
54
|
+
def initialize(v_return = nil) @v_return = v_return
|
55
|
+
end
|
56
|
+
end
|
57
|
+
# {http:controls.classes.win32.server.sirius.org/}GetExtendedUI
|
58
|
+
# arg0 - SOAP::SOAPLong
|
59
|
+
class GetExtendedUI
|
60
|
+
attr_accessor :arg0
|
61
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
62
|
+
end
|
63
|
+
end
|
64
|
+
# {http:controls.classes.win32.server.sirius.org/}GetExtendedUIResponse
|
65
|
+
# m_return - SOAP::SOAPInt
|
66
|
+
class GetExtendedUIResponse
|
3
67
|
def m_return
|
68
|
+
@v_return
|
69
|
+
end
|
70
|
+
|
71
|
+
def m_return=(value) @v_return = value
|
72
|
+
end
|
73
|
+
|
74
|
+
def initialize(v_return = nil) @v_return = v_return
|
75
|
+
end
|
76
|
+
end
|
77
|
+
# {http:controls.classes.win32.server.sirius.org/}ResetContent
|
78
|
+
# arg0 - SOAP::SOAPLong
|
79
|
+
class ResetContent
|
80
|
+
attr_accessor :arg0
|
81
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
82
|
+
end
|
83
|
+
end
|
84
|
+
# {http:controls.classes.win32.server.sirius.org/}ResetContentResponse
|
85
|
+
# m_return - SOAP::SOAPInt
|
86
|
+
class ResetContentResponse
|
4
87
|
def m_return
|
88
|
+
@v_return
|
89
|
+
end
|
90
|
+
|
91
|
+
def m_return=(value) @v_return = value
|
92
|
+
end
|
93
|
+
|
94
|
+
def initialize(v_return = nil) @v_return = v_return
|
95
|
+
end
|
96
|
+
end
|
97
|
+
# {http:controls.classes.win32.server.sirius.org/}GetTextLength
|
98
|
+
# arg0 - SOAP::SOAPLong
|
99
|
+
class GetTextLength
|
100
|
+
attr_accessor :arg0
|
101
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
102
|
+
end
|
103
|
+
end
|
104
|
+
# {http:controls.classes.win32.server.sirius.org/}GetTextLengthResponse
|
105
|
+
# m_return - SOAP::SOAPInt
|
106
|
+
class GetTextLengthResponse
|
5
107
|
def m_return
|
108
|
+
@v_return
|
109
|
+
end
|
110
|
+
|
111
|
+
def m_return=(value) @v_return = value
|
112
|
+
end
|
113
|
+
|
114
|
+
def initialize(v_return = nil) @v_return = v_return
|
115
|
+
end
|
116
|
+
end
|
117
|
+
# {http:controls.classes.win32.server.sirius.org/}GetDroppedState
|
118
|
+
# arg0 - SOAP::SOAPLong
|
119
|
+
class GetDroppedState
|
120
|
+
attr_accessor :arg0
|
121
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
122
|
+
end
|
123
|
+
end
|
124
|
+
# {http:controls.classes.win32.server.sirius.org/}GetDroppedStateResponse
|
125
|
+
# m_return - SOAP::SOAPInt
|
126
|
+
class GetDroppedStateResponse
|
6
127
|
def m_return
|
128
|
+
@v_return
|
129
|
+
end
|
130
|
+
|
131
|
+
def m_return=(value) @v_return = value
|
132
|
+
end
|
133
|
+
|
134
|
+
def initialize(v_return = nil) @v_return = v_return
|
135
|
+
end
|
136
|
+
end
|
137
|
+
# {http:controls.classes.win32.server.sirius.org/}SetItemHeight
|
138
|
+
# arg0 - SOAP::SOAPLong
|
139
|
+
# arg1 - SOAP::SOAPInt
|
140
|
+
# arg2 - SOAP::SOAPInt
|
141
|
+
class SetItemHeight
|
142
|
+
attr_accessor :arg0
|
143
|
+
attr_accessor :arg1
|
144
|
+
attr_accessor :arg2
|
145
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
146
|
+
@arg1 = arg1
|
147
|
+
@arg2 = arg2
|
148
|
+
end
|
149
|
+
end
|
150
|
+
# {http:controls.classes.win32.server.sirius.org/}SetItemHeightResponse
|
151
|
+
# m_return - SOAP::SOAPInt
|
152
|
+
class SetItemHeightResponse
|
7
153
|
def m_return
|
154
|
+
@v_return
|
155
|
+
end
|
156
|
+
|
157
|
+
def m_return=(value) @v_return = value
|
158
|
+
end
|
159
|
+
|
160
|
+
def initialize(v_return = nil) @v_return = v_return
|
161
|
+
end
|
162
|
+
end
|
163
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCount
|
164
|
+
# arg0 - SOAP::SOAPLong
|
165
|
+
class GetCount
|
166
|
+
attr_accessor :arg0
|
167
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
168
|
+
end
|
169
|
+
end
|
170
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCountResponse
|
171
|
+
# m_return - SOAP::SOAPInt
|
172
|
+
class GetCountResponse
|
8
173
|
def m_return
|
174
|
+
@v_return
|
175
|
+
end
|
176
|
+
|
177
|
+
def m_return=(value) @v_return = value
|
178
|
+
end
|
179
|
+
|
180
|
+
def initialize(v_return = nil) @v_return = v_return
|
181
|
+
end
|
182
|
+
end
|
183
|
+
# {http:controls.classes.win32.server.sirius.org/}FindItemData
|
184
|
+
# arg0 - SOAP::SOAPLong
|
185
|
+
# arg1 - SOAP::SOAPInt
|
186
|
+
# arg2 - Sirius::Client::Win32::Core::Combobox::Lparam
|
187
|
+
class FindItemData
|
188
|
+
attr_accessor :arg0
|
189
|
+
attr_accessor :arg1
|
190
|
+
attr_accessor :arg2
|
191
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
192
|
+
@arg1 = arg1
|
193
|
+
@arg2 = arg2
|
194
|
+
end
|
195
|
+
end
|
196
|
+
# {http:controls.classes.win32.server.sirius.org/}number
|
197
|
+
# abstract
|
198
|
+
class Number
|
9
199
|
def initialize
|
200
|
+
end
|
201
|
+
end
|
202
|
+
# {http:controls.classes.win32.server.sirius.org/}integerType
|
203
|
+
# abstract
|
204
|
+
class IntegerType < Number
|
10
205
|
def initialize
|
206
|
+
end
|
207
|
+
end
|
208
|
+
# {http:controls.classes.win32.server.sirius.org/}longPTR
|
209
|
+
class LongPTR < IntegerType
|
11
210
|
def initialize
|
211
|
+
end
|
212
|
+
end
|
213
|
+
# {http:controls.classes.win32.server.sirius.org/}lparam
|
214
|
+
class Lparam < LongPTR
|
12
215
|
def initialize
|
216
|
+
end
|
217
|
+
end
|
218
|
+
# {http:controls.classes.win32.server.sirius.org/}FindItemDataResponse
|
219
|
+
# m_return - SOAP::SOAPInt
|
220
|
+
class FindItemDataResponse
|
13
221
|
def m_return
|
222
|
+
@v_return
|
223
|
+
end
|
224
|
+
|
225
|
+
def m_return=(value) @v_return = value
|
226
|
+
end
|
227
|
+
|
228
|
+
def initialize(v_return = nil) @v_return = v_return
|
229
|
+
end
|
230
|
+
end
|
231
|
+
# {http:controls.classes.win32.server.sirius.org/}GetEditSel
|
232
|
+
# arg0 - SOAP::SOAPLong
|
233
|
+
class GetEditSel
|
234
|
+
attr_accessor :arg0
|
235
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
236
|
+
end
|
237
|
+
end
|
238
|
+
# {http:controls.classes.win32.server.sirius.org/}GetEditSelResponse
|
239
|
+
# m_return - SOAP::SOAPInt
|
240
|
+
class GetEditSelResponse
|
14
241
|
def m_return
|
242
|
+
@v_return
|
243
|
+
end
|
244
|
+
|
245
|
+
def m_return=(value) @v_return = value
|
246
|
+
end
|
247
|
+
|
248
|
+
def initialize(v_return = nil) @v_return = v_return
|
249
|
+
end
|
250
|
+
end
|
251
|
+
# {http:controls.classes.win32.server.sirius.org/}SelectString
|
252
|
+
# arg0 - SOAP::SOAPLong
|
253
|
+
# arg1 - SOAP::SOAPInt
|
254
|
+
# arg2 - SOAP::SOAPString
|
255
|
+
class SelectString
|
256
|
+
attr_accessor :arg0
|
257
|
+
attr_accessor :arg1
|
258
|
+
attr_accessor :arg2
|
259
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
260
|
+
@arg1 = arg1
|
261
|
+
@arg2 = arg2
|
262
|
+
end
|
263
|
+
end
|
264
|
+
# {http:controls.classes.win32.server.sirius.org/}SelectStringResponse
|
265
|
+
# m_return - SOAP::SOAPInt
|
266
|
+
class SelectStringResponse
|
15
267
|
def m_return
|
268
|
+
@v_return
|
269
|
+
end
|
270
|
+
|
271
|
+
def m_return=(value) @v_return = value
|
272
|
+
end
|
273
|
+
|
274
|
+
def initialize(v_return = nil) @v_return = v_return
|
275
|
+
end
|
276
|
+
end
|
277
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemHeight
|
278
|
+
# arg0 - SOAP::SOAPLong
|
279
|
+
class GetItemHeight
|
280
|
+
attr_accessor :arg0
|
281
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
282
|
+
end
|
283
|
+
end
|
284
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemHeightResponse
|
285
|
+
# m_return - SOAP::SOAPInt
|
286
|
+
class GetItemHeightResponse
|
16
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:controls.classes.win32.server.sirius.org/}GetText
|
298
|
+
# arg0 - SOAP::SOAPLong
|
299
|
+
class GetText
|
300
|
+
attr_accessor :arg0
|
301
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
302
|
+
end
|
303
|
+
end
|
304
|
+
# {http:controls.classes.win32.server.sirius.org/}GetTextResponse
|
305
|
+
# m_return - SOAP::SOAPString
|
306
|
+
class GetTextResponse
|
17
307
|
def m_return
|
308
|
+
@v_return
|
309
|
+
end
|
310
|
+
|
311
|
+
def m_return=(value) @v_return = value
|
312
|
+
end
|
313
|
+
|
314
|
+
def initialize(v_return = nil) @v_return = v_return
|
315
|
+
end
|
316
|
+
end
|
317
|
+
# {http:controls.classes.win32.server.sirius.org/}FindString
|
318
|
+
# arg0 - SOAP::SOAPLong
|
319
|
+
# arg1 - SOAP::SOAPInt
|
320
|
+
# arg2 - SOAP::SOAPString
|
321
|
+
class FindString
|
322
|
+
attr_accessor :arg0
|
323
|
+
attr_accessor :arg1
|
324
|
+
attr_accessor :arg2
|
325
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
326
|
+
@arg1 = arg1
|
327
|
+
@arg2 = arg2
|
328
|
+
end
|
329
|
+
end
|
330
|
+
# {http:controls.classes.win32.server.sirius.org/}FindStringResponse
|
331
|
+
# m_return - SOAP::SOAPInt
|
332
|
+
class FindStringResponse
|
18
333
|
def m_return
|
334
|
+
@v_return
|
335
|
+
end
|
336
|
+
|
337
|
+
def m_return=(value) @v_return = value
|
338
|
+
end
|
339
|
+
|
340
|
+
def initialize(v_return = nil) @v_return = v_return
|
341
|
+
end
|
342
|
+
end
|
343
|
+
# {http:controls.classes.win32.server.sirius.org/}ShowDropdown
|
344
|
+
# arg0 - SOAP::SOAPLong
|
345
|
+
# arg1 - SOAP::SOAPBoolean
|
346
|
+
class ShowDropdown
|
347
|
+
attr_accessor :arg0
|
348
|
+
attr_accessor :arg1
|
349
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
350
|
+
@arg1 = arg1
|
351
|
+
end
|
352
|
+
end
|
353
|
+
# {http:controls.classes.win32.server.sirius.org/}ShowDropdownResponse
|
354
|
+
# m_return - SOAP::SOAPInt
|
355
|
+
class ShowDropdownResponse
|
19
356
|
def m_return
|
357
|
+
@v_return
|
358
|
+
end
|
359
|
+
|
360
|
+
def m_return=(value) @v_return = value
|
361
|
+
end
|
362
|
+
|
363
|
+
def initialize(v_return = nil) @v_return = v_return
|
364
|
+
end
|
365
|
+
end
|
366
|
+
# {http:controls.classes.win32.server.sirius.org/}SetText
|
367
|
+
# arg0 - SOAP::SOAPLong
|
368
|
+
# arg1 - SOAP::SOAPString
|
369
|
+
class SetText
|
370
|
+
attr_accessor :arg0
|
371
|
+
attr_accessor :arg1
|
372
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
373
|
+
@arg1 = arg1
|
374
|
+
end
|
375
|
+
end
|
376
|
+
# {http:controls.classes.win32.server.sirius.org/}SetTextResponse
|
377
|
+
class SetTextResponse
|
20
378
|
def initialize
|
379
|
+
end
|
380
|
+
end
|
381
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCurSel
|
382
|
+
# arg0 - SOAP::SOAPLong
|
383
|
+
class GetCurSel
|
384
|
+
attr_accessor :arg0
|
385
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
386
|
+
end
|
387
|
+
end
|
388
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
|
389
|
+
# m_return - SOAP::SOAPInt
|
390
|
+
class GetCurSelResponse
|
21
391
|
def m_return
|
392
|
+
@v_return
|
393
|
+
end
|
394
|
+
|
395
|
+
def m_return=(value) @v_return = value
|
396
|
+
end
|
397
|
+
|
398
|
+
def initialize(v_return = nil) @v_return = v_return
|
399
|
+
end
|
400
|
+
end
|
401
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemData
|
402
|
+
# arg0 - SOAP::SOAPLong
|
403
|
+
# arg1 - SOAP::SOAPInt
|
404
|
+
class GetItemData
|
405
|
+
attr_accessor :arg0
|
406
|
+
attr_accessor :arg1
|
407
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
408
|
+
@arg1 = arg1
|
409
|
+
end
|
410
|
+
end
|
411
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemDataResponse
|
412
|
+
# m_return - SOAP::SOAPInt
|
413
|
+
class GetItemDataResponse
|
22
414
|
def m_return
|
415
|
+
@v_return
|
416
|
+
end
|
417
|
+
|
418
|
+
def m_return=(value) @v_return = value
|
419
|
+
end
|
420
|
+
|
421
|
+
def initialize(v_return = nil) @v_return = v_return
|
422
|
+
end
|
423
|
+
end
|
424
|
+
# {http:controls.classes.win32.server.sirius.org/}GetLBText
|
425
|
+
# arg0 - SOAP::SOAPLong
|
426
|
+
# arg1 - SOAP::SOAPInt
|
427
|
+
# arg2 - SOAP::SOAPString
|
428
|
+
class GetLBText
|
429
|
+
attr_accessor :arg0
|
430
|
+
attr_accessor :arg1
|
431
|
+
attr_accessor :arg2
|
432
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
|
433
|
+
@arg1 = arg1
|
434
|
+
@arg2 = arg2
|
435
|
+
end
|
436
|
+
end
|
437
|
+
# {http:controls.classes.win32.server.sirius.org/}GetLBTextResponse
|
438
|
+
# m_return - SOAP::SOAPInt
|
439
|
+
class GetLBTextResponse
|
23
440
|
def m_return
|
441
|
+
@v_return
|
442
|
+
end
|
443
|
+
|
444
|
+
def m_return=(value) @v_return = value
|
445
|
+
end
|
446
|
+
|
447
|
+
def initialize(v_return = nil) @v_return = v_return
|
448
|
+
end
|
449
|
+
end
|
450
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCurSel
|
451
|
+
# arg0 - SOAP::SOAPLong
|
452
|
+
# arg1 - SOAP::SOAPInt
|
453
|
+
class SetCurSel
|
454
|
+
attr_accessor :arg0
|
455
|
+
attr_accessor :arg1
|
456
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
457
|
+
@arg1 = arg1
|
458
|
+
end
|
459
|
+
end
|
460
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
|
461
|
+
# m_return - SOAP::SOAPInt
|
462
|
+
class SetCurSelResponse
|
24
463
|
def m_return
|
464
|
+
@v_return
|
465
|
+
end
|
466
|
+
|
467
|
+
def m_return=(value) @v_return = value
|
468
|
+
end
|
469
|
+
|
470
|
+
def initialize(v_return = nil) @v_return = v_return
|
471
|
+
end
|
472
|
+
end
|
473
|
+
# {http:controls.classes.win32.server.sirius.org/}GetLBTextLen
|
474
|
+
# arg0 - SOAP::SOAPLong
|
475
|
+
# arg1 - SOAP::SOAPInt
|
476
|
+
class GetLBTextLen
|
477
|
+
attr_accessor :arg0
|
478
|
+
attr_accessor :arg1
|
479
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
480
|
+
@arg1 = arg1
|
481
|
+
end
|
482
|
+
end
|
483
|
+
# {http:controls.classes.win32.server.sirius.org/}GetLBTextLenResponse
|
484
|
+
# m_return - SOAP::SOAPInt
|
485
|
+
class GetLBTextLenResponse
|
25
486
|
def m_return
|
487
|
+
@v_return
|
488
|
+
end
|
489
|
+
|
490
|
+
def m_return=(value) @v_return = value
|
491
|
+
end
|
492
|
+
|
493
|
+
def initialize(v_return = nil) @v_return = v_return
|
494
|
+
end
|
495
|
+
end
|
496
|
+
|
497
|
+
end; end; end; end; end
|