sirius-client-win32 2013.4.1.0 → 2013.4.30.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. data/Rakefile +31 -1
  2. data/lib/sirius/win32.rb +6 -3
  3. data/lib/sirius/win32/classes/Control.rb +7 -1
  4. data/lib/sirius/win32/classes/DialogBox.rb +27 -2
  5. data/lib/sirius/win32/classes/MainWindow.rb +6 -2
  6. data/lib/sirius/win32/classes/Menu.rb +21 -11
  7. data/lib/sirius/win32/classes/MenuItem.rb +4 -5
  8. data/lib/sirius/win32/classes/MovableWindow.rb +3 -3
  9. data/lib/sirius/win32/classes/TopLevelWindow.rb +5 -4
  10. data/lib/sirius/win32/classes/Window.rb +19 -17
  11. data/lib/sirius/win32/classes/controls/Button.rb +4 -1
  12. data/lib/sirius/win32/classes/controls/CheckBox.rb +4 -1
  13. data/lib/sirius/win32/core.rb +19 -5
  14. data/lib/sirius/win32/core/button/ButtonService.rb +73 -35
  15. data/lib/sirius/win32/core/button/ButtonServiceClient.rb +1 -1
  16. data/lib/sirius/win32/core/button/ButtonServiceDriver.rb +12 -11
  17. data/lib/sirius/win32/core/button/ButtonServiceMappingRegistry.rb +1 -1
  18. data/lib/sirius/win32/core/combobox/ComboBoxService.rb +553 -249
  19. data/lib/sirius/win32/core/combobox/ComboBoxServiceClient.rb +1 -1
  20. data/lib/sirius/win32/core/combobox/ComboBoxServiceDriver.rb +46 -45
  21. data/lib/sirius/win32/core/combobox/ComboBoxServiceMappingRegistry.rb +1 -1
  22. data/lib/sirius/win32/core/dialog/DialogService.rb +182 -89
  23. data/lib/sirius/win32/core/dialog/DialogServiceClient.rb +1 -1
  24. data/lib/sirius/win32/core/dialog/DialogServiceDriver.rb +20 -19
  25. data/lib/sirius/win32/core/dialog/DialogServiceMappingRegistry.rb +1 -1
  26. data/lib/sirius/win32/core/edit/EditService.rb +357 -180
  27. data/lib/sirius/win32/core/edit/EditServiceClient.rb +1 -1
  28. data/lib/sirius/win32/core/edit/EditServiceDriver.rb +38 -37
  29. data/lib/sirius/win32/core/edit/EditServiceMappingRegistry.rb +1 -1
  30. data/lib/sirius/win32/core/listbox/ListBoxService.rb +373 -186
  31. data/lib/sirius/win32/core/listbox/ListBoxServiceClient.rb +1 -1
  32. data/lib/sirius/win32/core/listbox/ListBoxServiceDriver.rb +38 -37
  33. data/lib/sirius/win32/core/listbox/ListBoxServiceMappingRegistry.rb +1 -1
  34. data/lib/sirius/win32/core/menu/MenuService.rb +425 -209
  35. data/lib/sirius/win32/core/menu/MenuServiceClient.rb +1 -1
  36. data/lib/sirius/win32/core/menu/MenuServiceDriver.rb +26 -25
  37. data/lib/sirius/win32/core/menu/MenuServiceMappingRegistry.rb +1 -1
  38. data/lib/sirius/win32/core/tabcontrol/TabControlService.rb +285 -139
  39. data/lib/sirius/win32/core/tabcontrol/TabControlServiceClient.rb +1 -1
  40. data/lib/sirius/win32/core/tabcontrol/TabControlServiceDriver.rb +22 -21
  41. data/lib/sirius/win32/core/tabcontrol/TabControlServiceMappingRegistry.rb +1 -1
  42. data/lib/sirius/win32/core/utils/Win32UtilsService.rb +49 -22
  43. data/lib/sirius/win32/core/utils/Win32UtilsServiceClient.rb +1 -1
  44. data/lib/sirius/win32/core/utils/Win32UtilsServiceDriver.rb +8 -7
  45. data/lib/sirius/win32/core/utils/Win32UtilsServiceMappingRegistry.rb +1 -1
  46. data/lib/sirius/win32/core/window/WindowService.rb +643 -313
  47. data/lib/sirius/win32/core/window/WindowServiceClient.rb +1 -1
  48. data/lib/sirius/win32/core/window/WindowServiceDriver.rb +62 -61
  49. data/lib/sirius/win32/core/window/WindowServiceMappingRegistry.rb +1 -1
  50. metadata +2 -2
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- require 'EditServiceDriver.rb'
2
+ require 'sirius/win32/core/edit/EditServiceDriver.rb'
3
3
 
4
4
  Sirius::Client::Win32::Core::Edit
5
5
 
@@ -1,144 +1,145 @@
1
- require 'EditService.rb'
2
- require 'EditServiceMappingRegistry.rb'
1
+ require 'sirius/win32/core/edit/EditService.rb'
2
+ require 'sirius/win32/core/edit/EditServiceMappingRegistry.rb'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Sirius::Client::Win32::Core::Edit
6
6
 
7
7
 
8
- class Edit < ::SOAP::RPC::Driver DefaultEndpointUrl = "http:localhost:21212/win32/edit"
8
+ class Edit < ::SOAP::RPC::Driver
9
+ DefaultEndpointUrl = "http:localhost:21212/win32/edit"
9
10
  Methods = [
10
11
  [ "",
11
12
  "getLineCount",
12
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetLineCount"]],
13
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetLineCountResponse"]] ],
13
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetLineCount"]],
14
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetLineCountResponse"]] ],
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
  "lineLength",
20
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineLength"]],
21
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineLengthResponse"]] ],
21
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineLength"]],
22
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineLengthResponse"]] ],
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
  "setText",
28
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetText"]],
29
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetTextResponse"]] ],
29
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetText"]],
30
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetTextResponse"]] ],
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
  "scroll",
36
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "Scroll"]],
37
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "ScrollResponse"]] ],
37
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "Scroll"]],
38
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "ScrollResponse"]] ],
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
  "canUndo",
44
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "CanUndo"]],
45
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "CanUndoResponse"]] ],
45
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "CanUndo"]],
46
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "CanUndoResponse"]] ],
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
  "getSel",
52
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSel"]],
53
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelResponse"]] ],
53
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSel"]],
54
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetSelResponse"]] ],
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
  "setSel",
60
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetSel"]],
61
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetSelResponse"]] ],
61
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetSel"]],
62
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetSelResponse"]] ],
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
  "replaceSel",
68
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "ReplaceSel"]],
69
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "ReplaceSelResponse"]] ],
69
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "ReplaceSel"]],
70
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "ReplaceSelResponse"]] ],
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
  "lineIndex",
76
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineIndex"]],
77
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineIndexResponse"]] ],
77
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineIndex"]],
78
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineIndexResponse"]] ],
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
  "lineFromChar",
84
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineFromChar"]],
85
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineFromCharResponse"]] ],
85
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineFromChar"]],
86
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "LineFromCharResponse"]] ],
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
  "getModify",
92
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetModify"]],
93
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetModifyResponse"]] ],
93
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetModify"]],
94
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetModifyResponse"]] ],
94
95
  { :request_style => :document, :request_use => :literal,
95
96
  :response_style => :document, :response_use => :literal,
96
97
  :faults => {} }
97
98
  ],
98
99
  [ "",
99
100
  "scrollCaret",
100
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "ScrollCaret"]],
101
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "ScrollCaretResponse"]] ],
101
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "ScrollCaret"]],
102
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "ScrollCaretResponse"]] ],
102
103
  { :request_style => :document, :request_use => :literal,
103
104
  :response_style => :document, :response_use => :literal,
104
105
  :faults => {} }
105
106
  ],
106
107
  [ "",
107
108
  "emptyUndoBuffer",
108
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "EmptyUndoBuffer"]],
109
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "EmptyUndoBufferResponse"]] ],
109
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "EmptyUndoBuffer"]],
110
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "EmptyUndoBufferResponse"]] ],
110
111
  { :request_style => :document, :request_use => :literal,
111
112
  :response_style => :document, :response_use => :literal,
112
113
  :faults => {} }
113
114
  ],
114
115
  [ "",
115
116
  "getFirstVisibleLine",
116
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetFirstVisibleLine"]],
117
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetFirstVisibleLineResponse"]] ],
117
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetFirstVisibleLine"]],
118
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetFirstVisibleLineResponse"]] ],
118
119
  { :request_style => :document, :request_use => :literal,
119
120
  :response_style => :document, :response_use => :literal,
120
121
  :faults => {} }
121
122
  ],
122
123
  [ "",
123
124
  "getPasswordChar",
124
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetPasswordChar"]],
125
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetPasswordCharResponse"]] ],
125
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetPasswordChar"]],
126
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetPasswordCharResponse"]] ],
126
127
  { :request_style => :document, :request_use => :literal,
127
128
  :response_style => :document, :response_use => :literal,
128
129
  :faults => {} }
129
130
  ],
130
131
  [ "",
131
132
  "setPasswordChar",
132
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetPasswordChar"]],
133
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetPasswordCharResponse"]] ],
133
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetPasswordChar"]],
134
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetPasswordCharResponse"]] ],
134
135
  { :request_style => :document, :request_use => :literal,
135
136
  :response_style => :document, :response_use => :literal,
136
137
  :faults => {} }
137
138
  ],
138
139
  [ "",
139
140
  "undo",
140
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "Undo"]],
141
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "UndoResponse"]] ],
141
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "Undo"]],
142
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "UndoResponse"]] ],
142
143
  { :request_style => :document, :request_use => :literal,
143
144
  :response_style => :document, :response_use => :literal,
144
145
  :faults => {} }
@@ -1,4 +1,4 @@
1
- require 'EditService.rb'
1
+ require 'sirius/win32/core/edit/EditService.rb'
2
2
  require 'soap/mapping'
3
3
 
4
4
  module Sirius
5
5
  module Client
6
6
  module Win32
7
7
  module Core
8
8
  module Edit
@@ -3,377 +3,564 @@ require 'xsd/qname'
3
3
  module Sirius; module Client; module Win32; module Core; module Listbox
4
4
 
5
5
  # {http:controls.classes.win32.server.sirius.org/}GetCount
6
- # arg0 - SOAP::SOAPLong
7
6
  class GetCount
7
+ # arg0 - SOAP::SOAPLong
8
+ class GetCount
9
+
8
10
  attr_accessor :arg0
9
- def initialize(arg0 = nil) @arg0 = arg0
10
- end
11
+ def initialize(arg0 = nil) @arg0 = arg0
12
+
13
+ end
14
+
11
15
  end
12
16
  # {http:controls.classes.win32.server.sirius.org/}GetCountResponse
13
- # m_return - SOAP::SOAPInt
14
- class GetCountResponse
15
17
  def m_return
16
- @v_return
18
+ # m_return - SOAP::SOAPInt
19
+
20
+ class GetCountResponse
21
+ def m_return
22
+ @v_return
23
+
24
+ end
25
+
26
+ def m_return=(value) @v_return = value
27
+
17
28
  end
18
29
 
19
- def m_return=(value) @v_return = value
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/}FindString
26
36
  # arg0 - SOAP::SOAPLong
27
37
  # arg1 - SOAP::SOAPInt
28
- # arg2 - SOAP::SOAPString
29
- class FindString
30
- attr_accessor :arg0
31
- attr_accessor :arg1
38
+ # arg2 - SOAP::SOAPString
39
+
40
+ class FindString
41
+
42
+ attr_accessor :arg0
43
+
44
+ attr_accessor :arg1
45
+
32
46
  attr_accessor :arg2
33
47
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
34
48
  @arg1 = arg1
35
- @arg2 = arg2
36
- end
49
+ @arg2 = arg2
50
+
51
+ end
52
+
37
53
  end
38
54
  # {http:controls.classes.win32.server.sirius.org/}FindStringResponse
39
- # m_return - SOAP::SOAPInt
40
- class FindStringResponse
41
55
  def m_return
42
- @v_return
56
+ # m_return - SOAP::SOAPInt
57
+
58
+ class FindStringResponse
59
+ def m_return
60
+ @v_return
61
+
43
62
  end
44
63
 
45
- def m_return=(value) @v_return = value
64
+ def m_return=(value) @v_return = value
65
+
66
+ end
67
+
68
+ def initialize(v_return = nil) @v_return = v_return
69
+
46
70
  end
47
71
 
48
- def initialize(v_return = nil) @v_return = v_return
49
- end
50
72
  end
51
73
  # {http:controls.classes.win32.server.sirius.org/}SelItemRange
52
74
  # arg0 - SOAP::SOAPLong
53
75
  # arg1 - SOAP::SOAPBoolean
54
76
  # arg2 - SOAP::SOAPInt
55
- # arg3 - SOAP::SOAPInt
56
- class SelItemRange
57
- attr_accessor :arg0
58
- attr_accessor :arg1
59
- attr_accessor :arg2
77
+ # arg3 - SOAP::SOAPInt
78
+
79
+ class SelItemRange
80
+
81
+ attr_accessor :arg0
82
+
83
+ attr_accessor :arg1
84
+
85
+ attr_accessor :arg2
86
+
60
87
  attr_accessor :arg3
61
88
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
62
89
  @arg1 = arg1
63
90
  @arg2 = arg2
64
- @arg3 = arg3
65
- end
91
+ @arg3 = arg3
92
+
93
+ end
94
+
66
95
  end
67
96
  # {http:controls.classes.win32.server.sirius.org/}SelItemRangeResponse
68
- # m_return - SOAP::SOAPInt
69
- class SelItemRangeResponse
70
97
  def m_return
71
- @v_return
98
+ # m_return - SOAP::SOAPInt
99
+
100
+ class SelItemRangeResponse
101
+ def m_return
102
+ @v_return
103
+
72
104
  end
73
105
 
74
- def m_return=(value) @v_return = value
106
+ def m_return=(value) @v_return = value
107
+
108
+ end
109
+
110
+ def initialize(v_return = nil) @v_return = v_return
111
+
75
112
  end
76
113
 
77
- def initialize(v_return = nil) @v_return = v_return
78
- end
79
114
  end
80
115
  # {http:controls.classes.win32.server.sirius.org/}GetText
81
116
  # arg0 - SOAP::SOAPLong
82
- # arg1 - SOAP::SOAPInt
83
- class GetText
84
- attr_accessor :arg0
117
+ # arg1 - SOAP::SOAPInt
118
+
119
+ class GetText
120
+
121
+ attr_accessor :arg0
122
+
85
123
  attr_accessor :arg1
86
124
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
87
- @arg1 = arg1
88
- end
125
+ @arg1 = arg1
126
+
127
+ end
128
+
89
129
  end
90
130
  # {http:controls.classes.win32.server.sirius.org/}GetTextResponse
91
- # m_return - SOAP::SOAPString
92
- class GetTextResponse
93
131
  def m_return
94
- @v_return
132
+ # m_return - SOAP::SOAPString
133
+
134
+ class GetTextResponse
135
+ def m_return
136
+ @v_return
137
+
95
138
  end
96
139
 
97
- def m_return=(value) @v_return = value
140
+ def m_return=(value) @v_return = value
141
+
142
+ end
143
+
144
+ def initialize(v_return = nil) @v_return = v_return
145
+
98
146
  end
99
147
 
100
- def initialize(v_return = nil) @v_return = v_return
101
- end
102
148
  end
103
149
  # {http:controls.classes.win32.server.sirius.org/}GetItemHeight
104
150
  # arg0 - SOAP::SOAPLong
105
- # arg1 - SOAP::SOAPInt
106
- class GetItemHeight
107
- attr_accessor :arg0
151
+ # arg1 - SOAP::SOAPInt
152
+
153
+ class GetItemHeight
154
+
155
+ attr_accessor :arg0
156
+
108
157
  attr_accessor :arg1
109
158
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
110
- @arg1 = arg1
111
- end
159
+ @arg1 = arg1
160
+
161
+ end
162
+
112
163
  end
113
164
  # {http:controls.classes.win32.server.sirius.org/}GetItemHeightResponse
114
- # m_return - SOAP::SOAPInt
115
- class GetItemHeightResponse
116
165
  def m_return
117
- @v_return
166
+ # m_return - SOAP::SOAPInt
167
+
168
+ class GetItemHeightResponse
169
+ def m_return
170
+ @v_return
171
+
172
+ end
173
+
174
+ def m_return=(value) @v_return = value
175
+
118
176
  end
119
177
 
120
- def m_return=(value) @v_return = value
178
+ def initialize(v_return = nil) @v_return = v_return
179
+
121
180
  end
122
181
 
123
- def initialize(v_return = nil) @v_return = v_return
124
- end
125
182
  end
126
183
  # {http:controls.classes.win32.server.sirius.org/}SetCaretIndex
127
184
  # arg0 - SOAP::SOAPLong
128
- # arg1 - SOAP::SOAPInt
129
- class SetCaretIndex
130
- attr_accessor :arg0
185
+ # arg1 - SOAP::SOAPInt
186
+
187
+ class SetCaretIndex
188
+
189
+ attr_accessor :arg0
190
+
131
191
  attr_accessor :arg1
132
192
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
133
- @arg1 = arg1
134
- end
193
+ @arg1 = arg1
194
+
195
+ end
196
+
135
197
  end
136
198
  # {http:controls.classes.win32.server.sirius.org/}SetCaretIndexResponse
137
- # m_return - SOAP::SOAPInt
138
- class SetCaretIndexResponse
139
199
  def m_return
140
- @v_return
200
+ # m_return - SOAP::SOAPInt
201
+
202
+ class SetCaretIndexResponse
203
+ def m_return
204
+ @v_return
205
+
141
206
  end
142
207
 
143
- def m_return=(value) @v_return = value
208
+ def m_return=(value) @v_return = value
209
+
210
+ end
211
+
212
+ def initialize(v_return = nil) @v_return = v_return
213
+
144
214
  end
145
215
 
146
- def initialize(v_return = nil) @v_return = v_return
147
- end
148
216
  end
149
217
  # {http:controls.classes.win32.server.sirius.org/}SelectString
150
218
  # arg0 - SOAP::SOAPLong
151
219
  # arg1 - SOAP::SOAPInt
152
- # arg2 - SOAP::SOAPString
153
- class SelectString
154
- attr_accessor :arg0
155
- attr_accessor :arg1
220
+ # arg2 - SOAP::SOAPString
221
+
222
+ class SelectString
223
+
224
+ attr_accessor :arg0
225
+
226
+ attr_accessor :arg1
227
+
156
228
  attr_accessor :arg2
157
229
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
158
230
  @arg1 = arg1
159
- @arg2 = arg2
160
- end
231
+ @arg2 = arg2
232
+
233
+ end
234
+
161
235
  end
162
236
  # {http:controls.classes.win32.server.sirius.org/}SelectStringResponse
163
- # m_return - SOAP::SOAPInt
164
- class SelectStringResponse
165
237
  def m_return
166
- @v_return
238
+ # m_return - SOAP::SOAPInt
239
+
240
+ class SelectStringResponse
241
+ def m_return
242
+ @v_return
243
+
167
244
  end
168
245
 
169
- def m_return=(value) @v_return = value
246
+ def m_return=(value) @v_return = value
247
+
248
+ end
249
+
250
+ def initialize(v_return = nil) @v_return = v_return
251
+
170
252
  end
171
253
 
172
- def initialize(v_return = nil) @v_return = v_return
173
- end
174
254
  end
175
255
  # {http:controls.classes.win32.server.sirius.org/}SetCurSel
176
256
  # arg0 - SOAP::SOAPLong
177
- # arg1 - SOAP::SOAPInt
178
- class SetCurSel
179
- attr_accessor :arg0
257
+ # arg1 - SOAP::SOAPInt
258
+
259
+ class SetCurSel
260
+
261
+ attr_accessor :arg0
262
+
180
263
  attr_accessor :arg1
181
264
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
182
- @arg1 = arg1
183
- end
265
+ @arg1 = arg1
266
+
267
+ end
268
+
184
269
  end
185
270
  # {http:controls.classes.win32.server.sirius.org/}SetCurSelResponse
186
- # m_return - SOAP::SOAPInt
187
- class SetCurSelResponse
188
271
  def m_return
189
- @v_return
272
+ # m_return - SOAP::SOAPInt
273
+
274
+ class SetCurSelResponse
275
+ def m_return
276
+ @v_return
277
+
190
278
  end
191
279
 
192
- def m_return=(value) @v_return = value
280
+ def m_return=(value) @v_return = value
281
+
282
+ end
283
+
284
+ def initialize(v_return = nil) @v_return = v_return
285
+
193
286
  end
194
287
 
195
- def initialize(v_return = nil) @v_return = v_return
196
- end
197
288
  end
198
289
  # {http:controls.classes.win32.server.sirius.org/}GetCurSel
199
- # arg0 - SOAP::SOAPLong
200
- class GetCurSel
290
+ # arg0 - SOAP::SOAPLong
291
+
292
+ class GetCurSel
293
+
201
294
  attr_accessor :arg0
202
- def initialize(arg0 = nil) @arg0 = arg0
203
- end
295
+ def initialize(arg0 = nil) @arg0 = arg0
296
+
297
+ end
298
+
204
299
  end
205
300
  # {http:controls.classes.win32.server.sirius.org/}GetCurSelResponse
206
- # m_return - SOAP::SOAPInt
207
- class GetCurSelResponse
208
301
  def m_return
209
- @v_return
302
+ # m_return - SOAP::SOAPInt
303
+
304
+ class GetCurSelResponse
305
+ def m_return
306
+ @v_return
307
+
308
+ end
309
+
310
+ def m_return=(value) @v_return = value
311
+
210
312
  end
211
313
 
212
- def m_return=(value) @v_return = value
314
+ def initialize(v_return = nil) @v_return = v_return
315
+
213
316
  end
214
317
 
215
- def initialize(v_return = nil) @v_return = v_return
216
- end
217
318
  end
218
319
  # {http:controls.classes.win32.server.sirius.org/}SetSel
219
320
  # arg0 - SOAP::SOAPLong
220
321
  # arg1 - SOAP::SOAPBoolean
221
- # arg2 - SOAP::SOAPInt
222
- class SetSel
223
- attr_accessor :arg0
224
- attr_accessor :arg1
322
+ # arg2 - SOAP::SOAPInt
323
+
324
+ class SetSel
325
+
326
+ attr_accessor :arg0
327
+
328
+ attr_accessor :arg1
329
+
225
330
  attr_accessor :arg2
226
331
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
227
332
  @arg1 = arg1
228
- @arg2 = arg2
229
- end
333
+ @arg2 = arg2
334
+
335
+ end
336
+
230
337
  end
231
338
  # {http:controls.classes.win32.server.sirius.org/}SetSelResponse
232
- # m_return - SOAP::SOAPInt
233
- class SetSelResponse
234
339
  def m_return
235
- @v_return
340
+ # m_return - SOAP::SOAPInt
341
+
342
+ class SetSelResponse
343
+ def m_return
344
+ @v_return
345
+
236
346
  end
237
347
 
238
- def m_return=(value) @v_return = value
348
+ def m_return=(value) @v_return = value
349
+
350
+ end
351
+
352
+ def initialize(v_return = nil) @v_return = v_return
353
+
239
354
  end
240
355
 
241
- def initialize(v_return = nil) @v_return = v_return
242
- end
243
356
  end
244
357
  # {http:controls.classes.win32.server.sirius.org/}GetSelCount
245
- # arg0 - SOAP::SOAPLong
246
- class GetSelCount
358
+ # arg0 - SOAP::SOAPLong
359
+
360
+ class GetSelCount
361
+
247
362
  attr_accessor :arg0
248
- def initialize(arg0 = nil) @arg0 = arg0
249
- end
363
+ def initialize(arg0 = nil) @arg0 = arg0
364
+
365
+ end
366
+
250
367
  end
251
368
  # {http:controls.classes.win32.server.sirius.org/}GetSelCountResponse
252
- # m_return - SOAP::SOAPInt
253
- class GetSelCountResponse
254
369
  def m_return
255
- @v_return
370
+ # m_return - SOAP::SOAPInt
371
+
372
+ class GetSelCountResponse
373
+ def m_return
374
+ @v_return
375
+
256
376
  end
257
377
 
258
- def m_return=(value) @v_return = value
378
+ def m_return=(value) @v_return = value
379
+
380
+ end
381
+
382
+ def initialize(v_return = nil) @v_return = v_return
383
+
259
384
  end
260
385
 
261
- def initialize(v_return = nil) @v_return = v_return
262
- end
263
386
  end
264
387
  # {http:controls.classes.win32.server.sirius.org/}FindStringExact
265
388
  # arg0 - SOAP::SOAPLong
266
389
  # arg1 - SOAP::SOAPInt
267
- # arg2 - SOAP::SOAPString
268
- class FindStringExact
269
- attr_accessor :arg0
270
- attr_accessor :arg1
390
+ # arg2 - SOAP::SOAPString
391
+
392
+ class FindStringExact
393
+
394
+ attr_accessor :arg0
395
+
396
+ attr_accessor :arg1
397
+
271
398
  attr_accessor :arg2
272
399
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
273
400
  @arg1 = arg1
274
- @arg2 = arg2
275
- end
401
+ @arg2 = arg2
402
+
403
+ end
404
+
276
405
  end
277
406
  # {http:controls.classes.win32.server.sirius.org/}FindStringExactResponse
278
- # m_return - SOAP::SOAPInt
279
- class FindStringExactResponse
280
407
  def m_return
281
- @v_return
408
+ # m_return - SOAP::SOAPInt
409
+
410
+ class FindStringExactResponse
411
+ def m_return
412
+ @v_return
413
+
282
414
  end
283
415
 
284
- def m_return=(value) @v_return = value
416
+ def m_return=(value) @v_return = value
417
+
418
+ end
419
+
420
+ def initialize(v_return = nil) @v_return = v_return
421
+
285
422
  end
286
423
 
287
- def initialize(v_return = nil) @v_return = v_return
288
- end
289
424
  end
290
425
  # {http:controls.classes.win32.server.sirius.org/}GetCaretIndex
291
- # arg0 - SOAP::SOAPLong
292
- class GetCaretIndex
426
+ # arg0 - SOAP::SOAPLong
427
+
428
+ class GetCaretIndex
429
+
293
430
  attr_accessor :arg0
294
- def initialize(arg0 = nil) @arg0 = arg0
295
- end
431
+ def initialize(arg0 = nil) @arg0 = arg0
432
+
433
+ end
434
+
296
435
  end
297
436
  # {http:controls.classes.win32.server.sirius.org/}GetCaretIndexResponse
298
- # m_return - SOAP::SOAPInt
299
- class GetCaretIndexResponse
300
437
  def m_return
301
- @v_return
438
+ # m_return - SOAP::SOAPInt
439
+
440
+ class GetCaretIndexResponse
441
+ def m_return
442
+ @v_return
443
+
444
+ end
445
+
446
+ def m_return=(value) @v_return = value
447
+
302
448
  end
303
449
 
304
- def m_return=(value) @v_return = value
450
+ def initialize(v_return = nil) @v_return = v_return
451
+
305
452
  end
306
453
 
307
- def initialize(v_return = nil) @v_return = v_return
308
- end
309
454
  end
310
455
  # {http:controls.classes.win32.server.sirius.org/}GetTextLen
311
456
  # arg0 - SOAP::SOAPLong
312
- # arg1 - SOAP::SOAPInt
313
- class GetTextLen
314
- attr_accessor :arg0
457
+ # arg1 - SOAP::SOAPInt
458
+
459
+ class GetTextLen
460
+
461
+ attr_accessor :arg0
462
+
315
463
  attr_accessor :arg1
316
464
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
317
- @arg1 = arg1
318
- end
465
+ @arg1 = arg1
466
+
467
+ end
468
+
319
469
  end
320
470
  # {http:controls.classes.win32.server.sirius.org/}GetTextLenResponse
321
- # m_return - SOAP::SOAPInt
322
- class GetTextLenResponse
323
471
  def m_return
324
- @v_return
472
+ # m_return - SOAP::SOAPInt
473
+
474
+ class GetTextLenResponse
475
+ def m_return
476
+ @v_return
477
+
478
+ end
479
+
480
+ def m_return=(value) @v_return = value
481
+
325
482
  end
326
483
 
327
- def m_return=(value) @v_return = value
484
+ def initialize(v_return = nil) @v_return = v_return
485
+
328
486
  end
329
487
 
330
- def initialize(v_return = nil) @v_return = v_return
331
- end
332
488
  end
333
489
  # {http:controls.classes.win32.server.sirius.org/}GetTopIndex
334
- # arg0 - SOAP::SOAPLong
335
- class GetTopIndex
490
+ # arg0 - SOAP::SOAPLong
491
+
492
+ class GetTopIndex
493
+
336
494
  attr_accessor :arg0
337
- def initialize(arg0 = nil) @arg0 = arg0
338
- end
495
+ def initialize(arg0 = nil) @arg0 = arg0
496
+
497
+ end
498
+
339
499
  end
340
500
  # {http:controls.classes.win32.server.sirius.org/}GetTopIndexResponse
341
- # m_return - SOAP::SOAPInt
342
- class GetTopIndexResponse
343
501
  def m_return
344
- @v_return
502
+ # m_return - SOAP::SOAPInt
503
+
504
+ class GetTopIndexResponse
505
+ def m_return
506
+ @v_return
507
+
508
+ end
509
+
510
+ def m_return=(value) @v_return = value
511
+
345
512
  end
346
513
 
347
- def m_return=(value) @v_return = value
514
+ def initialize(v_return = nil) @v_return = v_return
515
+
348
516
  end
349
517
 
350
- def initialize(v_return = nil) @v_return = v_return
351
- end
352
518
  end
353
519
  # {http:controls.classes.win32.server.sirius.org/}GetHorizontalExtent
354
- # arg0 - SOAP::SOAPLong
355
- class GetHorizontalExtent
520
+ # arg0 - SOAP::SOAPLong
521
+
522
+ class GetHorizontalExtent
523
+
356
524
  attr_accessor :arg0
357
- def initialize(arg0 = nil) @arg0 = arg0
358
- end
525
+ def initialize(arg0 = nil) @arg0 = arg0
526
+
527
+ end
528
+
359
529
  end
360
530
  # {http:controls.classes.win32.server.sirius.org/}GetHorizontalExtentResponse
361
- # m_return - SOAP::SOAPInt
362
- class GetHorizontalExtentResponse
363
531
  def m_return
364
- @v_return
532
+ # m_return - SOAP::SOAPInt
533
+
534
+ class GetHorizontalExtentResponse
535
+ def m_return
536
+ @v_return
537
+
365
538
  end
366
539
 
367
- def m_return=(value) @v_return = value
540
+ def m_return=(value) @v_return = value
541
+
542
+ end
543
+
544
+ def initialize(v_return = nil) @v_return = v_return
545
+
368
546
  end
369
547
 
370
- def initialize(v_return = nil) @v_return = v_return
371
- end
372
548
  end
373
549
  # {http:controls.classes.win32.server.sirius.org/}GetSel
374
550
  # arg0 - SOAP::SOAPLong
375
- # arg1 - SOAP::SOAPInt
376
- class GetSel
377
- attr_accessor :arg0
551
+ # arg1 - SOAP::SOAPInt
552
+
553
+ class GetSel
554
+
555
+ attr_accessor :arg0
556
+
378
557
  attr_accessor :arg1
379
558
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
380
- @arg1 = arg1
381
- end
559
+ @arg1 = arg1
560
+
561
+ end
562
+
382
563
  end
383
564
  # {http:controls.classes.win32.server.sirius.org/}GetSelResponse
384
- # m_return - SOAP::SOAPInt
385
- class GetSelResponse
386
565
  def m_return
387
- @v_return
566
+ # m_return - SOAP::SOAPInt
567
+
568
+ class GetSelResponse
569
+ def m_return
570
+ @v_return
571
+
388
572
  end
389
573
 
390
- def m_return=(value) @v_return = value
574
+ def m_return=(value) @v_return = value
575
+
576
+ end
577
+
578
+ def initialize(v_return = nil) @v_return = v_return
579
+
391
580
  end
392
581
 
393
- def initialize(v_return = nil) @v_return = v_return
394
- end
395
582
  end
396
583
 
397
584
  end; end; end; end; end