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,96 +1,97 @@
|
|
1
|
-
require 'MenuService.rb'
|
2
|
-
require 'MenuServiceMappingRegistry.rb'
|
1
|
+
require 'sirius/win32/core/menu/MenuService.rb'
|
2
|
+
require 'sirius/win32/core/menu/MenuServiceMappingRegistry.rb'
|
3
3
|
require 'soap/rpc/driver'
|
4
4
|
|
5
5
|
module Sirius::Client::Win32::Core::Menu
|
6
6
|
|
7
7
|
|
8
|
-
class Menu < ::SOAP::RPC::Driver
|
8
|
+
class Menu < ::SOAP::RPC::Driver
|
9
|
+
DefaultEndpointUrl = "http:localhost:21212/win32/menu"
|
9
10
|
Methods = [
|
10
11
|
[ "",
|
11
12
|
"isMenu",
|
12
|
-
[ [
|
13
|
-
[
|
13
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "IsMenu"]],
|
14
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "IsMenuResponse"]] ],
|
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
|
"getMenuInfo",
|
20
|
-
[ [
|
21
|
-
[
|
21
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuInfo"]],
|
22
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuInfoResponse"]] ],
|
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
|
"getMenuState",
|
28
|
-
[ [
|
29
|
-
[
|
29
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuState"]],
|
30
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuStateResponse"]] ],
|
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
|
"getSubMenu",
|
36
|
-
[ [
|
37
|
-
[
|
37
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetSubMenu"]],
|
38
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetSubMenuResponse"]] ],
|
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
|
"getMenuItemRect",
|
44
|
-
[ [
|
45
|
-
[
|
45
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuItemRect"]],
|
46
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuItemRectResponse"]] ],
|
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
|
"getMenuDefaultItem",
|
52
|
-
[ [
|
53
|
-
[
|
53
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuDefaultItem"]],
|
54
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuDefaultItemResponse"]] ],
|
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
|
"getMenuItemCount",
|
60
|
-
[ [
|
61
|
-
[
|
61
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuItemCount"]],
|
62
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuItemCountResponse"]] ],
|
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
|
"getMenuItemID",
|
68
|
-
[ [
|
69
|
-
[
|
69
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuItemID"]],
|
70
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuItemIDResponse"]] ],
|
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
|
"getMenuItemInfo",
|
76
|
-
[ [
|
77
|
-
[
|
77
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuItemInfo"]],
|
78
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuItemInfoResponse"]] ],
|
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
|
"getMenuString",
|
84
|
-
[ [
|
85
|
-
[
|
85
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuString"]],
|
86
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "GetMenuStringResponse"]] ],
|
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
|
"pickItem",
|
92
|
-
[ [
|
93
|
-
[
|
93
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "pickItem"]],
|
94
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://classes.win32.server.sirius.org/", "pickItemResponse"]] ],
|
94
95
|
{ :request_style => :document, :request_use => :literal,
|
95
96
|
:response_style => :document, :response_use => :literal,
|
96
97
|
:faults => {} }
|
@@ -3,103 +3,152 @@ require 'xsd/qname'
|
|
3
3
|
module Sirius; module Client; module Win32; module Core; module Tabcontrol
|
4
4
|
|
5
5
|
# {http:controls.classes.win32.server.sirius.org/}GetCurFocus
|
6
|
-
# arg0 - SOAP::SOAPLong
|
7
6
|
class GetCurFocus
|
7
|
+
# arg0 - SOAP::SOAPLong
|
8
|
+
class GetCurFocus
|
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:controls.classes.win32.server.sirius.org/}GetCurFocusResponse
|
13
|
-
# m_return - SOAP::SOAPInt
|
14
|
-
class GetCurFocusResponse
|
15
17
|
def m_return
|
16
|
-
|
18
|
+
# m_return - SOAP::SOAPInt
|
19
|
+
|
20
|
+
class GetCurFocusResponse
|
21
|
+
def m_return
|
22
|
+
@v_return
|
23
|
+
|
17
24
|
end
|
18
25
|
|
19
|
-
def m_return=(value) @v_return = value
|
26
|
+
def m_return=(value) @v_return = value
|
27
|
+
|
28
|
+
end
|
29
|
+
|
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:controls.classes.win32.server.sirius.org/}GetRowCount
|
26
|
-
# arg0 - SOAP::SOAPLong
|
27
|
-
|
36
|
+
# arg0 - SOAP::SOAPLong
|
37
|
+
|
38
|
+
class GetRowCount
|
39
|
+
|
28
40
|
attr_accessor :arg0
|
29
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
30
|
-
|
41
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
42
|
+
|
43
|
+
end
|
44
|
+
|
31
45
|
end
|
32
46
|
# {http:controls.classes.win32.server.sirius.org/}GetRowCountResponse
|
33
|
-
# m_return - SOAP::SOAPInt
|
34
|
-
class GetRowCountResponse
|
35
47
|
def m_return
|
36
|
-
|
48
|
+
# m_return - SOAP::SOAPInt
|
49
|
+
|
50
|
+
class GetRowCountResponse
|
51
|
+
def m_return
|
52
|
+
@v_return
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
def m_return=(value) @v_return = value
|
57
|
+
|
37
58
|
end
|
38
59
|
|
39
|
-
def
|
60
|
+
def initialize(v_return = nil) @v_return = v_return
|
61
|
+
|
40
62
|
end
|
41
63
|
|
42
|
-
def initialize(v_return = nil) @v_return = v_return
|
43
|
-
end
|
44
64
|
end
|
45
65
|
# {http:controls.classes.win32.server.sirius.org/}HitTest
|
46
|
-
# arg0 - SOAP::SOAPLong
|
47
|
-
|
66
|
+
# arg0 - SOAP::SOAPLong
|
67
|
+
|
68
|
+
class HitTest
|
69
|
+
|
48
70
|
attr_accessor :arg0
|
49
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
50
|
-
|
71
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
72
|
+
|
73
|
+
end
|
74
|
+
|
51
75
|
end
|
52
76
|
# {http:controls.classes.win32.server.sirius.org/}HitTestResponse
|
53
|
-
# m_return - Sirius::Client::Win32::Core::Tabcontrol::TcHITTESTINFO
|
54
|
-
class HitTestResponse
|
55
77
|
def m_return
|
56
|
-
|
78
|
+
# m_return - Sirius::Client::Win32::Core::Tabcontrol::TcHITTESTINFO
|
79
|
+
|
80
|
+
class HitTestResponse
|
81
|
+
def m_return
|
82
|
+
@v_return
|
83
|
+
|
84
|
+
end
|
85
|
+
|
86
|
+
def m_return=(value) @v_return = value
|
87
|
+
|
57
88
|
end
|
58
89
|
|
59
|
-
def
|
90
|
+
def initialize(v_return = nil) @v_return = v_return
|
91
|
+
|
60
92
|
end
|
61
93
|
|
62
|
-
def initialize(v_return = nil) @v_return = v_return
|
63
|
-
end
|
64
94
|
end
|
65
95
|
# {http:controls.classes.win32.server.sirius.org/}structure
|
66
96
|
# abstract
|
67
97
|
# autoRead - SOAP::SOAPBoolean
|
68
|
-
# autoWrite - SOAP::SOAPBoolean
|
69
|
-
|
70
|
-
|
98
|
+
# autoWrite - SOAP::SOAPBoolean
|
99
|
+
|
100
|
+
class Structure
|
101
|
+
|
102
|
+
attr_accessor :autoRead
|
103
|
+
|
71
104
|
attr_accessor :autoWrite
|
72
105
|
def initialize(autoRead = nil, autoWrite = nil) @autoRead = autoRead
|
73
|
-
@autoWrite = autoWrite
|
74
|
-
|
106
|
+
@autoWrite = autoWrite
|
107
|
+
|
108
|
+
end
|
109
|
+
|
75
110
|
end
|
76
111
|
# {http:controls.classes.win32.server.sirius.org/}tcHITTESTINFO
|
77
112
|
# autoRead - SOAP::SOAPBoolean
|
78
113
|
# autoWrite - SOAP::SOAPBoolean
|
79
114
|
# pt - Sirius::Client::Win32::Core::Tabcontrol::Point
|
80
|
-
# flags - SOAP::SOAPInt
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
attr_accessor :
|
115
|
+
# flags - SOAP::SOAPInt
|
116
|
+
|
117
|
+
class TcHITTESTINFO < Structure
|
118
|
+
|
119
|
+
attr_accessor :autoRead
|
120
|
+
|
121
|
+
attr_accessor :autoWrite
|
122
|
+
|
123
|
+
attr_accessor :pt
|
124
|
+
|
85
125
|
attr_accessor :flags
|
86
126
|
def initialize(autoRead = nil, autoWrite = nil, pt = nil, flags = nil) @autoRead = autoRead
|
87
127
|
@autoWrite = autoWrite
|
88
128
|
@pt = pt
|
89
|
-
@flags = flags
|
90
|
-
|
129
|
+
@flags = flags
|
130
|
+
|
131
|
+
end
|
132
|
+
|
91
133
|
end
|
92
134
|
# {http:controls.classes.win32.server.sirius.org/}point
|
93
135
|
# autoRead - SOAP::SOAPBoolean
|
94
136
|
# autoWrite - SOAP::SOAPBoolean
|
95
137
|
# x - SOAP::SOAPInt
|
96
|
-
# y - SOAP::SOAPInt
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
attr_accessor :
|
138
|
+
# y - SOAP::SOAPInt
|
139
|
+
|
140
|
+
class Point < Structure
|
141
|
+
|
142
|
+
attr_accessor :autoRead
|
143
|
+
|
144
|
+
attr_accessor :autoWrite
|
145
|
+
|
146
|
+
attr_accessor :x
|
147
|
+
|
101
148
|
attr_accessor :y
|
102
149
|
def initialize(autoRead = nil, autoWrite = nil, x = nil, y = nil) @autoRead = autoRead
|
103
150
|
@autoWrite = autoWrite
|
104
151
|
@x = x
|
105
|
-
@y = y
|
106
|
-
|
152
|
+
@y = y
|
153
|
+
|
154
|
+
end
|
155
|
+
|
107
156
|
end
|
108
157
|
# {http:controls.classes.win32.server.sirius.org/}rect
|
109
158
|
# autoRead - SOAP::SOAPBoolean
|
@@ -107,21 +156,30 @@ module Sirius; module Client; module Win32; module Core; module Tabcontrol
|
|
107
156
|
# left - SOAP::SOAPInt
|
108
157
|
# top - SOAP::SOAPInt
|
109
158
|
# right - SOAP::SOAPInt
|
110
|
-
# bottom - SOAP::SOAPInt
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
attr_accessor :
|
115
|
-
|
116
|
-
attr_accessor :
|
159
|
+
# bottom - SOAP::SOAPInt
|
160
|
+
|
161
|
+
class Rect < Structure
|
162
|
+
|
163
|
+
attr_accessor :autoRead
|
164
|
+
|
165
|
+
attr_accessor :autoWrite
|
166
|
+
|
167
|
+
attr_accessor :left
|
168
|
+
|
169
|
+
attr_accessor :top
|
170
|
+
|
171
|
+
attr_accessor :right
|
172
|
+
|
117
173
|
attr_accessor :bottom
|
118
174
|
def initialize(autoRead = nil, autoWrite = nil, left = nil, top = nil, right = nil, bottom = nil) @autoRead = autoRead
|
119
175
|
@autoWrite = autoWrite
|
120
176
|
@left = left
|
121
177
|
@top = top
|
122
178
|
@right = right
|
123
|
-
@bottom = bottom
|
124
|
-
|
179
|
+
@bottom = bottom
|
180
|
+
|
181
|
+
end
|
182
|
+
|
125
183
|
end
|
126
184
|
# {http:controls.classes.win32.server.sirius.org/}tcITEM
|
127
185
|
# autoRead - SOAP::SOAPBoolean
|
@@ -132,16 +190,26 @@ module Sirius; module Client; module Win32; module Core; module Tabcontrol
|
|
132
190
|
# pszText - SOAP::SOAPString
|
133
191
|
# cchTextMax - SOAP::SOAPInt
|
134
192
|
# iImage - SOAP::SOAPInt
|
135
|
-
# lParam - Sirius::Client::Win32::Core::Tabcontrol::Lparam
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
attr_accessor :
|
140
|
-
|
141
|
-
attr_accessor :
|
142
|
-
|
143
|
-
attr_accessor :
|
144
|
-
|
193
|
+
# lParam - Sirius::Client::Win32::Core::Tabcontrol::Lparam
|
194
|
+
|
195
|
+
class TcITEM < Structure
|
196
|
+
|
197
|
+
attr_accessor :autoRead
|
198
|
+
|
199
|
+
attr_accessor :autoWrite
|
200
|
+
|
201
|
+
attr_accessor :mask
|
202
|
+
|
203
|
+
attr_accessor :dwState
|
204
|
+
|
205
|
+
attr_accessor :dwStateMask
|
206
|
+
|
207
|
+
attr_accessor :pszText
|
208
|
+
|
209
|
+
attr_accessor :cchTextMax
|
210
|
+
|
211
|
+
attr_accessor :iImage
|
212
|
+
|
145
213
|
attr_accessor :lParam
|
146
214
|
def initialize(autoRead = nil, autoWrite = nil, mask = nil, dwState = nil, dwStateMask = nil, pszText = nil, cchTextMax = nil, iImage = nil, lParam = nil) @autoRead = autoRead
|
147
215
|
@autoWrite = autoWrite
|
@@ -151,136 +219,214 @@ module Sirius; module Client; module Win32; module Core; module Tabcontrol
|
|
151
219
|
@pszText = pszText
|
152
220
|
@cchTextMax = cchTextMax
|
153
221
|
@iImage = iImage
|
154
|
-
@lParam = lParam
|
155
|
-
|
222
|
+
@lParam = lParam
|
223
|
+
|
224
|
+
end
|
225
|
+
|
156
226
|
end
|
157
227
|
# {http:controls.classes.win32.server.sirius.org/}GetItemCount
|
158
|
-
# arg0 - SOAP::SOAPLong
|
159
|
-
|
228
|
+
# arg0 - SOAP::SOAPLong
|
229
|
+
|
230
|
+
class GetItemCount
|
231
|
+
|
160
232
|
attr_accessor :arg0
|
161
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
162
|
-
|
233
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
234
|
+
|
235
|
+
end
|
236
|
+
|
163
237
|
end
|
164
238
|
# {http:controls.classes.win32.server.sirius.org/}GetItemCountResponse
|
165
|
-
# m_return - SOAP::SOAPInt
|
166
|
-
class GetItemCountResponse
|
167
239
|
def m_return
|
168
|
-
|
240
|
+
# m_return - SOAP::SOAPInt
|
241
|
+
|
242
|
+
class GetItemCountResponse
|
243
|
+
def m_return
|
244
|
+
@v_return
|
245
|
+
|
169
246
|
end
|
170
247
|
|
171
|
-
def m_return=(value) @v_return = value
|
248
|
+
def m_return=(value) @v_return = value
|
249
|
+
|
250
|
+
end
|
251
|
+
|
252
|
+
def initialize(v_return = nil) @v_return = v_return
|
253
|
+
|
172
254
|
end
|
173
255
|
|
174
|
-
def initialize(v_return = nil) @v_return = v_return
|
175
|
-
end
|
176
256
|
end
|
177
257
|
# {http:controls.classes.win32.server.sirius.org/}GetItemRect
|
178
258
|
# arg0 - SOAP::SOAPLong
|
179
|
-
# arg1 - SOAP::SOAPInt
|
180
|
-
|
181
|
-
|
259
|
+
# arg1 - SOAP::SOAPInt
|
260
|
+
|
261
|
+
class GetItemRect
|
262
|
+
|
263
|
+
attr_accessor :arg0
|
264
|
+
|
182
265
|
attr_accessor :arg1
|
183
266
|
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
184
|
-
@arg1 = arg1
|
185
|
-
|
267
|
+
@arg1 = arg1
|
268
|
+
|
269
|
+
end
|
270
|
+
|
186
271
|
end
|
187
272
|
# {http:controls.classes.win32.server.sirius.org/}GetItemRectResponse
|
188
|
-
# m_return - Sirius::Client::Win32::Core::Tabcontrol::Rect
|
189
|
-
class GetItemRectResponse
|
190
273
|
def m_return
|
191
|
-
|
274
|
+
# m_return - Sirius::Client::Win32::Core::Tabcontrol::Rect
|
275
|
+
|
276
|
+
class GetItemRectResponse
|
277
|
+
def m_return
|
278
|
+
@v_return
|
279
|
+
|
280
|
+
end
|
281
|
+
|
282
|
+
def m_return=(value) @v_return = value
|
283
|
+
|
192
284
|
end
|
193
285
|
|
194
|
-
def
|
286
|
+
def initialize(v_return = nil) @v_return = v_return
|
287
|
+
|
195
288
|
end
|
196
289
|
|
197
|
-
def initialize(v_return = nil) @v_return = v_return
|
198
|
-
end
|
199
290
|
end
|
200
291
|
# {http:controls.classes.win32.server.sirius.org/}GetCurSel
|
201
|
-
# arg0 - SOAP::SOAPLong
|
202
|
-
|
292
|
+
# arg0 - SOAP::SOAPLong
|
293
|
+
|
294
|
+
class GetCurSel
|
295
|
+
|
203
296
|
attr_accessor :arg0
|
204
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
205
|
-
|
297
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
298
|
+
|
299
|
+
end
|
300
|
+
|
206
301
|
end
|
207
302
|
# {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
|
208
|
-
# m_return - SOAP::SOAPInt
|
209
|
-
class GetCurSelResponse
|
210
303
|
def m_return
|
211
|
-
|
304
|
+
# m_return - SOAP::SOAPInt
|
305
|
+
|
306
|
+
class GetCurSelResponse
|
307
|
+
def m_return
|
308
|
+
@v_return
|
309
|
+
|
310
|
+
end
|
311
|
+
|
312
|
+
def m_return=(value) @v_return = value
|
313
|
+
|
212
314
|
end
|
213
315
|
|
214
|
-
def
|
316
|
+
def initialize(v_return = nil) @v_return = v_return
|
317
|
+
|
215
318
|
end
|
216
319
|
|
217
|
-
def initialize(v_return = nil) @v_return = v_return
|
218
|
-
end
|
219
320
|
end
|
220
321
|
# {http:controls.classes.win32.server.sirius.org/}SetCurFocus
|
221
322
|
# arg0 - SOAP::SOAPLong
|
222
|
-
# arg1 - SOAP::SOAPInt
|
223
|
-
|
224
|
-
|
323
|
+
# arg1 - SOAP::SOAPInt
|
324
|
+
|
325
|
+
class SetCurFocus
|
326
|
+
|
327
|
+
attr_accessor :arg0
|
328
|
+
|
225
329
|
attr_accessor :arg1
|
226
330
|
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
227
|
-
@arg1 = arg1
|
228
|
-
|
331
|
+
@arg1 = arg1
|
332
|
+
|
333
|
+
end
|
334
|
+
|
229
335
|
end
|
230
|
-
# {http:controls.classes.win32.server.sirius.org/}SetCurFocusResponse
|
231
|
-
class SetCurFocusResponse
|
232
336
|
def initialize
|
233
|
-
|
337
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCurFocusResponse
|
338
|
+
|
339
|
+
class SetCurFocusResponse
|
340
|
+
def initialize
|
341
|
+
|
342
|
+
end
|
343
|
+
|
234
344
|
end
|
235
345
|
# {http:controls.classes.win32.server.sirius.org/}SetCurSel
|
236
346
|
# arg0 - SOAP::SOAPLong
|
237
|
-
# arg1 - SOAP::SOAPInt
|
238
|
-
|
239
|
-
|
347
|
+
# arg1 - SOAP::SOAPInt
|
348
|
+
|
349
|
+
class SetCurSel
|
350
|
+
|
351
|
+
attr_accessor :arg0
|
352
|
+
|
240
353
|
attr_accessor :arg1
|
241
354
|
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
242
|
-
@arg1 = arg1
|
243
|
-
|
355
|
+
@arg1 = arg1
|
356
|
+
|
357
|
+
end
|
358
|
+
|
244
359
|
end
|
245
|
-
# {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
|
246
|
-
class SetCurSelResponse
|
247
360
|
def initialize
|
248
|
-
|
361
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
|
362
|
+
|
363
|
+
class SetCurSelResponse
|
364
|
+
def initialize
|
365
|
+
|
366
|
+
end
|
367
|
+
|
249
368
|
end
|
250
369
|
# {http:controls.classes.win32.server.sirius.org/}GetItem
|
251
370
|
# arg0 - SOAP::SOAPLong
|
252
|
-
# arg1 - SOAP::SOAPInt
|
253
|
-
|
254
|
-
|
371
|
+
# arg1 - SOAP::SOAPInt
|
372
|
+
|
373
|
+
class GetItem
|
374
|
+
|
375
|
+
attr_accessor :arg0
|
376
|
+
|
255
377
|
attr_accessor :arg1
|
256
378
|
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
257
|
-
@arg1 = arg1
|
258
|
-
|
379
|
+
@arg1 = arg1
|
380
|
+
|
381
|
+
end
|
382
|
+
|
259
383
|
end
|
260
384
|
# {http:controls.classes.win32.server.sirius.org/}GetItemResponse
|
261
|
-
# m_return - Sirius::Client::Win32::Core::Tabcontrol::TcITEM
|
262
|
-
class GetItemResponse
|
263
385
|
def m_return
|
264
|
-
|
386
|
+
# m_return - Sirius::Client::Win32::Core::Tabcontrol::TcITEM
|
387
|
+
|
388
|
+
class GetItemResponse
|
389
|
+
def m_return
|
390
|
+
@v_return
|
391
|
+
|
265
392
|
end
|
266
393
|
|
267
|
-
def m_return=(value) @v_return = value
|
394
|
+
def m_return=(value) @v_return = value
|
395
|
+
|
396
|
+
end
|
397
|
+
|
398
|
+
def initialize(v_return = nil) @v_return = v_return
|
399
|
+
|
268
400
|
end
|
269
401
|
|
270
|
-
def initialize(v_return = nil) @v_return = v_return
|
271
|
-
end
|
272
402
|
end
|
273
403
|
# {http:controls.classes.win32.server.sirius.org/}number
|
274
|
-
# abstract
|
275
|
-
class Number
|
276
404
|
def initialize
|
277
|
-
|
405
|
+
# abstract
|
406
|
+
|
407
|
+
class Number
|
408
|
+
def initialize
|
409
|
+
|
410
|
+
end
|
411
|
+
|
278
412
|
end
|
279
413
|
# {http:controls.classes.win32.server.sirius.org/}integerType
|
280
|
-
# abstract
|
281
|
-
class IntegerType < Number
|
282
414
|
def initialize
|
283
|
-
|
415
|
+
# abstract
|
416
|
+
|
417
|
+
class IntegerType < Number
|
418
|
+
def initialize
|
419
|
+
|
420
|
+
end
|
421
|
+
|
284
422
|
end
|
285
|
-
# {http:controls.classes.win32.server.sirius.org/}longPTR
|
286
|
-
class LongPTR < IntegerType
|
287
423
|
def initialize
|
288
|
-
|
424
|
+
# {http:controls.classes.win32.server.sirius.org/}longPTR
|
425
|
+
|
426
|
+
class LongPTR < IntegerType
|
427
|
+
def initialize
|
428
|
+
|
429
|
+
end
|
430
|
+
|
289
431
|
end
|
290
|
-
# {http:controls.classes.win32.server.sirius.org/}lparam
|
291
|
-
class Lparam < LongPTR
|
292
432
|
def initialize
|
293
|
-
|
433
|
+
# {http:controls.classes.win32.server.sirius.org/}lparam
|
434
|
+
|
435
|
+
class Lparam < LongPTR
|
436
|
+
def initialize
|
437
|
+
|
438
|
+
end
|
439
|
+
|
294
440
|
end
|
295
441
|
|
296
442
|
end; end; end; end; end
|