diff options
author | Teddy Wing | 2018-10-06 18:46:58 +0200 |
---|---|---|
committer | Teddy Wing | 2018-10-06 18:46:58 +0200 |
commit | 55cde050a168a09c2691081da38064821d492f66 (patch) | |
tree | b83a074e944a7611a0c81febfe01337c628d0f53 /DomeKey.xcodeproj | |
parent | 7aad3213bb8ea4edc76f11752bcfa323653a4634 (diff) | |
download | DomeKey-55cde050a168a09c2691081da38064821d492f66.tar.bz2 |
Add DKApplication
Will be used to override the `sendEvent:` method to try to intercept
media key events as described in
https://weblog.rogueamoeba.com/2007/09/29/.
Trying to find out if intercepting these events will enable the program
to work with Bluetooth headphones.
Diffstat (limited to 'DomeKey.xcodeproj')
-rw-r--r-- | DomeKey.xcodeproj/project.pbxproj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/DomeKey.xcodeproj/project.pbxproj b/DomeKey.xcodeproj/project.pbxproj index 4c7f32a..0b2d053 100644 --- a/DomeKey.xcodeproj/project.pbxproj +++ b/DomeKey.xcodeproj/project.pbxproj @@ -15,6 +15,7 @@ D1E101FE2133FA0300B2CA29 /* KeyboardSimulator.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E101FD2133FA0300B2CA29 /* KeyboardSimulator.m */; }; D1E1020821345E2300B2CA29 /* char_to_key_code.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E1020721345E2200B2CA29 /* char_to_key_code.m */; }; D1E1020B21350BAD00B2CA29 /* libdome_key_map.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D1E1020A21350BAD00B2CA29 /* libdome_key_map.a */; }; + D1FEFD0E21691E5A0054EFE6 /* DKApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = D1FEFD0D21691E5A0054EFE6 /* DKApplication.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -83,6 +84,8 @@ D1E102092134611800B2CA29 /* char_to_key_code.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = char_to_key_code.h; path = lib/char_to_key_code.h; sourceTree = SOURCE_ROOT; }; D1E1020A21350BAD00B2CA29 /* libdome_key_map.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libdome_key_map.a; path = "lib/dome-key-map/target/debug/libdome_key_map.a"; sourceTree = "<group>"; }; D1E1020C21350D4100B2CA29 /* dome_key_map.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = dome_key_map.h; path = "lib/dome-key-map/dome_key_map.h"; sourceTree = SOURCE_ROOT; }; + D1FEFD0C21691E5A0054EFE6 /* DKApplication.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DKApplication.h; sourceTree = "<group>"; }; + D1FEFD0D21691E5A0054EFE6 /* DKApplication.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DKApplication.m; sourceTree = "<group>"; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -123,6 +126,8 @@ D131C4D121663B6500801267 /* Mappings.h */, D131C4D221663B6500801267 /* Mappings.m */, D110C9472122E2D80094F963 /* HeadphoneKey.m */, + D1FEFD0C21691E5A0054EFE6 /* DKApplication.h */, + D1FEFD0D21691E5A0054EFE6 /* DKApplication.m */, D1E101FC2133FA0300B2CA29 /* KeyboardSimulator.h */, D1E101FD2133FA0300B2CA29 /* KeyboardSimulator.m */, D160C2A02118EF9D007D1B50 /* main.m */, @@ -259,6 +264,7 @@ buildActionMask = 2147483647; files = ( D131C4D321663B6500801267 /* Mappings.m in Sources */, + D1FEFD0E21691E5A0054EFE6 /* DKApplication.m in Sources */, D110C9482122E2D80094F963 /* HeadphoneKey.m in Sources */, D160C2A12118EF9D007D1B50 /* main.m in Sources */, D1E1020821345E2300B2CA29 /* char_to_key_code.m in Sources */, |