├── MacOSGlues ├── AppleScriptUtilityGlue.swift ├── AppleScriptUtilityGlue.swift.sdef ├── AutomatorGlue.swift ├── AutomatorGlue.swift.sdef ├── BluetoothFileExchangeGlue.swift ├── BluetoothFileExchangeGlue.swift.sdef ├── CalendarGlue.swift ├── CalendarGlue.swift.sdef ├── ContactsGlue.swift ├── ContactsGlue.swift.sdef ├── DatabaseEventsGlue.swift ├── DatabaseEventsGlue.swift.sdef ├── FinderGlue.swift ├── FinderGlue.swift.sdef ├── FontBookGlue.swift ├── FontBookGlue.swift.sdef ├── GarageBandGlue.swift ├── GarageBandGlue.swift.sdef ├── ITunesGlue.swift ├── ITunesGlue.swift.sdef ├── ImageEventsGlue.swift ├── ImageEventsGlue.swift.sdef ├── Info.plist ├── KeynoteGlue.swift ├── KeynoteGlue.swift.sdef ├── MacOSGlues.h ├── MailGlue.swift ├── MailGlue.swift.sdef ├── MessagesGlue.swift ├── MessagesGlue.swift.sdef ├── NotesGlue.swift ├── NotesGlue.swift.sdef ├── NumbersGlue.swift ├── NumbersGlue.swift.sdef ├── PagesGlue.swift ├── PagesGlue.swift.sdef ├── PhotosGlue.swift ├── PhotosGlue.swift.sdef ├── QuickTimePlayerGlue.swift ├── QuickTimePlayerGlue.swift.sdef ├── RemindersGlue.swift ├── RemindersGlue.swift.sdef ├── SafariGlue.swift ├── SafariGlue.swift.sdef ├── ScriptEditorGlue.swift ├── ScriptEditorGlue.swift.sdef ├── SystemEventsGlue.swift ├── SystemEventsGlue.swift.sdef ├── SystemInformationGlue.swift ├── SystemInformationGlue.swift.sdef ├── SystemPreferencesGlue.swift ├── SystemPreferencesGlue.swift.sdef ├── TerminalGlue.swift ├── TerminalGlue.swift.sdef ├── TextEditGlue.swift ├── TextEditGlue.swift.sdef ├── VoiceOverGlue.swift ├── VoiceOverGlue.swift.sdef ├── XcodeGlue.swift └── XcodeGlue.swift.sdef ├── README ├── SwiftAutomation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── has.xcuserdatad │ │ ├── IDEFindNavigatorScopes.plist │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── libSwiftAutomation.xcscheme └── xcuserdata │ └── has.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── Frameworks Release.xcscheme │ ├── MacOSGlues.xcscheme │ ├── Release.xcscheme │ ├── SwiftAutomation.xcscheme │ ├── SwiftAutomationLite.xcscheme │ ├── aeglue.xcscheme │ ├── test.xcscheme │ └── xcschememanagement.plist ├── SwiftAutomation ├── AEApplicationGlue.swift ├── AETEParser.swift ├── AppData.swift ├── AppleEventFormatter.swift ├── DefaultTerminology.swift ├── Errors.swift ├── GlueTable.swift ├── Info.plist ├── KeywordConverter.swift ├── SDEFParser.swift ├── Specifier.swift ├── SpecifierExtensions.swift ├── SpecifierFormatter.swift ├── StaticGlueBuilder.swift ├── Support.swift ├── SwiftAutomation.h ├── SwiftGlueTemplate.swift ├── Symbol.swift ├── TermTypes.swift ├── TypeExtensions.swift └── main.swift ├── SwiftAutomationLite ├── Info.plist └── SwiftAutomationLite.h ├── TODO.txt ├── aeglue ├── aeglue.entitlements └── main.swift ├── doc-generated ├── advanced-type-support.html ├── application-objects.html ├── application_architecture.gif ├── application_architecture2.gif ├── client_app_to_itunes_event.gif ├── commands.html ├── creating-and-using-static-glues.html ├── examples.html ├── finder_to_textedit_event.gif ├── full.css ├── index.html ├── installing-swiftautomation.html ├── low-level-apis.html ├── notes.html ├── object-specifiers.html ├── optimizing-performance.html ├── relationships_example.gif ├── tutorial-introduction.html ├── type-mappings.html ├── understanding-apple-events.html └── welcome.html ├── doc-source ├── 1 welcome.md ├── 10 examples.md ├── 11 advanced-type-support.md ├── 12 optimizing-performance.md ├── 13 low-level-apis.md ├── 14 notes.md ├── 2 installing-swiftautomation.md ├── 3 tutorial-introduction.md ├── 4 understanding-apple-events.md ├── 5 creating-and-using-static-glues.md ├── 6 type-mappings.md ├── 7 application-objects.md ├── 8 object-specifiers.md ├── 9 commands.md ├── application_architecture.gif ├── application_architecture2.gif ├── client_app_to_itunes_event.gif ├── finder_to_textedit_event.gif ├── full.css └── relationships_example.gif ├── mkdoc └── test └── main.swift /MacOSGlues/AppleScriptUtilityGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/AppleScriptUtilityGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/AppleScriptUtilityGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/AppleScriptUtilityGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/AutomatorGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/AutomatorGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/AutomatorGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/AutomatorGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/BluetoothFileExchangeGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/BluetoothFileExchangeGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/BluetoothFileExchangeGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/BluetoothFileExchangeGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/CalendarGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/CalendarGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/CalendarGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/CalendarGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/ContactsGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/ContactsGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/ContactsGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/ContactsGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/DatabaseEventsGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/DatabaseEventsGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/DatabaseEventsGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/DatabaseEventsGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/FinderGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/FinderGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/FinderGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/FinderGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/FontBookGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/FontBookGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/FontBookGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/FontBookGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/GarageBandGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/GarageBandGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/GarageBandGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/GarageBandGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/ITunesGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/ITunesGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/ITunesGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/ITunesGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/ImageEventsGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/ImageEventsGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/ImageEventsGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/ImageEventsGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/Info.plist -------------------------------------------------------------------------------- /MacOSGlues/KeynoteGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/KeynoteGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/KeynoteGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/KeynoteGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/MacOSGlues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/MacOSGlues.h -------------------------------------------------------------------------------- /MacOSGlues/MailGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/MailGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/MailGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/MailGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/MessagesGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/MessagesGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/MessagesGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/MessagesGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/NotesGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/NotesGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/NotesGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/NotesGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/NumbersGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/NumbersGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/NumbersGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/NumbersGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/PagesGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/PagesGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/PagesGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/PagesGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/PhotosGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/PhotosGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/PhotosGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/PhotosGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/QuickTimePlayerGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/QuickTimePlayerGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/QuickTimePlayerGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/QuickTimePlayerGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/RemindersGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/RemindersGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/RemindersGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/RemindersGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/SafariGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/SafariGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/SafariGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/SafariGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/ScriptEditorGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/ScriptEditorGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/ScriptEditorGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/ScriptEditorGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/SystemEventsGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/SystemEventsGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/SystemEventsGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/SystemEventsGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/SystemInformationGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/SystemInformationGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/SystemInformationGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/SystemInformationGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/SystemPreferencesGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/SystemPreferencesGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/SystemPreferencesGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/SystemPreferencesGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/TerminalGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/TerminalGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/TerminalGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/TerminalGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/TextEditGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/TextEditGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/TextEditGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/TextEditGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/VoiceOverGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/VoiceOverGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/VoiceOverGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/VoiceOverGlue.swift.sdef -------------------------------------------------------------------------------- /MacOSGlues/XcodeGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/XcodeGlue.swift -------------------------------------------------------------------------------- /MacOSGlues/XcodeGlue.swift.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/MacOSGlues/XcodeGlue.swift.sdef -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/README -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/project.xcworkspace/xcuserdata/has.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/project.xcworkspace/xcuserdata/has.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/project.xcworkspace/xcuserdata/has.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/project.xcworkspace/xcuserdata/has.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/xcshareddata/xcschemes/libSwiftAutomation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/xcshareddata/xcschemes/libSwiftAutomation.xcscheme -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/Frameworks Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/Frameworks Release.xcscheme -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/MacOSGlues.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/MacOSGlues.xcscheme -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/Release.xcscheme -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/SwiftAutomation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/SwiftAutomation.xcscheme -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/SwiftAutomationLite.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/SwiftAutomationLite.xcscheme -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/aeglue.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/aeglue.xcscheme -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/test.xcscheme -------------------------------------------------------------------------------- /SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation.xcodeproj/xcuserdata/has.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SwiftAutomation/AEApplicationGlue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/AEApplicationGlue.swift -------------------------------------------------------------------------------- /SwiftAutomation/AETEParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/AETEParser.swift -------------------------------------------------------------------------------- /SwiftAutomation/AppData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/AppData.swift -------------------------------------------------------------------------------- /SwiftAutomation/AppleEventFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/AppleEventFormatter.swift -------------------------------------------------------------------------------- /SwiftAutomation/DefaultTerminology.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/DefaultTerminology.swift -------------------------------------------------------------------------------- /SwiftAutomation/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/Errors.swift -------------------------------------------------------------------------------- /SwiftAutomation/GlueTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/GlueTable.swift -------------------------------------------------------------------------------- /SwiftAutomation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/Info.plist -------------------------------------------------------------------------------- /SwiftAutomation/KeywordConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/KeywordConverter.swift -------------------------------------------------------------------------------- /SwiftAutomation/SDEFParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/SDEFParser.swift -------------------------------------------------------------------------------- /SwiftAutomation/Specifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/Specifier.swift -------------------------------------------------------------------------------- /SwiftAutomation/SpecifierExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/SpecifierExtensions.swift -------------------------------------------------------------------------------- /SwiftAutomation/SpecifierFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/SpecifierFormatter.swift -------------------------------------------------------------------------------- /SwiftAutomation/StaticGlueBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/StaticGlueBuilder.swift -------------------------------------------------------------------------------- /SwiftAutomation/Support.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/Support.swift -------------------------------------------------------------------------------- /SwiftAutomation/SwiftAutomation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/SwiftAutomation.h -------------------------------------------------------------------------------- /SwiftAutomation/SwiftGlueTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/SwiftGlueTemplate.swift -------------------------------------------------------------------------------- /SwiftAutomation/Symbol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/Symbol.swift -------------------------------------------------------------------------------- /SwiftAutomation/TermTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/TermTypes.swift -------------------------------------------------------------------------------- /SwiftAutomation/TypeExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/TypeExtensions.swift -------------------------------------------------------------------------------- /SwiftAutomation/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomation/main.swift -------------------------------------------------------------------------------- /SwiftAutomationLite/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomationLite/Info.plist -------------------------------------------------------------------------------- /SwiftAutomationLite/SwiftAutomationLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/SwiftAutomationLite/SwiftAutomationLite.h -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/TODO.txt -------------------------------------------------------------------------------- /aeglue/aeglue.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/aeglue/aeglue.entitlements -------------------------------------------------------------------------------- /aeglue/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/aeglue/main.swift -------------------------------------------------------------------------------- /doc-generated/advanced-type-support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/advanced-type-support.html -------------------------------------------------------------------------------- /doc-generated/application-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/application-objects.html -------------------------------------------------------------------------------- /doc-generated/application_architecture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/application_architecture.gif -------------------------------------------------------------------------------- /doc-generated/application_architecture2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/application_architecture2.gif -------------------------------------------------------------------------------- /doc-generated/client_app_to_itunes_event.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/client_app_to_itunes_event.gif -------------------------------------------------------------------------------- /doc-generated/commands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/commands.html -------------------------------------------------------------------------------- /doc-generated/creating-and-using-static-glues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/creating-and-using-static-glues.html -------------------------------------------------------------------------------- /doc-generated/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/examples.html -------------------------------------------------------------------------------- /doc-generated/finder_to_textedit_event.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/finder_to_textedit_event.gif -------------------------------------------------------------------------------- /doc-generated/full.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/full.css -------------------------------------------------------------------------------- /doc-generated/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/index.html -------------------------------------------------------------------------------- /doc-generated/installing-swiftautomation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/installing-swiftautomation.html -------------------------------------------------------------------------------- /doc-generated/low-level-apis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/low-level-apis.html -------------------------------------------------------------------------------- /doc-generated/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/notes.html -------------------------------------------------------------------------------- /doc-generated/object-specifiers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/object-specifiers.html -------------------------------------------------------------------------------- /doc-generated/optimizing-performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/optimizing-performance.html -------------------------------------------------------------------------------- /doc-generated/relationships_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/relationships_example.gif -------------------------------------------------------------------------------- /doc-generated/tutorial-introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/tutorial-introduction.html -------------------------------------------------------------------------------- /doc-generated/type-mappings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/type-mappings.html -------------------------------------------------------------------------------- /doc-generated/understanding-apple-events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/understanding-apple-events.html -------------------------------------------------------------------------------- /doc-generated/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-generated/welcome.html -------------------------------------------------------------------------------- /doc-source/1 welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/1 welcome.md -------------------------------------------------------------------------------- /doc-source/10 examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/10 examples.md -------------------------------------------------------------------------------- /doc-source/11 advanced-type-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/11 advanced-type-support.md -------------------------------------------------------------------------------- /doc-source/12 optimizing-performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/12 optimizing-performance.md -------------------------------------------------------------------------------- /doc-source/13 low-level-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/13 low-level-apis.md -------------------------------------------------------------------------------- /doc-source/14 notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/14 notes.md -------------------------------------------------------------------------------- /doc-source/2 installing-swiftautomation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/2 installing-swiftautomation.md -------------------------------------------------------------------------------- /doc-source/3 tutorial-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/3 tutorial-introduction.md -------------------------------------------------------------------------------- /doc-source/4 understanding-apple-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/4 understanding-apple-events.md -------------------------------------------------------------------------------- /doc-source/5 creating-and-using-static-glues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/5 creating-and-using-static-glues.md -------------------------------------------------------------------------------- /doc-source/6 type-mappings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/6 type-mappings.md -------------------------------------------------------------------------------- /doc-source/7 application-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/7 application-objects.md -------------------------------------------------------------------------------- /doc-source/8 object-specifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/8 object-specifiers.md -------------------------------------------------------------------------------- /doc-source/9 commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/9 commands.md -------------------------------------------------------------------------------- /doc-source/application_architecture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/application_architecture.gif -------------------------------------------------------------------------------- /doc-source/application_architecture2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/application_architecture2.gif -------------------------------------------------------------------------------- /doc-source/client_app_to_itunes_event.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/client_app_to_itunes_event.gif -------------------------------------------------------------------------------- /doc-source/finder_to_textedit_event.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/finder_to_textedit_event.gif -------------------------------------------------------------------------------- /doc-source/full.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/full.css -------------------------------------------------------------------------------- /doc-source/relationships_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/doc-source/relationships_example.gif -------------------------------------------------------------------------------- /mkdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/mkdoc -------------------------------------------------------------------------------- /test/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhas/SwiftAutomation/HEAD/test/main.swift --------------------------------------------------------------------------------