sirius-client-win32 1.2.21 → 1.3.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/sirius/win32/classes/Menu.rb +73 -2
- data/lib/sirius/win32/classes/MenuItem.rb +31 -2
- data/lib/sirius/win32/core/button/ButtonService.rb +65 -65
- data/lib/sirius/win32/core/button/ButtonServiceDriver.rb +71 -71
- data/lib/sirius/win32/core/button/ButtonServiceMappingRegistry.rb +198 -198
- data/lib/sirius/win32/core/combobox/ComboBoxService.rb +454 -454
- data/lib/sirius/win32/core/combobox/ComboBoxServiceDriver.rb +207 -207
- data/lib/sirius/win32/core/combobox/ComboBoxServiceMappingRegistry.rb +1099 -1099
- data/lib/sirius/win32/core/dialog/DialogService.rb +178 -178
- data/lib/sirius/win32/core/dialog/DialogServiceDriver.rb +103 -103
- data/lib/sirius/win32/core/dialog/DialogServiceMappingRegistry.rb +423 -423
- data/lib/sirius/win32/core/edit/EditService.rb +348 -348
- data/lib/sirius/win32/core/edit/EditServiceDriver.rb +175 -175
- data/lib/sirius/win32/core/edit/EditServiceMappingRegistry.rb +858 -858
- data/lib/sirius/win32/core/listbox/ListBoxService.rb +363 -363
- data/lib/sirius/win32/core/listbox/ListBoxServiceDriver.rb +175 -175
- data/lib/sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb +879 -879
- data/lib/sirius/win32/core/menu/MenuService.rb +430 -430
- data/lib/sirius/win32/core/menu/MenuServiceDriver.rb +127 -127
- data/lib/sirius/win32/core/menu/MenuServiceMappingRegistry.rb +829 -829
- data/lib/sirius/win32/core/tabcontrol/TabControlService.rb +267 -267
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceDriver.rb +111 -111
- data/lib/sirius/win32/core/tabcontrol/TabControlServiceMappingRegistry.rb +582 -582
- data/lib/sirius/win32/core/utils/Win32UtilsService.rb +60 -60
- data/lib/sirius/win32/core/utils/Win32UtilsServiceDriver.rb +55 -55
- data/lib/sirius/win32/core/utils/Win32UtilsServiceMappingRegistry.rb +135 -135
- data/lib/sirius/win32/core/window/WindowService.rb +601 -601
- data/lib/sirius/win32/core/window/WindowServiceDriver.rb +271 -271
- data/lib/sirius/win32/core/window/WindowServiceMappingRegistry.rb +1512 -1512
- metadata +2 -2
@@ -1,286 +1,286 @@
|
|
1
|
-
require 'xsd/qname'
|
2
|
-
|
3
|
-
module Sirius; module Client; module Win32; module Core; module Tabcontrol
|
4
|
-
|
5
|
-
# {http:controls.classes.win32.server.sirius.org/}GetCurFocus
|
6
|
-
# arg0 - SOAP::SOAPLong
|
7
1
|
class GetCurFocus
|
8
|
-
|
9
|
-
|
2
|
+
require 'xsd/qname'
|
3
|
+
|
4
|
+
module Sirius; module Client; module Win32; module Core; module Tabcontrol
|
5
|
+
|
6
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCurFocus
|
7
|
+
# arg0 - SOAP::SOAPLong
|
10
8
|
class GetCurFocus
|
9
|
+
attr_accessor :arg0
|
10
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
11
|
+
end
|
12
|
+
end
|
13
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCurFocusResponse
|
14
|
+
# m_return - SOAP::SOAPInt
|
15
|
+
class GetCurFocusResponse
|
11
16
|
def m_return
|
17
|
+
@v_return
|
12
18
|
end
|
13
|
-
end
|
14
|
-
# {http:controls.classes.win32.server.sirius.org/}GetCurFocusResponse
|
15
|
-
# m_return - SOAP::SOAPInt
|
16
|
-
class GetCurFocusResponse
|
17
19
|
def m_return
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
def m_return=(value) @v_return = value
|
22
|
-
end
|
23
|
-
|
24
|
-
def initialize(v_return = nil) @v_return = v_return
|
20
|
+
|
21
|
+
def m_return=(value) @v_return = value
|
25
22
|
end
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
23
|
+
|
24
|
+
def initialize(v_return = nil) @v_return = v_return
|
25
|
+
end
|
26
|
+
end
|
27
|
+
# {http:controls.classes.win32.server.sirius.org/}GetRowCount
|
28
|
+
# arg0 - SOAP::SOAPLong
|
29
|
+
class GetRowCount
|
30
|
+
attr_accessor :arg0
|
31
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
32
|
+
end
|
33
|
+
end
|
34
|
+
# {http:controls.classes.win32.server.sirius.org/}GetRowCountResponse
|
35
|
+
# m_return - SOAP::SOAPInt
|
36
|
+
class GetRowCountResponse
|
32
37
|
def m_return
|
38
|
+
@v_return
|
33
39
|
end
|
34
|
-
end
|
35
|
-
# {http:controls.classes.win32.server.sirius.org/}GetRowCountResponse
|
36
|
-
# m_return - SOAP::SOAPInt
|
37
|
-
class GetRowCountResponse
|
38
40
|
def m_return
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
def m_return=(value) @v_return = value
|
43
|
-
end
|
44
|
-
|
45
|
-
def initialize(v_return = nil) @v_return = v_return
|
41
|
+
|
42
|
+
def m_return=(value) @v_return = value
|
46
43
|
end
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
44
|
+
|
45
|
+
def initialize(v_return = nil) @v_return = v_return
|
46
|
+
end
|
47
|
+
end
|
48
|
+
# {http:controls.classes.win32.server.sirius.org/}HitTest
|
49
|
+
# arg0 - SOAP::SOAPLong
|
50
|
+
class HitTest
|
51
|
+
attr_accessor :arg0
|
52
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
53
|
+
end
|
54
|
+
end
|
55
|
+
# {http:controls.classes.win32.server.sirius.org/}HitTestResponse
|
56
|
+
# m_return - Sirius::Client::Win32::Core::Tabcontrol::TcHITTESTINFO
|
57
|
+
class HitTestResponse
|
53
58
|
def m_return
|
59
|
+
@v_return
|
54
60
|
end
|
55
|
-
end
|
56
|
-
# {http:controls.classes.win32.server.sirius.org/}HitTestResponse
|
57
|
-
# m_return - Sirius::Client::Win32::Core::Tabcontrol::TcHITTESTINFO
|
58
|
-
class HitTestResponse
|
59
61
|
def m_return
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
def m_return=(value) @v_return = value
|
64
|
-
end
|
65
|
-
|
66
|
-
def initialize(v_return = nil) @v_return = v_return
|
62
|
+
|
63
|
+
def m_return=(value) @v_return = value
|
67
64
|
end
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
65
|
+
|
66
|
+
def initialize(v_return = nil) @v_return = v_return
|
67
|
+
end
|
68
|
+
end
|
69
|
+
# {http:controls.classes.win32.server.sirius.org/}structure
|
70
|
+
# abstract
|
71
|
+
# autoRead - SOAP::SOAPBoolean
|
72
|
+
# autoWrite - SOAP::SOAPBoolean
|
73
|
+
class Structure
|
74
|
+
attr_accessor :autoRead
|
75
|
+
attr_accessor :autoWrite
|
76
|
+
def initialize(autoRead = nil, autoWrite = nil) @autoRead = autoRead
|
77
|
+
@autoWrite = autoWrite
|
78
|
+
end
|
79
|
+
end
|
80
|
+
# {http:controls.classes.win32.server.sirius.org/}tcHITTESTINFO
|
81
|
+
# autoRead - SOAP::SOAPBoolean
|
72
82
|
# autoWrite - SOAP::SOAPBoolean
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
83
|
+
# pt - Sirius::Client::Win32::Core::Tabcontrol::Point
|
84
|
+
# flags - SOAP::SOAPInt
|
85
|
+
class TcHITTESTINFO < Structure
|
86
|
+
attr_accessor :autoRead
|
87
|
+
attr_accessor :autoWrite
|
88
|
+
attr_accessor :pt
|
89
|
+
attr_accessor :flags
|
90
|
+
def initialize(autoRead = nil, autoWrite = nil, pt = nil, flags = nil) @autoRead = autoRead
|
77
91
|
@autoWrite = autoWrite
|
78
|
-
end
|
79
|
-
end
|
80
|
-
# {http:controls.classes.win32.server.sirius.org/}tcHITTESTINFO
|
81
|
-
# autoRead - SOAP::SOAPBoolean
|
82
|
-
# autoWrite - SOAP::SOAPBoolean
|
83
|
-
# pt - Sirius::Client::Win32::Core::Tabcontrol::Point
|
84
|
-
# flags - SOAP::SOAPInt
|
85
|
-
class TcHITTESTINFO < Structure
|
86
|
-
attr_accessor :autoRead
|
87
|
-
attr_accessor :autoWrite
|
88
|
-
attr_accessor :pt
|
89
|
-
attr_accessor :flags
|
90
|
-
def initialize(autoRead = nil, autoWrite = nil, pt = nil, flags = nil) @autoRead = autoRead
|
91
|
-
@autoWrite = autoWrite
|
92
|
-
@pt = pt
|
93
|
-
@flags = flags
|
94
|
-
end
|
95
|
-
end
|
96
|
-
# {http:controls.classes.win32.server.sirius.org/}point
|
97
|
-
# autoRead - SOAP::SOAPBoolean
|
98
|
-
# autoWrite - SOAP::SOAPBoolean
|
99
|
-
# x - SOAP::SOAPInt
|
100
|
-
# y - SOAP::SOAPInt
|
101
|
-
class Point < Structure
|
102
|
-
attr_accessor :autoRead
|
103
|
-
attr_accessor :autoWrite
|
104
|
-
attr_accessor :x
|
105
|
-
attr_accessor :y
|
106
|
-
def initialize(autoRead = nil, autoWrite = nil, x = nil, y = nil) @autoRead = autoRead
|
107
|
-
@autoWrite = autoWrite
|
108
|
-
@x = x
|
109
|
-
@y = y
|
110
|
-
end
|
111
|
-
end
|
112
|
-
# {http:controls.classes.win32.server.sirius.org/}rect
|
113
|
-
# autoRead - SOAP::SOAPBoolean
|
114
|
-
# autoWrite - SOAP::SOAPBoolean
|
115
|
-
# left - SOAP::SOAPInt
|
116
|
-
# top - SOAP::SOAPInt
|
117
|
-
# right - SOAP::SOAPInt
|
118
|
-
# bottom - SOAP::SOAPInt
|
119
|
-
class Rect < Structure
|
120
|
-
attr_accessor :autoRead
|
121
|
-
attr_accessor :autoWrite
|
122
|
-
attr_accessor :left
|
123
|
-
attr_accessor :top
|
124
|
-
attr_accessor :right
|
125
|
-
attr_accessor :bottom
|
126
|
-
def initialize(autoRead = nil, autoWrite = nil, left = nil, top = nil, right = nil, bottom = nil) @autoRead = autoRead
|
127
|
-
@autoWrite = autoWrite
|
128
|
-
@left = left
|
129
|
-
@top = top
|
130
|
-
@right = right
|
131
|
-
@bottom = bottom
|
132
|
-
end
|
133
|
-
end
|
134
|
-
# {http:controls.classes.win32.server.sirius.org/}tcITEM
|
135
|
-
# autoRead - SOAP::SOAPBoolean
|
136
|
-
# autoWrite - SOAP::SOAPBoolean
|
137
|
-
# mask - SOAP::SOAPInt
|
138
|
-
# dwState - SOAP::SOAPInt
|
139
|
-
# dwStateMask - SOAP::SOAPInt
|
140
|
-
# pszText - SOAP::SOAPString
|
141
|
-
# cchTextMax - SOAP::SOAPInt
|
142
|
-
# iImage - SOAP::SOAPInt
|
143
|
-
# lParam - Sirius::Client::Win32::Core::Tabcontrol::Lparam
|
144
|
-
class TcITEM < Structure
|
145
|
-
attr_accessor :autoRead
|
146
|
-
attr_accessor :autoWrite
|
147
|
-
attr_accessor :mask
|
148
|
-
attr_accessor :dwState
|
149
|
-
attr_accessor :dwStateMask
|
150
|
-
attr_accessor :pszText
|
151
|
-
attr_accessor :cchTextMax
|
152
|
-
attr_accessor :iImage
|
153
|
-
attr_accessor :lParam
|
154
|
-
def initialize(autoRead = nil, autoWrite = nil, mask = nil, dwState = nil, dwStateMask = nil, pszText = nil, cchTextMax = nil, iImage = nil, lParam = nil) @autoRead = autoRead
|
155
|
-
@autoWrite = autoWrite
|
156
|
-
@mask = mask
|
157
|
-
@dwState = dwState
|
158
|
-
@dwStateMask = dwStateMask
|
159
|
-
@pszText = pszText
|
160
|
-
@cchTextMax = cchTextMax
|
161
|
-
@iImage = iImage
|
162
|
-
@lParam = lParam
|
163
|
-
end
|
164
|
-
end
|
165
|
-
# {http:controls.classes.win32.server.sirius.org/}GetItemCount
|
166
|
-
# arg0 - SOAP::SOAPLong
|
167
|
-
class GetItemCount
|
168
|
-
attr_accessor :arg0
|
169
|
-
def initialize(arg0 = nil) @arg0 = arg0
|
170
|
-
end
|
171
|
-
end
|
172
|
-
# {http:controls.classes.win32.server.sirius.org/}GetItemCountResponse
|
173
|
-
# m_return - SOAP::SOAPInt
|
174
|
-
class GetItemCountResponse
|
175
92
|
def m_return
|
176
|
-
@
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
93
|
+
@pt = pt
|
94
|
+
@flags = flags
|
95
|
+
end
|
96
|
+
end
|
97
|
+
# {http:controls.classes.win32.server.sirius.org/}point
|
98
|
+
# autoRead - SOAP::SOAPBoolean
|
99
|
+
# autoWrite - SOAP::SOAPBoolean
|
100
|
+
# x - SOAP::SOAPInt
|
101
|
+
# y - SOAP::SOAPInt
|
102
|
+
class Point < Structure
|
103
|
+
attr_accessor :autoRead
|
104
|
+
attr_accessor :autoWrite
|
105
|
+
attr_accessor :x
|
106
|
+
attr_accessor :y
|
107
|
+
def initialize(autoRead = nil, autoWrite = nil, x = nil, y = nil) @autoRead = autoRead
|
108
|
+
@autoWrite = autoWrite
|
109
|
+
@x = x
|
110
|
+
@y = y
|
111
|
+
end
|
112
|
+
end
|
113
|
+
# {http:controls.classes.win32.server.sirius.org/}rect
|
114
|
+
# autoRead - SOAP::SOAPBoolean
|
115
|
+
# autoWrite - SOAP::SOAPBoolean
|
116
|
+
# left - SOAP::SOAPInt
|
117
|
+
# top - SOAP::SOAPInt
|
118
|
+
# right - SOAP::SOAPInt
|
119
|
+
# bottom - SOAP::SOAPInt
|
120
|
+
class Rect < Structure
|
121
|
+
attr_accessor :autoRead
|
122
|
+
attr_accessor :autoWrite
|
123
|
+
attr_accessor :left
|
124
|
+
attr_accessor :top
|
125
|
+
attr_accessor :right
|
126
|
+
attr_accessor :bottom
|
127
|
+
def initialize(autoRead = nil, autoWrite = nil, left = nil, top = nil, right = nil, bottom = nil) @autoRead = autoRead
|
128
|
+
@autoWrite = autoWrite
|
129
|
+
@left = left
|
130
|
+
@top = top
|
131
|
+
@right = right
|
132
|
+
@bottom = bottom
|
133
|
+
end
|
134
|
+
end
|
135
|
+
# {http:controls.classes.win32.server.sirius.org/}tcITEM
|
136
|
+
# autoRead - SOAP::SOAPBoolean
|
137
|
+
# autoWrite - SOAP::SOAPBoolean
|
138
|
+
# mask - SOAP::SOAPInt
|
139
|
+
# dwState - SOAP::SOAPInt
|
140
|
+
# dwStateMask - SOAP::SOAPInt
|
141
|
+
# pszText - SOAP::SOAPString
|
142
|
+
# cchTextMax - SOAP::SOAPInt
|
143
|
+
# iImage - SOAP::SOAPInt
|
144
|
+
# lParam - Sirius::Client::Win32::Core::Tabcontrol::Lparam
|
145
|
+
class TcITEM < Structure
|
146
|
+
attr_accessor :autoRead
|
147
|
+
attr_accessor :autoWrite
|
148
|
+
attr_accessor :mask
|
149
|
+
attr_accessor :dwState
|
150
|
+
attr_accessor :dwStateMask
|
151
|
+
attr_accessor :pszText
|
152
|
+
attr_accessor :cchTextMax
|
153
|
+
attr_accessor :iImage
|
154
|
+
attr_accessor :lParam
|
155
|
+
def initialize(autoRead = nil, autoWrite = nil, mask = nil, dwState = nil, dwStateMask = nil, pszText = nil, cchTextMax = nil, iImage = nil, lParam = nil) @autoRead = autoRead
|
156
|
+
@autoWrite = autoWrite
|
157
|
+
@mask = mask
|
158
|
+
@dwState = dwState
|
159
|
+
@dwStateMask = dwStateMask
|
160
|
+
@pszText = pszText
|
161
|
+
@cchTextMax = cchTextMax
|
162
|
+
@iImage = iImage
|
163
|
+
@lParam = lParam
|
164
|
+
end
|
165
|
+
end
|
166
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemCount
|
167
|
+
# arg0 - SOAP::SOAPLong
|
168
|
+
class GetItemCount
|
189
169
|
attr_accessor :arg0
|
190
|
-
|
191
|
-
|
192
|
-
|
170
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
171
|
+
end
|
172
|
+
end
|
173
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemCountResponse
|
174
|
+
# m_return - SOAP::SOAPInt
|
175
|
+
class GetItemCountResponse
|
193
176
|
def m_return
|
177
|
+
@v_return
|
194
178
|
end
|
195
|
-
end
|
196
|
-
# {http:controls.classes.win32.server.sirius.org/}GetItemRectResponse
|
197
|
-
# m_return - Sirius::Client::Win32::Core::Tabcontrol::Rect
|
198
|
-
class GetItemRectResponse
|
199
179
|
def m_return
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
def m_return=(value) @v_return = value
|
204
|
-
end
|
205
|
-
|
206
|
-
def initialize(v_return = nil) @v_return = v_return
|
180
|
+
|
181
|
+
def m_return=(value) @v_return = value
|
207
182
|
end
|
208
|
-
|
209
|
-
|
183
|
+
|
184
|
+
def initialize(v_return = nil) @v_return = v_return
|
185
|
+
end
|
186
|
+
end
|
187
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemRect
|
210
188
|
# arg0 - SOAP::SOAPLong
|
211
|
-
|
212
|
-
|
213
|
-
|
189
|
+
# arg1 - SOAP::SOAPInt
|
190
|
+
class GetItemRect
|
191
|
+
attr_accessor :arg0
|
192
|
+
attr_accessor :arg1
|
193
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
194
|
+
@arg1 = arg1
|
195
|
+
end
|
196
|
+
end
|
197
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemRectResponse
|
198
|
+
# m_return - Sirius::Client::Win32::Core::Tabcontrol::Rect
|
199
|
+
class GetItemRectResponse
|
214
200
|
def m_return
|
201
|
+
@v_return
|
215
202
|
end
|
216
|
-
end
|
217
|
-
# {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
|
218
|
-
# m_return - SOAP::SOAPInt
|
219
|
-
class GetCurSelResponse
|
220
203
|
def m_return
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
def m_return=(value) @v_return = value
|
225
|
-
end
|
226
|
-
|
227
|
-
def initialize(v_return = nil) @v_return = v_return
|
204
|
+
|
205
|
+
def m_return=(value) @v_return = value
|
228
206
|
end
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
207
|
+
|
208
|
+
def initialize(v_return = nil) @v_return = v_return
|
209
|
+
end
|
210
|
+
end
|
211
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCurSel
|
212
|
+
# arg0 - SOAP::SOAPLong
|
213
|
+
class GetCurSel
|
234
214
|
attr_accessor :arg0
|
235
|
-
attr_accessor :arg1
|
236
|
-
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
237
|
-
@arg1 = arg1
|
238
|
-
end
|
239
|
-
end
|
240
|
-
# {http:controls.classes.win32.server.sirius.org/}SetCurFocusResponse
|
241
|
-
class SetCurFocusResponse
|
242
215
|
def initialize
|
216
|
+
def initialize(arg0 = nil) @arg0 = arg0
|
217
|
+
end
|
218
|
+
end
|
219
|
+
# {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
|
220
|
+
# m_return - SOAP::SOAPInt
|
221
|
+
class GetCurSelResponse
|
243
222
|
def m_return
|
223
|
+
@v_return
|
244
224
|
end
|
245
|
-
|
246
|
-
|
247
|
-
# arg0 - SOAP::SOAPLong
|
248
|
-
# arg1 - SOAP::SOAPInt
|
249
|
-
class SetCurSel
|
250
|
-
attr_accessor :arg0
|
251
|
-
attr_accessor :arg1
|
252
|
-
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
253
|
-
@arg1 = arg1
|
225
|
+
|
226
|
+
def m_return=(value) @v_return = value
|
254
227
|
end
|
255
|
-
end
|
256
|
-
# {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
|
257
|
-
class SetCurSelResponse
|
258
228
|
def initialize
|
259
|
-
end
|
260
|
-
end
|
261
|
-
# {http:controls.classes.win32.server.sirius.org/}GetItem
|
262
|
-
# arg0 - SOAP::SOAPLong
|
263
|
-
# arg1 - SOAP::SOAPInt
|
264
|
-
class GetItem
|
265
|
-
attr_accessor :arg0
|
266
|
-
attr_accessor :arg1
|
267
|
-
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
268
|
-
@arg1 = arg1
|
269
|
-
end
|
270
|
-
end
|
271
|
-
# {http:controls.classes.win32.server.sirius.org/}GetItemResponse
|
272
|
-
# m_return - Sirius::Client::Win32::Core::Tabcontrol::TcITEM
|
273
|
-
class GetItemResponse
|
274
229
|
def m_return
|
275
|
-
@v_return
|
276
|
-
end
|
277
|
-
|
278
|
-
def m_return=(value) @v_return = value
|
279
|
-
end
|
280
|
-
|
281
|
-
def initialize(v_return = nil) @v_return = v_return
|
282
|
-
end
|
283
|
-
end
|
284
|
-
# {http:controls.classes.win32.server.sirius.org/}number
|
285
|
-
# abstract
|
286
|
-
class Number
|
287
230
|
def initialize
|
288
|
-
end
|
289
|
-
end
|
290
|
-
# {http:controls.classes.win32.server.sirius.org/}integerType
|
291
|
-
# abstract
|
292
|
-
class IntegerType < Number
|
293
231
|
def initialize
|
294
|
-
end
|
295
|
-
end
|
296
|
-
# {http:controls.classes.win32.server.sirius.org/}longPTR
|
297
|
-
class LongPTR < IntegerType
|
298
232
|
def initialize
|
233
|
+
|
234
|
+
def initialize(v_return = nil) @v_return = v_return
|
235
|
+
end
|
236
|
+
end
|
237
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCurFocus
|
238
|
+
# arg0 - SOAP::SOAPLong
|
239
|
+
# arg1 - SOAP::SOAPInt
|
240
|
+
class SetCurFocus
|
241
|
+
attr_accessor :arg0
|
242
|
+
attr_accessor :arg1
|
243
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
244
|
+
@arg1 = arg1
|
245
|
+
end
|
246
|
+
end
|
247
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCurFocusResponse
|
248
|
+
class SetCurFocusResponse
|
299
249
|
def initialize
|
250
|
+
end
|
251
|
+
end
|
252
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCurSel
|
253
|
+
# arg0 - SOAP::SOAPLong
|
254
|
+
# arg1 - SOAP::SOAPInt
|
255
|
+
class SetCurSel
|
256
|
+
attr_accessor :arg0
|
257
|
+
attr_accessor :arg1
|
258
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
259
|
+
@arg1 = arg1
|
260
|
+
end
|
261
|
+
end
|
262
|
+
# {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
|
263
|
+
class SetCurSelResponse
|
300
264
|
def initialize
|
265
|
+
end
|
266
|
+
end
|
267
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItem
|
268
|
+
# arg0 - SOAP::SOAPLong
|
269
|
+
# arg1 - SOAP::SOAPInt
|
270
|
+
class GetItem
|
271
|
+
attr_accessor :arg0
|
272
|
+
attr_accessor :arg1
|
273
|
+
def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
|
274
|
+
@arg1 = arg1
|
275
|
+
end
|
276
|
+
end
|
277
|
+
# {http:controls.classes.win32.server.sirius.org/}GetItemResponse
|
278
|
+
# m_return - Sirius::Client::Win32::Core::Tabcontrol::TcITEM
|
279
|
+
class GetItemResponse
|
301
280
|
def m_return
|
281
|
+
@v_return
|
302
282
|
end
|
303
|
-
end
|
304
|
-
# {http:controls.classes.win32.server.sirius.org/}lparam
|
305
|
-
class Lparam < LongPTR
|
306
283
|
def initialize
|
284
|
+
|
285
|
+
def m_return=(value) @v_return = value
|
307
286
|
end
|
308
|
-
|
309
|
-
|
310
|
-
|
287
|
+
|
288
|
+
def initialize(v_return = nil) @v_return = v_return
|
289
|
+
end
|
290
|
+
end
|
291
|
+
# {http:controls.classes.win32.server.sirius.org/}number
|
292
|
+
# abstract
|
293
|
+
class Number
|
311
294
|
def initialize
|
295
|
+
end
|
296
|
+
end
|
297
|
+
# {http:controls.classes.win32.server.sirius.org/}integerType
|
298
|
+
# abstract
|
299
|
+
class IntegerType < Number
|
312
300
|
def initialize
|
301
|
+
end
|
302
|
+
end
|
303
|
+
# {http:controls.classes.win32.server.sirius.org/}longPTR
|
304
|
+
class LongPTR < IntegerType
|
313
305
|
def initialize
|
306
|
+
end
|
307
|
+
end
|
308
|
+
# {http:controls.classes.win32.server.sirius.org/}lparam
|
309
|
+
class Lparam < LongPTR
|
314
310
|
def initialize
|
311
|
+
end
|
312
|
+
end
|
313
|
+
|
314
|
+
end; end; end; end; end
|