rautomation 0.5.1 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.rdoc +14 -0
- data/README.rdoc +1 -1
- data/VERSION +1 -1
- data/ext/IAccessibleDLL/IAccessibleDLL.suo +0 -0
- data/ext/IAccessibleDLL/IAccessibleDLL/IAccessibleDLL.cpp +0 -6
- data/ext/IAccessibleDLL/IAccessibleDLL/IAccessibleDLL.vcxproj +2 -0
- data/ext/IAccessibleDLL/IAccessibleDLL/IAccessibleDLL.vcxproj.filters +3 -0
- data/ext/IAccessibleDLL/IAccessibleDLL/stdafx.h +9 -3
- data/ext/IAccessibleDLL/IAccessibleDLL/table_support.cpp +282 -0
- data/ext/IAccessibleDLL/Release/IAccessibleDLL.dll +0 -0
- data/ext/ListViewExplorer/ListViewExplorer.sln +20 -0
- data/ext/ListViewExplorer/ListViewExplorer.suo +0 -0
- data/ext/ListViewExplorer/ListViewExplorer/ListViewExplorer.cpp +174 -0
- data/ext/ListViewExplorer/ListViewExplorer/ListViewExplorer.vcxproj +95 -0
- data/ext/ListViewExplorer/ListViewExplorer/ListViewExplorer.vcxproj.filters +42 -0
- data/ext/ListViewExplorer/ListViewExplorer/ListViewExplorer.vcxproj.user +3 -0
- data/ext/ListViewExplorer/ListViewExplorer/ReadMe.txt +40 -0
- data/ext/ListViewExplorer/ListViewExplorer/stdafx.cpp +8 -0
- data/ext/ListViewExplorer/ListViewExplorer/stdafx.h +17 -0
- data/ext/ListViewExplorer/ListViewExplorer/table_support.cpp +250 -0
- data/ext/ListViewExplorer/ListViewExplorer/table_support.h +2 -0
- data/ext/ListViewExplorer/ListViewExplorer/targetver.h +8 -0
- data/ext/UiaDll/Release/UiaDll.dll +0 -0
- data/ext/UiaDll/UiaDll.sln +20 -0
- data/ext/UiaDll/UiaDll.suo +0 -0
- data/ext/UiaDll/UiaDll/ReadMe.txt +48 -0
- data/ext/UiaDll/UiaDll/UiaDll.cpp +205 -0
- data/ext/UiaDll/UiaDll/UiaDll.vcxproj +104 -0
- data/ext/UiaDll/UiaDll/UiaDll.vcxproj.filters +42 -0
- data/ext/UiaDll/UiaDll/dllmain.cpp +39 -0
- data/ext/UiaDll/UiaDll/globals.h +3 -0
- data/ext/UiaDll/UiaDll/stdafx.cpp +8 -0
- data/ext/UiaDll/UiaDll/stdafx.h +19 -0
- data/ext/UiaDll/UiaDll/targetver.h +8 -0
- data/ext/WindowsForms/bin/WindowsForms.exe +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms.suo +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/DataEntryForm.Designer.cs +27 -7
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/DataEntryForm.cs +1 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/MainFormWindow.Designer.cs +110 -11
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/bin/Release/WindowsForms.exe +0 -0
- data/lib/rautomation.rb +2 -3
- data/lib/rautomation/adapter/autoit.rb +2 -2
- data/lib/rautomation/adapter/win_ffi.rb +4 -0
- data/lib/rautomation/adapter/win_ffi/button.rb +6 -0
- data/lib/rautomation/adapter/win_ffi/checkbox.rb +7 -0
- data/lib/rautomation/adapter/win_ffi/constants.rb +44 -3
- data/lib/rautomation/adapter/win_ffi/control.rb +36 -3
- data/lib/rautomation/adapter/win_ffi/functions.rb +37 -3
- data/lib/rautomation/adapter/win_ffi/keystroke_converter.rb +67 -0
- data/lib/rautomation/adapter/win_ffi/label.rb +21 -0
- data/lib/rautomation/adapter/win_ffi/list_box.rb +60 -0
- data/lib/rautomation/adapter/win_ffi/locators.rb +0 -1
- data/lib/rautomation/adapter/win_ffi/ms_uia/uia_dll.rb +36 -0
- data/lib/rautomation/adapter/win_ffi/radio.rb +7 -0
- data/lib/rautomation/adapter/win_ffi/select_list.rb +30 -7
- data/lib/rautomation/adapter/win_ffi/table.rb +42 -3
- data/lib/rautomation/adapter/win_ffi/text_field.rb +17 -1
- data/lib/rautomation/adapter/win_ffi/window.rb +47 -8
- data/lib/rautomation/button.rb +5 -0
- data/lib/rautomation/element_collections.rb +8 -5
- data/lib/rautomation/text_field.rb +10 -0
- data/lib/rautomation/window.rb +20 -14
- data/spec/adapter/win_ffi/button_spec.rb +41 -0
- data/spec/adapter/win_ffi/checkbox_spec.rb +19 -0
- data/spec/adapter/win_ffi/keystroke_converter_spec.rb +47 -0
- data/spec/adapter/win_ffi/label_spec.rb +21 -0
- data/spec/adapter/win_ffi/listbox_spec.rb +52 -0
- data/spec/adapter/win_ffi/radio_spec.rb +16 -0
- data/spec/adapter/win_ffi/select_list_spec.rb +29 -4
- data/spec/adapter/win_ffi/table_spec.rb +20 -1
- data/spec/adapter/win_ffi/text_field_spec.rb +23 -0
- data/spec/adapter/win_ffi/window_spec.rb +29 -0
- data/spec/button_spec.rb +1 -0
- data/spec/spec_helper.rb +4 -1
- data/spec/text_field_spec.rb +27 -15
- metadata +52 -34
- data/ext/IAccessibleDLL/Release/IAccessibleDLL.exp +0 -0
- data/ext/IAccessibleDLL/Release/IAccessibleDLL.lib +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/bin/Debug/WindowsForms.exe +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/bin/Debug/WindowsForms.pdb +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/bin/Debug/WindowsForms.vshost.exe +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/bin/Debug/WindowsForms.vshost.exe.manifest +0 -11
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/GenerateResource.read.1.tlog +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/GenerateResource.write.1.tlog +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/ResolveAssemblyReference.cache +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.AboutBox.resources +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.DataEntryForm.resources +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.MainFormWindow.resources +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.PersonForm.resources +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.Properties.Resources.resources +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.SimpleElementsForm.resources +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.csproj.FileListAbsolute.txt +0 -25
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.exe +0 -0
- data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.pdb +0 -0
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/ext/WindowsForms/src/WindowsForms/WindowsForms/bin/Debug/WindowsForms.vshost.exe.manifest
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
-
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
3
|
-
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
|
4
|
-
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
5
|
-
<security>
|
6
|
-
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
7
|
-
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
8
|
-
</requestedPrivileges>
|
9
|
-
</security>
|
10
|
-
</trustInfo>
|
11
|
-
</assembly>
|
Binary file
|
Binary file
|
data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/GenerateResource.read.1.tlog
DELETED
Binary file
|
data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/GenerateResource.write.1.tlog
DELETED
Binary file
|
data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/ResolveAssemblyReference.cache
DELETED
Binary file
|
data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.AboutBox.resources
DELETED
Binary file
|
Binary file
|
Binary file
|
data/ext/WindowsForms/src/WindowsForms/WindowsForms/obj/x86/Debug/WindowsForms.PersonForm.resources
DELETED
Binary file
|
Binary file
|
Binary file
|
@@ -1,25 +0,0 @@
|
|
1
|
-
C:\Projects\RAutomation\RAutomation\ext\src\WindowsForms\WindowsForms\bin\Debug\WindowsForms.exe
|
2
|
-
C:\Projects\RAutomation\RAutomation\ext\src\WindowsForms\WindowsForms\bin\Debug\WindowsForms.pdb
|
3
|
-
C:\Projects\RAutomation\RAutomation\ext\src\WindowsForms\WindowsForms\obj\x86\Debug\ResolveAssemblyReference.cache
|
4
|
-
C:\Projects\RAutomation\RAutomation\ext\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.Properties.Resources.resources
|
5
|
-
C:\Projects\RAutomation\RAutomation\ext\src\WindowsForms\WindowsForms\obj\x86\Debug\GenerateResource.read.1.tlog
|
6
|
-
C:\Projects\RAutomation\RAutomation\ext\src\WindowsForms\WindowsForms\obj\x86\Debug\GenerateResource.write.1.tlog
|
7
|
-
C:\Projects\RAutomation\RAutomation\ext\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.exe
|
8
|
-
C:\Projects\RAutomation\RAutomation\ext\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.pdb
|
9
|
-
C:\Projects\RAutomation\RAutomation\ext\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.MainFormWindow.resources
|
10
|
-
C:\Projects\RAutomation\RAutomation\ext\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.AboutBox.resources
|
11
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\bin\Debug\WindowsForms.exe
|
12
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\bin\Debug\WindowsForms.pdb
|
13
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\ResolveAssemblyReference.cache
|
14
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.AboutBox.resources
|
15
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.DataEntryForm.resources
|
16
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.PersonForm.resources
|
17
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.MainFormWindow.resources
|
18
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.Properties.Resources.resources
|
19
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\GenerateResource.read.1.tlog
|
20
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\GenerateResource.write.1.tlog
|
21
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.exe
|
22
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.pdb
|
23
|
-
C:\Projects\RAutomation\RAutomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.SimpleElementsForm.resources
|
24
|
-
C:\projects\rautomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.exe
|
25
|
-
C:\projects\rautomation\ext\WindowsForms\src\WindowsForms\WindowsForms\obj\x86\Debug\WindowsForms.pdb
|
Binary file
|