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