diff options
author | Memphiz <memphis@machzwo.de> | 2011-07-06 09:03:13 -0700 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2011-07-06 09:03:13 -0700 |
commit | c4f65275376bb847ed915a27f2adfd2a3a7a0961 (patch) | |
tree | da31607da6a0d375fdd7acef0d9d437519789c6a /XBMC-IOS.xcodeproj | |
parent | 4fa8be2b0cf61fee8d6de1504308bec87b19bab3 (diff) | |
parent | 76b2374afdf2ec215176f569c875584eb77eb198 (diff) |
Merge pull request #247 from Memphiz/gesture2
This will add inertial scrolling for ios (and all future touch devices which don't support it by os).
Gestures for ios are mapped as follows:
- double finger swipe left -> back
- double finger tap -> right mouse
- single finger tap -> left mouse
- panning, and flicking
- panning and flicking works for lists only at the moment ... scrollbars and stuff are only clickable (single tap), for now - solution for this will follow in some days i guess ...
Diffstat (limited to 'XBMC-IOS.xcodeproj')
-rw-r--r-- | XBMC-IOS.xcodeproj/project.pbxproj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/XBMC-IOS.xcodeproj/project.pbxproj b/XBMC-IOS.xcodeproj/project.pbxproj index b6363725ca..e5aa252396 100644 --- a/XBMC-IOS.xcodeproj/project.pbxproj +++ b/XBMC-IOS.xcodeproj/project.pbxproj @@ -28,6 +28,7 @@ C8EC5D26136953E100CCC10D /* XBMC_keytable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8EC5D24136953E100CCC10D /* XBMC_keytable.cpp */; }; DF0DF17F13A3AF9F008ED511 /* FileNFS.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF0DF17B13A3AF9F008ED511 /* FileNFS.cpp */; }; DF0DF18013A3AF9F008ED511 /* NFSDirectory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF0DF17D13A3AF9F008ED511 /* NFSDirectory.cpp */; }; + DF27E23613C23CAC002514FE /* InertialScrollingHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF27E23413C23CAC002514FE /* InertialScrollingHandler.cpp */; }; F54D9E8112B713F8006870F9 /* libc.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = F54D9E8012B713F8006870F9 /* libc.dylib */; }; F558F61113AFDC3000631E12 /* ThreadLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F558F60F13AFDC3000631E12 /* ThreadLocal.cpp */; }; F56B143412CAF279009B4C96 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F56B143312CAF279009B4C96 /* CoreVideo.framework */; }; @@ -963,6 +964,8 @@ DF0DF17C13A3AF9F008ED511 /* FileNFS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileNFS.h; sourceTree = "<group>"; }; DF0DF17D13A3AF9F008ED511 /* NFSDirectory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NFSDirectory.cpp; sourceTree = "<group>"; }; DF0DF17E13A3AF9F008ED511 /* NFSDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NFSDirectory.h; sourceTree = "<group>"; }; + DF27E23413C23CAC002514FE /* InertialScrollingHandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InertialScrollingHandler.cpp; sourceTree = "<group>"; }; + DF27E23513C23CAC002514FE /* InertialScrollingHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InertialScrollingHandler.h; sourceTree = "<group>"; }; F54D9E8012B713F8006870F9 /* libc.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libc.dylib; path = usr/lib/libc.dylib; sourceTree = SDKROOT; }; F558F60613AFDC1700631E12 /* Condition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Condition.h; sourceTree = "<group>"; }; F558F60F13AFDC3000631E12 /* ThreadLocal.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ThreadLocal.cpp; sourceTree = "<group>"; }; @@ -3605,6 +3608,8 @@ F56C87D7131F42ED000AD0F6 /* GUIViewControl.h */, F56C87D8131F42ED000AD0F6 /* GUIViewState.cpp */, F56C87D9131F42ED000AD0F6 /* GUIViewState.h */, + DF27E23413C23CAC002514FE /* InertialScrollingHandler.cpp */, + DF27E23513C23CAC002514FE /* InertialScrollingHandler.h */, F56C87DA131F42ED000AD0F6 /* IProgressCallback.h */, F56C87DB131F42ED000AD0F6 /* LangInfo.cpp */, F56C87DC131F42ED000AD0F6 /* LangInfo.h */, @@ -6723,6 +6728,7 @@ F558F61113AFDC3000631E12 /* ThreadLocal.cpp in Sources */, 7C89628013B7031E003631FE /* GUIWindowScreensaverDim.cpp in Sources */, 1830219E13B8E37300770920 /* controledit.cpp in Sources */, + DF27E23613C23CAC002514FE /* InertialScrollingHandler.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; |