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.
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 'TabControlServiceDriver.rb'
2
+ require 'sirius/win32/core/tabcontrol/TabControlServiceDriver.rb'
3
3
 
4
4
  Sirius::Client::Win32::Core::Tabcontrol
5
5
 
@@ -1,80 +1,81 @@
1
- require 'TabControlService.rb'
2
- require 'TabControlServiceMappingRegistry.rb'
1
+ require 'sirius/win32/core/tabcontrol/TabControlService.rb'
2
+ require 'sirius/win32/core/tabcontrol/TabControlServiceMappingRegistry.rb'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Sirius::Client::Win32::Core::Tabcontrol
6
6
 
7
7
 
8
- class TabControl < ::SOAP::RPC::Driver DefaultEndpointUrl = "http:localhost:21212/win32/tabcontrol"
8
+ class TabControl < ::SOAP::RPC::Driver
9
+ DefaultEndpointUrl = "http:localhost:21212/win32/tabcontrol"
9
10
  Methods = [
10
11
  [ "",
11
12
  "getCurSel",
12
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurSel"]],
13
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurSelResponse"]] ],
13
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurSel"]],
14
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurSelResponse"]] ],
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
  "setCurSel",
20
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurSel"]],
21
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurSelResponse"]] ],
21
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurSel"]],
22
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurSelResponse"]] ],
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
  "getItemCount",
28
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemCount"]],
29
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemCountResponse"]] ],
29
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemCount"]],
30
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemCountResponse"]] ],
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
  "getCurFocus",
36
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurFocus"]],
37
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurFocusResponse"]] ],
37
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurFocus"]],
38
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetCurFocusResponse"]] ],
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
  "hitTest",
44
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "HitTest"]],
45
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "HitTestResponse"]] ],
45
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "HitTest"]],
46
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "HitTestResponse"]] ],
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
  "getRowCount",
52
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetRowCount"]],
53
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetRowCountResponse"]] ],
53
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetRowCount"]],
54
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetRowCountResponse"]] ],
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
  "getItemRect",
60
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemRect"]],
61
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemRectResponse"]] ],
61
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemRect"]],
62
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemRectResponse"]] ],
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
  "setCurFocus",
68
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurFocus"]],
69
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurFocusResponse"]] ],
69
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurFocus"]],
70
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "SetCurFocusResponse"]] ],
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
  "getItem",
76
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItem"]],
77
- [:out, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemResponse"]] ],
77
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItem"]],
78
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:controls.classes.win32.server.sirius.org/", "GetItemResponse"]] ],
78
79
  { :request_style => :document, :request_use => :literal,
79
80
  :response_style => :document, :response_use => :literal,
80
81
  :faults => {} }
@@ -1,4 +1,4 @@
1
- require 'TabControlService.rb'
1
+ require 'sirius/win32/core/tabcontrol/TabControlService.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 Tabcontrol
@@ -4,8 +4,11 @@ module Sirius; module Client; module Win32; module Core; module Utils
4
4
 
5
5
  # {http:win32.server.sirius.org/}searchSameThreadWindow
6
6
  # arg0 - SOAP::SOAPLong
7
- # arg1 - Sirius::Client::Win32::Core::Utils::Win32Locator
8
7
  class SearchSameThreadWindow
9
- attr_accessor :arg0
10
8
  attr_accessor :arg1
9
+ # arg1 - Sirius::Client::Win32::Core::Utils::Win32Locator
10
+ class SearchSameThreadWindow
11
+
12
+ attr_accessor :arg0
13
+ attr_accessor :arg1
11
14
 
12
15
  def initialize(arg0 = nil, arg1 = nil)
13
16
  @arg0 = arg0
@@ -18,47 +21,71 @@ module Sirius; module Client; module Win32; module Core; module Utils
18
21
  # hwnd - SOAP::SOAPLong
19
22
  # index - SOAP::SOAPInt
20
23
  # parent - SOAP::SOAPLong
21
- # winClass - SOAP::SOAPString
22
24
  class Win32Locator
23
- attr_accessor :caption
24
25
  attr_accessor :hwnd
25
26
  attr_accessor :index
26
27
  attr_accessor :parent
27
28
  attr_accessor :winClass
29
+ # winClass - SOAP::SOAPString
30
+ class Win32Locator
31
+
32
+ attr_accessor :caption
33
+ attr_accessor :hwnd
34
+ attr_accessor :index
35
+ attr_accessor :parent
36
+ attr_accessor :winClass
28
37
 
29
38
  def initialize(caption = nil, hwnd = nil, index = nil, parent = nil, winClass = nil)
30
39
  @caption = caption
31
40
  @hwnd = hwnd
32
41
  @index = index
33
42
  @parent = parent
34
- @winClass = winClass
35
- end
43
+ @winClass = winClass
44
+
45
+ end
46
+
36
47
  end
37
48
  # {http:win32.server.sirius.org/}searchSameThreadWindowResponse
38
- # m_return - SOAP::SOAPLong
39
- class SearchSameThreadWindowResponse
40
49
  def m_return
41
- @v_return
50
+ # m_return - SOAP::SOAPLong
51
+
52
+ class SearchSameThreadWindowResponse
53
+ def m_return
54
+ @v_return
55
+
56
+ end
57
+
58
+ def m_return=(value) @v_return = value
59
+
42
60
  end
43
61
 
44
- def m_return=(value) @v_return = value
62
+ def initialize(v_return = nil) @v_return = v_return
63
+
45
64
  end
46
65
 
47
- def initialize(v_return = nil) @v_return = v_return
48
- end
49
66
  end
50
67
  # {http:win32.server.sirius.org/}searchWindow
51
- # arg0 - Sirius::Client::Win32::Core::Utils::Win32Locator
52
- class SearchWindow
68
+ # arg0 - Sirius::Client::Win32::Core::Utils::Win32Locator
69
+
70
+ class SearchWindow
71
+
53
72
  attr_accessor :arg0
54
- def initialize(arg0 = nil) @arg0 = arg0
55
- end
73
+ def initialize(arg0 = nil) @arg0 = arg0
74
+
75
+ end
76
+
56
77
  end
57
78
  # {http:win32.server.sirius.org/}searchWindowResponse
58
- # m_return - SOAP::SOAPLong
59
- class SearchWindowResponse
60
79
  def m_return
61
- @v_return
80
+ # m_return - SOAP::SOAPLong
81
+
82
+ class SearchWindowResponse
83
+ def m_return
84
+ @v_return
85
+
62
86
  end
63
87
 
64
- def m_return=(value) @v_return = value
88
+ def m_return=(value) @v_return = value
89
+
90
+ end
91
+
92
+ def initialize(v_return = nil) @v_return = v_return
93
+
65
94
  end
66
95
 
67
- def initialize(v_return = nil) @v_return = v_return
68
- end
69
96
  end
70
97
 
71
98
  end; end; end; end; end
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- require 'Win32UtilsServiceDriver.rb'
2
+ require 'sirius/win32/core/utils/Win32UtilsServiceDriver.rb'
3
3
 
4
4
  Sirius::Client::Win32::Core::Utils
5
5
 
@@ -1,24 +1,25 @@
1
- require 'Win32UtilsService.rb'
2
- require 'Win32UtilsServiceMappingRegistry.rb'
1
+ require 'sirius/win32/core/utils/Win32UtilsService.rb'
2
+ require 'sirius/win32/core/utils/Win32UtilsServiceMappingRegistry.rb'
3
3
  require 'soap/rpc/driver'
4
4
 
5
5
  module Sirius::Client::Win32::Core::Utils
6
6
 
7
7
 
8
- class Win32Utils < ::SOAP::RPC::Driver DefaultEndpointUrl = "http:localhost:21212/win32/utils"
8
+ class Win32Utils < ::SOAP::RPC::Driver
9
+ DefaultEndpointUrl = "http:localhost:21212/win32/utils"
9
10
  Methods = [
10
11
  [ "",
11
12
  "searchWindow",
12
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:win32.server.sirius.org/", "searchWindow"]],
13
- [:out, "parameters", ["::SOAP::SOAPElement", "http:win32.server.sirius.org/", "searchWindowResponse"]] ],
13
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:win32.server.sirius.org/", "searchWindow"]],
14
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:win32.server.sirius.org/", "searchWindowResponse"]] ],
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
  "searchSameThreadWindow",
20
- [ [:in, "parameters", ["::SOAP::SOAPElement", "http:win32.server.sirius.org/", "searchSameThreadWindow"]],
21
- [:out, "parameters", ["::SOAP::SOAPElement", "http:win32.server.sirius.org/", "searchSameThreadWindowResponse"]] ],
21
+ [ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http:win32.server.sirius.org/", "searchSameThreadWindow"]],
22
+ [SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http:win32.server.sirius.org/", "searchSameThreadWindowResponse"]] ],
22
23
  { :request_style => :document, :request_use => :literal,
23
24
  :response_style => :document, :response_use => :literal,
24
25
  :faults => {} }
@@ -1,4 +1,4 @@
1
- require 'Win32UtilsService.rb'
1
+ require 'sirius/win32/core/utils/Win32UtilsService.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 Utils
@@ -4,91 +4,138 @@ module Sirius; module Client; module Win32; module Core; module Window
4
4
 
5
5
  # {http://classes.win32.server.sirius.org/}keyUp
6
6
  # arg0 - SOAP::SOAPLong
7
- # arg1 - SOAP::SOAPInt
8
7
  class KeyUp
9
- attr_accessor :arg0
8
+ # arg1 - SOAP::SOAPInt
9
+ class KeyUp
10
+
11
+ attr_accessor :arg0
12
+
10
13
  attr_accessor :arg1
11
14
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
12
- @arg1 = arg1
13
- end
15
+ @arg1 = arg1
16
+
17
+ end
18
+
14
19
  end
15
- # {http://classes.win32.server.sirius.org/}keyUpResponse
16
- class KeyUpResponse
17
20
  def initialize
18
- end
21
+ # {http://classes.win32.server.sirius.org/}keyUpResponse
22
+
23
+ class KeyUpResponse
24
+ def initialize
25
+
26
+ end
27
+
19
28
  end
20
29
  # {http://classes.win32.server.sirius.org/}getSystemMenu
21
30
  # arg0 - SOAP::SOAPLong
22
- # arg1 - SOAP::SOAPBoolean
23
- class GetSystemMenu
24
- attr_accessor :arg0
31
+ # arg1 - SOAP::SOAPBoolean
32
+
33
+ class GetSystemMenu
34
+
35
+ attr_accessor :arg0
36
+
25
37
  attr_accessor :arg1
26
38
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
27
- @arg1 = arg1
28
- end
39
+ @arg1 = arg1
40
+
41
+ end
42
+
29
43
  end
30
44
  # {http://classes.win32.server.sirius.org/}getSystemMenuResponse
31
- # m_return - SOAP::SOAPLong
32
- class GetSystemMenuResponse
33
45
  def m_return
34
- @v_return
46
+ # m_return - SOAP::SOAPLong
47
+
48
+ class GetSystemMenuResponse
49
+ def m_return
50
+ @v_return
51
+
35
52
  end
36
53
 
37
- def m_return=(value) @v_return = value
54
+ def m_return=(value) @v_return = value
55
+
56
+ end
57
+
58
+ def initialize(v_return = nil) @v_return = v_return
59
+
38
60
  end
39
61
 
40
- def initialize(v_return = nil) @v_return = v_return
41
- end
42
62
  end
43
63
  # {http://classes.win32.server.sirius.org/}move
44
64
  # arg0 - SOAP::SOAPLong
45
65
  # arg1 - SOAP::SOAPInt
46
66
  # arg2 - SOAP::SOAPInt
47
67
  # 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
68
+ # arg4 - SOAP::SOAPInt
69
+
70
+ class Move
71
+
72
+ attr_accessor :arg0
73
+
74
+ attr_accessor :arg1
75
+
76
+ attr_accessor :arg2
77
+
78
+ attr_accessor :arg3
79
+
54
80
  attr_accessor :arg4
55
81
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil) @arg0 = arg0
56
82
  @arg1 = arg1
57
83
  @arg2 = arg2
58
84
  @arg3 = arg3
59
- @arg4 = arg4
60
- end
85
+ @arg4 = arg4
86
+
87
+ end
88
+
61
89
  end
62
- # {http://classes.win32.server.sirius.org/}moveResponse
63
- class MoveResponse
64
90
  def initialize
65
- end
91
+ # {http://classes.win32.server.sirius.org/}moveResponse
92
+
93
+ class MoveResponse
94
+ def initialize
95
+
96
+ end
97
+
66
98
  end
67
99
  # {http://classes.win32.server.sirius.org/}getRect
68
- # arg0 - SOAP::SOAPLong
69
- class GetRect
100
+ # arg0 - SOAP::SOAPLong
101
+
102
+ class GetRect
103
+
70
104
  attr_accessor :arg0
71
- def initialize(arg0 = nil) @arg0 = arg0
72
- end
105
+ def initialize(arg0 = nil) @arg0 = arg0
106
+
107
+ end
108
+
73
109
  end
74
110
  # {http://classes.win32.server.sirius.org/}getRectResponse
75
- # m_return - Sirius::Client::Win32::Core::Window::Rect
76
- class GetRectResponse
77
111
  def m_return
78
- @v_return
112
+ # m_return - Sirius::Client::Win32::Core::Window::Rect
113
+
114
+ class GetRectResponse
115
+ def m_return
116
+ @v_return
117
+
79
118
  end
80
119
 
81
- def m_return=(value) @v_return = value
120
+ def m_return=(value) @v_return = value
121
+
122
+ end
123
+
124
+ def initialize(v_return = nil) @v_return = v_return
125
+
82
126
  end
83
127
 
84
- def initialize(v_return = nil) @v_return = v_return
85
- end
86
128
  end
87
129
  # {http://classes.win32.server.sirius.org/}structure
88
130
  # abstract
89
131
  # autoRead - SOAP::SOAPBoolean
90
- # autoWrite - SOAP::SOAPBoolean
91
- class Structure
92
- attr_accessor :autoRead
132
+ # autoWrite - SOAP::SOAPBoolean
133
+
134
+ class Structure
135
+
136
+ attr_accessor :autoRead
137
+
93
138
  attr_accessor :autoWrite
94
139
  def initialize(autoRead = nil, autoWrite = nil) @autoRead = autoRead
95
- @autoWrite = autoWrite
96
- end
140
+ @autoWrite = autoWrite
141
+
142
+ end
143
+
97
144
  end
98
145
  # {http://classes.win32.server.sirius.org/}rect
99
146
  # autoRead - SOAP::SOAPBoolean
@@ -96,21 +143,30 @@ module Sirius; module Client; module Win32; module Core; module Window
96
143
  # left - SOAP::SOAPInt
97
144
  # top - SOAP::SOAPInt
98
145
  # right - SOAP::SOAPInt
99
- # bottom - SOAP::SOAPInt
100
- class Rect < Structure
101
- attr_accessor :autoRead
102
- attr_accessor :autoWrite
103
- attr_accessor :left
104
- attr_accessor :top
105
- attr_accessor :right
146
+ # bottom - SOAP::SOAPInt
147
+
148
+ class Rect < Structure
149
+
150
+ attr_accessor :autoRead
151
+
152
+ attr_accessor :autoWrite
153
+
154
+ attr_accessor :left
155
+
156
+ attr_accessor :top
157
+
158
+ attr_accessor :right
159
+
106
160
  attr_accessor :bottom
107
161
  def initialize(autoRead = nil, autoWrite = nil, left = nil, top = nil, right = nil, bottom = nil) @autoRead = autoRead
108
162
  @autoWrite = autoWrite
109
163
  @left = left
110
164
  @top = top
111
165
  @right = right
112
- @bottom = bottom
113
- end
166
+ @bottom = bottom
167
+
168
+ end
169
+
114
170
  end
115
171
  # {http://classes.win32.server.sirius.org/}windowplacement
116
172
  # autoRead - SOAP::SOAPBoolean
@@ -120,15 +176,24 @@ module Sirius; module Client; module Win32; module Core; module Window
120
176
  # showCmd - SOAP::SOAPInt
121
177
  # ptMinPosition - Sirius::Client::Win32::Core::Window::Point
122
178
  # ptMaxPosition - Sirius::Client::Win32::Core::Window::Point
123
- # rcNormalPosition - Sirius::Client::Win32::Core::Window::Rect
124
- class Windowplacement < Structure
125
- attr_accessor :autoRead
126
- attr_accessor :autoWrite
127
- attr_accessor :length
128
- attr_accessor :flags
129
- attr_accessor :showCmd
130
- attr_accessor :ptMinPosition
131
- attr_accessor :ptMaxPosition
179
+ # rcNormalPosition - Sirius::Client::Win32::Core::Window::Rect
180
+
181
+ class Windowplacement < Structure
182
+
183
+ attr_accessor :autoRead
184
+
185
+ attr_accessor :autoWrite
186
+
187
+ attr_accessor :length
188
+
189
+ attr_accessor :flags
190
+
191
+ attr_accessor :showCmd
192
+
193
+ attr_accessor :ptMinPosition
194
+
195
+ attr_accessor :ptMaxPosition
196
+
132
197
  attr_accessor :rcNormalPosition
133
198
  def initialize(autoRead = nil, autoWrite = nil, length = nil, flags = nil, showCmd = nil, ptMinPosition = nil, ptMaxPosition = nil, rcNormalPosition = nil) @autoRead = autoRead
134
199
  @autoWrite = autoWrite
@@ -137,147 +202,224 @@ module Sirius; module Client; module Win32; module Core; module Window
137
202
  @showCmd = showCmd
138
203
  @ptMinPosition = ptMinPosition
139
204
  @ptMaxPosition = ptMaxPosition
140
- @rcNormalPosition = rcNormalPosition
141
- end
205
+ @rcNormalPosition = rcNormalPosition
206
+
207
+ end
208
+
142
209
  end
143
210
  # {http://classes.win32.server.sirius.org/}point
144
211
  # autoRead - SOAP::SOAPBoolean
145
212
  # autoWrite - SOAP::SOAPBoolean
146
213
  # x - SOAP::SOAPInt
147
- # y - SOAP::SOAPInt
148
- class Point < Structure
149
- attr_accessor :autoRead
150
- attr_accessor :autoWrite
151
- attr_accessor :x
214
+ # y - SOAP::SOAPInt
215
+
216
+ class Point < Structure
217
+
218
+ attr_accessor :autoRead
219
+
220
+ attr_accessor :autoWrite
221
+
222
+ attr_accessor :x
223
+
152
224
  attr_accessor :y
153
225
  def initialize(autoRead = nil, autoWrite = nil, x = nil, y = nil) @autoRead = autoRead
154
226
  @autoWrite = autoWrite
155
227
  @x = x
156
- @y = y
157
- end
228
+ @y = y
229
+
230
+ end
231
+
158
232
  end
159
233
  # {http://classes.win32.server.sirius.org/}moveTo
160
234
  # arg0 - SOAP::SOAPLong
161
235
  # arg1 - SOAP::SOAPInt
162
- # arg2 - SOAP::SOAPInt
163
- class MoveTo
164
- attr_accessor :arg0
165
- attr_accessor :arg1
236
+ # arg2 - SOAP::SOAPInt
237
+
238
+ class MoveTo
239
+
240
+ attr_accessor :arg0
241
+
242
+ attr_accessor :arg1
243
+
166
244
  attr_accessor :arg2
167
245
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
168
246
  @arg1 = arg1
169
- @arg2 = arg2
170
- end
247
+ @arg2 = arg2
248
+
249
+ end
250
+
171
251
  end
172
- # {http://classes.win32.server.sirius.org/}moveToResponse
173
- class MoveToResponse
174
252
  def initialize
175
- end
253
+ # {http://classes.win32.server.sirius.org/}moveToResponse
254
+
255
+ class MoveToResponse
256
+ def initialize
257
+
258
+ end
259
+
176
260
  end
177
261
  # {http://classes.win32.server.sirius.org/}isNormal
178
- # arg0 - SOAP::SOAPLong
179
- class IsNormal
262
+ # arg0 - SOAP::SOAPLong
263
+
264
+ class IsNormal
265
+
180
266
  attr_accessor :arg0
181
- def initialize(arg0 = nil) @arg0 = arg0
182
- end
267
+ def initialize(arg0 = nil) @arg0 = arg0
268
+
269
+ end
270
+
183
271
  end
184
272
  # {http://classes.win32.server.sirius.org/}isNormalResponse
185
- # m_return - SOAP::SOAPBoolean
186
- class IsNormalResponse
187
273
  def m_return
188
- @v_return
274
+ # m_return - SOAP::SOAPBoolean
275
+
276
+ class IsNormalResponse
277
+ def m_return
278
+ @v_return
279
+
189
280
  end
190
281
 
191
- def m_return=(value) @v_return = value
282
+ def m_return=(value) @v_return = value
283
+
284
+ end
285
+
286
+ def initialize(v_return = nil) @v_return = v_return
287
+
192
288
  end
193
289
 
194
- def initialize(v_return = nil) @v_return = v_return
195
- end
196
290
  end
197
291
  # {http://classes.win32.server.sirius.org/}isWindow
198
- # arg0 - SOAP::SOAPLong
199
- class IsWindow
292
+ # arg0 - SOAP::SOAPLong
293
+
294
+ class IsWindow
295
+
200
296
  attr_accessor :arg0
201
- def initialize(arg0 = nil) @arg0 = arg0
202
- end
297
+ def initialize(arg0 = nil) @arg0 = arg0
298
+
299
+ end
300
+
203
301
  end
204
302
  # {http://classes.win32.server.sirius.org/}isWindowResponse
205
- # m_return - SOAP::SOAPBoolean
206
- class IsWindowResponse
207
303
  def m_return
208
- @v_return
304
+ # m_return - SOAP::SOAPBoolean
305
+
306
+ class IsWindowResponse
307
+ def m_return
308
+ @v_return
309
+
310
+ end
311
+
312
+ def m_return=(value) @v_return = value
313
+
209
314
  end
210
315
 
211
- def m_return=(value) @v_return = value
316
+ def initialize(v_return = nil) @v_return = v_return
317
+
212
318
  end
213
319
 
214
- def initialize(v_return = nil) @v_return = v_return
215
- end
216
320
  end
217
321
  # {http://classes.win32.server.sirius.org/}isVisible
218
- # arg0 - SOAP::SOAPLong
219
- class IsVisible
322
+ # arg0 - SOAP::SOAPLong
323
+
324
+ class IsVisible
325
+
220
326
  attr_accessor :arg0
221
- def initialize(arg0 = nil) @arg0 = arg0
222
- end
327
+ def initialize(arg0 = nil) @arg0 = arg0
328
+
329
+ end
330
+
223
331
  end
224
332
  # {http://classes.win32.server.sirius.org/}isVisibleResponse
225
- # m_return - SOAP::SOAPBoolean
226
- class IsVisibleResponse
227
333
  def m_return
228
- @v_return
334
+ # m_return - SOAP::SOAPBoolean
335
+
336
+ class IsVisibleResponse
337
+ def m_return
338
+ @v_return
339
+
229
340
  end
230
341
 
231
- def m_return=(value) @v_return = value
342
+ def m_return=(value) @v_return = value
343
+
344
+ end
345
+
346
+ def initialize(v_return = nil) @v_return = v_return
347
+
232
348
  end
233
349
 
234
- def initialize(v_return = nil) @v_return = v_return
235
- end
236
350
  end
237
351
  # {http://classes.win32.server.sirius.org/}activate
238
- # arg0 - SOAP::SOAPLong
239
- class Activate
352
+ # arg0 - SOAP::SOAPLong
353
+
354
+ class Activate
355
+
240
356
  attr_accessor :arg0
241
- def initialize(arg0 = nil) @arg0 = arg0
242
- end
357
+ def initialize(arg0 = nil) @arg0 = arg0
358
+
359
+ end
360
+
243
361
  end
244
- # {http://classes.win32.server.sirius.org/}activateResponse
245
- class ActivateResponse
246
362
  def initialize
247
- end
363
+ # {http://classes.win32.server.sirius.org/}activateResponse
364
+
365
+ class ActivateResponse
366
+ def initialize
367
+
368
+ end
369
+
248
370
  end
249
371
  # {http://classes.win32.server.sirius.org/}getText
250
- # arg0 - SOAP::SOAPLong
251
- class GetText
372
+ # arg0 - SOAP::SOAPLong
373
+
374
+ class GetText
375
+
252
376
  attr_accessor :arg0
253
- def initialize(arg0 = nil) @arg0 = arg0
254
- end
377
+ def initialize(arg0 = nil) @arg0 = arg0
378
+
379
+ end
380
+
255
381
  end
256
382
  # {http://classes.win32.server.sirius.org/}getTextResponse
257
- # m_return - SOAP::SOAPString
258
- class GetTextResponse
259
383
  def m_return
260
- @v_return
384
+ # m_return - SOAP::SOAPString
385
+
386
+ class GetTextResponse
387
+ def m_return
388
+ @v_return
389
+
261
390
  end
262
391
 
263
- def m_return=(value) @v_return = value
392
+ def m_return=(value) @v_return = value
393
+
394
+ end
395
+
396
+ def initialize(v_return = nil) @v_return = v_return
397
+
264
398
  end
265
399
 
266
- def initialize(v_return = nil) @v_return = v_return
267
- end
268
400
  end
269
401
  # {http://classes.win32.server.sirius.org/}isMaximized
270
- # arg0 - SOAP::SOAPLong
271
- class IsMaximized
402
+ # arg0 - SOAP::SOAPLong
403
+
404
+ class IsMaximized
405
+
272
406
  attr_accessor :arg0
273
- def initialize(arg0 = nil) @arg0 = arg0
274
- end
407
+ def initialize(arg0 = nil) @arg0 = arg0
408
+
409
+ end
410
+
275
411
  end
276
412
  # {http://classes.win32.server.sirius.org/}isMaximizedResponse
277
- # m_return - SOAP::SOAPBoolean
278
- class IsMaximizedResponse
279
413
  def m_return
280
- @v_return
414
+ # m_return - SOAP::SOAPBoolean
415
+
416
+ class IsMaximizedResponse
417
+ def m_return
418
+ @v_return
419
+
281
420
  end
282
421
 
283
- def m_return=(value) @v_return = value
422
+ def m_return=(value) @v_return = value
423
+
424
+ end
425
+
426
+ def initialize(v_return = nil) @v_return = v_return
427
+
284
428
  end
285
429
 
286
- def initialize(v_return = nil) @v_return = v_return
287
- end
288
430
  end
289
431
  # {http://classes.win32.server.sirius.org/}click
290
432
  # arg0 - SOAP::SOAPLong
@@ -286,14 +428,22 @@ module Sirius; module Client; module Win32; module Core; module Window
286
428
  # arg3 - SOAP::SOAPInt
287
429
  # arg4 - SOAP::SOAPBoolean
288
430
  # arg5 - SOAP::SOAPBoolean
289
- # arg6 - SOAP::SOAPBoolean
290
- class Click
291
- attr_accessor :arg0
292
- attr_accessor :arg1
293
- attr_accessor :arg2
294
- attr_accessor :arg3
295
- attr_accessor :arg4
296
- attr_accessor :arg5
431
+ # arg6 - SOAP::SOAPBoolean
432
+
433
+ class Click
434
+
435
+ attr_accessor :arg0
436
+
437
+ attr_accessor :arg1
438
+
439
+ attr_accessor :arg2
440
+
441
+ attr_accessor :arg3
442
+
443
+ attr_accessor :arg4
444
+
445
+ attr_accessor :arg5
446
+
297
447
  attr_accessor :arg6
298
448
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
299
449
  @arg1 = arg1
@@ -301,141 +451,222 @@ module Sirius; module Client; module Win32; module Core; module Window
301
451
  @arg3 = arg3
302
452
  @arg4 = arg4
303
453
  @arg5 = arg5
304
- @arg6 = arg6
305
- end
454
+ @arg6 = arg6
455
+
456
+ end
457
+
306
458
  end
307
- # {http://classes.win32.server.sirius.org/}clickResponse
308
- class ClickResponse
309
459
  def initialize
310
- end
460
+ # {http://classes.win32.server.sirius.org/}clickResponse
461
+
462
+ class ClickResponse
463
+ def initialize
464
+
465
+ end
466
+
311
467
  end
312
468
  # {http://classes.win32.server.sirius.org/}close
313
- # arg0 - SOAP::SOAPLong
314
- class Close
469
+ # arg0 - SOAP::SOAPLong
470
+
471
+ class Close
472
+
315
473
  attr_accessor :arg0
316
- def initialize(arg0 = nil) @arg0 = arg0
317
- end
474
+ def initialize(arg0 = nil) @arg0 = arg0
475
+
476
+ end
477
+
318
478
  end
319
- # {http://classes.win32.server.sirius.org/}closeResponse
320
- class CloseResponse
321
479
  def initialize
322
- end
480
+ # {http://classes.win32.server.sirius.org/}closeResponse
481
+
482
+ class CloseResponse
483
+ def initialize
484
+
485
+ end
486
+
323
487
  end
324
488
  # {http://classes.win32.server.sirius.org/}keyDown
325
489
  # arg0 - SOAP::SOAPLong
326
- # arg1 - SOAP::SOAPInt
327
- class KeyDown
328
- attr_accessor :arg0
490
+ # arg1 - SOAP::SOAPInt
491
+
492
+ class KeyDown
493
+
494
+ attr_accessor :arg0
495
+
329
496
  attr_accessor :arg1
330
497
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
331
- @arg1 = arg1
332
- end
498
+ @arg1 = arg1
499
+
500
+ end
501
+
333
502
  end
334
- # {http://classes.win32.server.sirius.org/}keyDownResponse
335
- class KeyDownResponse
336
503
  def initialize
337
- end
504
+ # {http://classes.win32.server.sirius.org/}keyDownResponse
505
+
506
+ class KeyDownResponse
507
+ def initialize
508
+
509
+ end
510
+
338
511
  end
339
512
  # {http://classes.win32.server.sirius.org/}keyPress
340
513
  # arg0 - SOAP::SOAPLong
341
- # arg1 - SOAP::SOAPInt
342
- class KeyPress
343
- attr_accessor :arg0
514
+ # arg1 - SOAP::SOAPInt
515
+
516
+ class KeyPress
517
+
518
+ attr_accessor :arg0
519
+
344
520
  attr_accessor :arg1
345
521
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
346
- @arg1 = arg1
347
- end
522
+ @arg1 = arg1
523
+
524
+ end
525
+
348
526
  end
349
- # {http://classes.win32.server.sirius.org/}keyPressResponse
350
- class KeyPressResponse
351
527
  def initialize
352
- end
528
+ # {http://classes.win32.server.sirius.org/}keyPressResponse
529
+
530
+ class KeyPressResponse
531
+ def initialize
532
+
533
+ end
534
+
353
535
  end
354
536
  # {http://classes.win32.server.sirius.org/}isMinimized
355
- # arg0 - SOAP::SOAPLong
356
- class IsMinimized
537
+ # arg0 - SOAP::SOAPLong
538
+
539
+ class IsMinimized
540
+
357
541
  attr_accessor :arg0
358
- def initialize(arg0 = nil) @arg0 = arg0
359
- end
542
+ def initialize(arg0 = nil) @arg0 = arg0
543
+
544
+ end
545
+
360
546
  end
361
547
  # {http://classes.win32.server.sirius.org/}isMinimizedResponse
362
- # m_return - SOAP::SOAPBoolean
363
- class IsMinimizedResponse
364
548
  def m_return
365
- @v_return
549
+ # m_return - SOAP::SOAPBoolean
550
+
551
+ class IsMinimizedResponse
552
+ def m_return
553
+ @v_return
554
+
366
555
  end
367
556
 
368
- def m_return=(value) @v_return = value
557
+ def m_return=(value) @v_return = value
558
+
559
+ end
560
+
561
+ def initialize(v_return = nil) @v_return = v_return
562
+
369
563
  end
370
564
 
371
- def initialize(v_return = nil) @v_return = v_return
372
- end
373
565
  end
374
566
  # {http://classes.win32.server.sirius.org/}getMenu
375
- # arg0 - SOAP::SOAPLong
376
- class GetMenu
567
+ # arg0 - SOAP::SOAPLong
568
+
569
+ class GetMenu
570
+
377
571
  attr_accessor :arg0
378
- def initialize(arg0 = nil) @arg0 = arg0
379
- end
572
+ def initialize(arg0 = nil) @arg0 = arg0
573
+
574
+ end
575
+
380
576
  end
381
577
  # {http://classes.win32.server.sirius.org/}getMenuResponse
382
- # m_return - SOAP::SOAPLong
383
- class GetMenuResponse
384
578
  def m_return
385
- @v_return
579
+ # m_return - SOAP::SOAPLong
580
+
581
+ class GetMenuResponse
582
+ def m_return
583
+ @v_return
584
+
386
585
  end
387
586
 
388
- def m_return=(value) @v_return = value
587
+ def m_return=(value) @v_return = value
588
+
589
+ end
590
+
591
+ def initialize(v_return = nil) @v_return = v_return
592
+
389
593
  end
390
594
 
391
- def initialize(v_return = nil) @v_return = v_return
392
- end
393
595
  end
394
596
  # {http://classes.win32.server.sirius.org/}maximize
395
- # arg0 - SOAP::SOAPLong
396
- class Maximize
597
+ # arg0 - SOAP::SOAPLong
598
+
599
+ class Maximize
600
+
397
601
  attr_accessor :arg0
398
- def initialize(arg0 = nil) @arg0 = arg0
399
- end
602
+ def initialize(arg0 = nil) @arg0 = arg0
603
+
604
+ end
605
+
400
606
  end
401
- # {http://classes.win32.server.sirius.org/}maximizeResponse
402
- class MaximizeResponse
403
607
  def initialize
404
- end
608
+ # {http://classes.win32.server.sirius.org/}maximizeResponse
609
+
610
+ class MaximizeResponse
611
+ def initialize
612
+
613
+ end
614
+
405
615
  end
406
616
  # {http://classes.win32.server.sirius.org/}getWindowPlacement
407
617
  # arg0 - SOAP::SOAPLong
408
- # arg1 - Sirius::Client::Win32::Core::Window::Windowplacement
409
- class GetWindowPlacement
410
- attr_accessor :arg0
618
+ # arg1 - Sirius::Client::Win32::Core::Window::Windowplacement
619
+
620
+ class GetWindowPlacement
621
+
622
+ attr_accessor :arg0
623
+
411
624
  attr_accessor :arg1
412
625
  def initialize(arg0 = nil, arg1 = nil) @arg0 = arg0
413
- @arg1 = arg1
414
- end
626
+ @arg1 = arg1
627
+
628
+ end
629
+
415
630
  end
416
631
  # {http://classes.win32.server.sirius.org/}getWindowPlacementResponse
417
- # m_return - SOAP::SOAPBoolean
418
- class GetWindowPlacementResponse
419
632
  def m_return
420
- @v_return
633
+ # m_return - SOAP::SOAPBoolean
634
+
635
+ class GetWindowPlacementResponse
636
+ def m_return
637
+ @v_return
638
+
421
639
  end
422
640
 
423
- def m_return=(value) @v_return = value
641
+ def m_return=(value) @v_return = value
642
+
643
+ end
644
+
645
+ def initialize(v_return = nil) @v_return = v_return
646
+
424
647
  end
425
648
 
426
- def initialize(v_return = nil) @v_return = v_return
427
- end
428
649
  end
429
650
  # {http://classes.win32.server.sirius.org/}getClientRect
430
- # arg0 - SOAP::SOAPLong
431
- class GetClientRect
651
+ # arg0 - SOAP::SOAPLong
652
+
653
+ class GetClientRect
654
+
432
655
  attr_accessor :arg0
433
- def initialize(arg0 = nil) @arg0 = arg0
434
- end
656
+ def initialize(arg0 = nil) @arg0 = arg0
657
+
658
+ end
659
+
435
660
  end
436
661
  # {http://classes.win32.server.sirius.org/}getClientRectResponse
437
- # m_return - Sirius::Client::Win32::Core::Window::Rect
438
- class GetClientRectResponse
439
662
  def m_return
440
- @v_return
663
+ # m_return - Sirius::Client::Win32::Core::Window::Rect
664
+
665
+ class GetClientRectResponse
666
+ def m_return
667
+ @v_return
668
+
669
+ end
670
+
671
+ def m_return=(value) @v_return = value
672
+
441
673
  end
442
674
 
443
- def m_return=(value) @v_return = value
675
+ def initialize(v_return = nil) @v_return = v_return
676
+
444
677
  end
445
678
 
446
- def initialize(v_return = nil) @v_return = v_return
447
- end
448
679
  end
449
680
  # {http://classes.win32.server.sirius.org/}mouseDown
450
681
  # arg0 - SOAP::SOAPLong
@@ -444,14 +675,22 @@ module Sirius; module Client; module Win32; module Core; module Window
444
675
  # arg3 - SOAP::SOAPInt
445
676
  # arg4 - SOAP::SOAPBoolean
446
677
  # arg5 - SOAP::SOAPBoolean
447
- # arg6 - SOAP::SOAPBoolean
448
- class MouseDown
449
- attr_accessor :arg0
450
- attr_accessor :arg1
451
- attr_accessor :arg2
452
- attr_accessor :arg3
453
- attr_accessor :arg4
454
- attr_accessor :arg5
678
+ # arg6 - SOAP::SOAPBoolean
679
+
680
+ class MouseDown
681
+
682
+ attr_accessor :arg0
683
+
684
+ attr_accessor :arg1
685
+
686
+ attr_accessor :arg2
687
+
688
+ attr_accessor :arg3
689
+
690
+ attr_accessor :arg4
691
+
692
+ attr_accessor :arg5
693
+
455
694
  attr_accessor :arg6
456
695
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
457
696
  @arg1 = arg1
@@ -459,60 +698,95 @@ module Sirius; module Client; module Win32; module Core; module Window
459
698
  @arg3 = arg3
460
699
  @arg4 = arg4
461
700
  @arg5 = arg5
462
- @arg6 = arg6
463
- end
701
+ @arg6 = arg6
702
+
703
+ end
704
+
464
705
  end
465
- # {http://classes.win32.server.sirius.org/}mouseDownResponse
466
- class MouseDownResponse
467
706
  def initialize
468
- end
707
+ # {http://classes.win32.server.sirius.org/}mouseDownResponse
708
+
709
+ class MouseDownResponse
710
+ def initialize
711
+
712
+ end
713
+
469
714
  end
470
715
  # {http://classes.win32.server.sirius.org/}sizeTo
471
716
  # arg0 - SOAP::SOAPLong
472
717
  # arg1 - SOAP::SOAPInt
473
- # arg2 - SOAP::SOAPInt
474
- class SizeTo
475
- attr_accessor :arg0
476
- attr_accessor :arg1
718
+ # arg2 - SOAP::SOAPInt
719
+
720
+ class SizeTo
721
+
722
+ attr_accessor :arg0
723
+
724
+ attr_accessor :arg1
725
+
477
726
  attr_accessor :arg2
478
727
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil) @arg0 = arg0
479
728
  @arg1 = arg1
480
- @arg2 = arg2
481
- end
729
+ @arg2 = arg2
730
+
731
+ end
732
+
482
733
  end
483
- # {http://classes.win32.server.sirius.org/}sizeToResponse
484
- class SizeToResponse
485
734
  def initialize
486
- end
735
+ # {http://classes.win32.server.sirius.org/}sizeToResponse
736
+
737
+ class SizeToResponse
738
+ def initialize
739
+
740
+ end
741
+
487
742
  end
488
743
  # {http://classes.win32.server.sirius.org/}restore
489
- # arg0 - SOAP::SOAPLong
490
- class Restore
744
+ # arg0 - SOAP::SOAPLong
745
+
746
+ class Restore
747
+
491
748
  attr_accessor :arg0
492
- def initialize(arg0 = nil) @arg0 = arg0
493
- end
749
+ def initialize(arg0 = nil) @arg0 = arg0
750
+
751
+ end
752
+
494
753
  end
495
- # {http://classes.win32.server.sirius.org/}restoreResponse
496
- class RestoreResponse
497
754
  def initialize
498
- end
755
+ # {http://classes.win32.server.sirius.org/}restoreResponse
756
+
757
+ class RestoreResponse
758
+ def initialize
759
+
760
+ end
761
+
499
762
  end
500
763
  # {http://classes.win32.server.sirius.org/}start
501
764
  # arg0 - SOAP::SOAPLong
502
765
  # arg1 - SOAP::SOAPString
503
766
  # arg2 - SOAP::SOAPString
504
- # arg3 - SOAP::SOAPString
505
- class Start
506
- attr_accessor :arg0
507
- attr_accessor :arg1
508
- attr_accessor :arg2
767
+ # arg3 - SOAP::SOAPString
768
+
769
+ class Start
770
+
771
+ attr_accessor :arg0
772
+
773
+ attr_accessor :arg1
774
+
775
+ attr_accessor :arg2
776
+
509
777
  attr_accessor :arg3
510
778
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil) @arg0 = arg0
511
779
  @arg1 = arg1
512
780
  @arg2 = arg2
513
- @arg3 = arg3
514
- end
781
+ @arg3 = arg3
782
+
783
+ end
784
+
515
785
  end
516
- # {http://classes.win32.server.sirius.org/}startResponse
517
- class StartResponse
518
786
  def initialize
519
- end
787
+ # {http://classes.win32.server.sirius.org/}startResponse
788
+
789
+ class StartResponse
790
+ def initialize
791
+
792
+ end
793
+
520
794
  end
521
795
  # {http://classes.win32.server.sirius.org/}mouseUp
522
796
  # arg0 - SOAP::SOAPLong
@@ -521,14 +795,22 @@ module Sirius; module Client; module Win32; module Core; module Window
521
795
  # arg3 - SOAP::SOAPInt
522
796
  # arg4 - SOAP::SOAPBoolean
523
797
  # arg5 - SOAP::SOAPBoolean
524
- # arg6 - SOAP::SOAPBoolean
525
- class MouseUp
526
- attr_accessor :arg0
527
- attr_accessor :arg1
528
- attr_accessor :arg2
529
- attr_accessor :arg3
530
- attr_accessor :arg4
531
- attr_accessor :arg5
798
+ # arg6 - SOAP::SOAPBoolean
799
+
800
+ class MouseUp
801
+
802
+ attr_accessor :arg0
803
+
804
+ attr_accessor :arg1
805
+
806
+ attr_accessor :arg2
807
+
808
+ attr_accessor :arg3
809
+
810
+ attr_accessor :arg4
811
+
812
+ attr_accessor :arg5
813
+
532
814
  attr_accessor :arg6
533
815
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
534
816
  @arg1 = arg1
@@ -536,61 +818,95 @@ module Sirius; module Client; module Win32; module Core; module Window
536
818
  @arg3 = arg3
537
819
  @arg4 = arg4
538
820
  @arg5 = arg5
539
- @arg6 = arg6
540
- end
821
+ @arg6 = arg6
822
+
823
+ end
824
+
541
825
  end
542
- # {http://classes.win32.server.sirius.org/}mouseUpResponse
543
- class MouseUpResponse
544
826
  def initialize
545
- end
827
+ # {http://classes.win32.server.sirius.org/}mouseUpResponse
828
+
829
+ class MouseUpResponse
830
+ def initialize
831
+
832
+ end
833
+
546
834
  end
547
835
  # {http://classes.win32.server.sirius.org/}minimize
548
- # arg0 - SOAP::SOAPLong
549
- class Minimize
836
+ # arg0 - SOAP::SOAPLong
837
+
838
+ class Minimize
839
+
550
840
  attr_accessor :arg0
551
- def initialize(arg0 = nil) @arg0 = arg0
552
- end
841
+ def initialize(arg0 = nil) @arg0 = arg0
842
+
843
+ end
844
+
553
845
  end
554
- # {http://classes.win32.server.sirius.org/}minimizeResponse
555
- class MinimizeResponse
556
846
  def initialize
557
- end
847
+ # {http://classes.win32.server.sirius.org/}minimizeResponse
848
+
849
+ class MinimizeResponse
850
+ def initialize
851
+
852
+ end
853
+
558
854
  end
559
855
  # {http://classes.win32.server.sirius.org/}isEnabled
560
- # arg0 - SOAP::SOAPLong
561
- class IsEnabled
856
+ # arg0 - SOAP::SOAPLong
857
+
858
+ class IsEnabled
859
+
562
860
  attr_accessor :arg0
563
- def initialize(arg0 = nil) @arg0 = arg0
564
- end
861
+ def initialize(arg0 = nil) @arg0 = arg0
862
+
863
+ end
864
+
565
865
  end
566
866
  # {http://classes.win32.server.sirius.org/}isEnabledResponse
567
- # m_return - SOAP::SOAPBoolean
568
- class IsEnabledResponse
569
867
  def m_return
570
- @v_return
868
+ # m_return - SOAP::SOAPBoolean
869
+
870
+ class IsEnabledResponse
871
+ def m_return
872
+ @v_return
873
+
571
874
  end
572
875
 
573
- def m_return=(value) @v_return = value
876
+ def m_return=(value) @v_return = value
877
+
878
+ end
879
+
880
+ def initialize(v_return = nil) @v_return = v_return
881
+
574
882
  end
575
883
 
576
- def initialize(v_return = nil) @v_return = v_return
577
- end
578
884
  end
579
885
  # {http://classes.win32.server.sirius.org/}isUnicode
580
- # arg0 - SOAP::SOAPLong
581
- class IsUnicode
886
+ # arg0 - SOAP::SOAPLong
887
+
888
+ class IsUnicode
889
+
582
890
  attr_accessor :arg0
583
- def initialize(arg0 = nil) @arg0 = arg0
584
- end
891
+ def initialize(arg0 = nil) @arg0 = arg0
892
+
893
+ end
894
+
585
895
  end
586
896
  # {http://classes.win32.server.sirius.org/}isUnicodeResponse
587
- # m_return - SOAP::SOAPBoolean
588
- class IsUnicodeResponse
589
897
  def m_return
590
- @v_return
898
+ # m_return - SOAP::SOAPBoolean
899
+
900
+ class IsUnicodeResponse
901
+ def m_return
902
+ @v_return
903
+
591
904
  end
592
905
 
593
- def m_return=(value) @v_return = value
906
+ def m_return=(value) @v_return = value
907
+
908
+ end
909
+
910
+ def initialize(v_return = nil) @v_return = v_return
911
+
594
912
  end
595
913
 
596
- def initialize(v_return = nil) @v_return = v_return
597
- end
598
914
  end
599
915
  # {http://classes.win32.server.sirius.org/}doubleClick
600
916
  # arg0 - SOAP::SOAPLong
@@ -599,14 +915,22 @@ module Sirius; module Client; module Win32; module Core; module Window
599
915
  # arg3 - SOAP::SOAPInt
600
916
  # arg4 - SOAP::SOAPBoolean
601
917
  # arg5 - SOAP::SOAPBoolean
602
- # arg6 - SOAP::SOAPBoolean
603
- class DoubleClick
604
- attr_accessor :arg0
605
- attr_accessor :arg1
606
- attr_accessor :arg2
607
- attr_accessor :arg3
608
- attr_accessor :arg4
609
- attr_accessor :arg5
918
+ # arg6 - SOAP::SOAPBoolean
919
+
920
+ class DoubleClick
921
+
922
+ attr_accessor :arg0
923
+
924
+ attr_accessor :arg1
925
+
926
+ attr_accessor :arg2
927
+
928
+ attr_accessor :arg3
929
+
930
+ attr_accessor :arg4
931
+
932
+ attr_accessor :arg5
933
+
610
934
  attr_accessor :arg6
611
935
  def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil, arg4 = nil, arg5 = nil, arg6 = nil) @arg0 = arg0
612
936
  @arg1 = arg1
@@ -614,12 +938,18 @@ module Sirius; module Client; module Win32; module Core; module Window
614
938
  @arg3 = arg3
615
939
  @arg4 = arg4
616
940
  @arg5 = arg5
617
- @arg6 = arg6
618
- end
941
+ @arg6 = arg6
942
+
943
+ end
944
+
619
945
  end
620
- # {http://classes.win32.server.sirius.org/}doubleClickResponse
621
- class DoubleClickResponse
622
946
  def initialize
623
- end
947
+ # {http://classes.win32.server.sirius.org/}doubleClickResponse
948
+
949
+ class DoubleClickResponse
950
+ def initialize
951
+
952
+ end
953
+
624
954
  end
625
955
 
626
956
  end; end; end; end; end