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-ATV2.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-ATV2.xcodeproj')
-rw-r--r-- | XBMC-ATV2.xcodeproj/project.pbxproj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/XBMC-ATV2.xcodeproj/project.pbxproj b/XBMC-ATV2.xcodeproj/project.pbxproj index 6926158522..878e8ab6d1 100644 --- a/XBMC-ATV2.xcodeproj/project.pbxproj +++ b/XBMC-ATV2.xcodeproj/project.pbxproj @@ -27,6 +27,7 @@ C8EC5D51136954E400CCC10D /* XBMC_keytable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8EC5D4F136954E400CCC10D /* XBMC_keytable.cpp */; }; DF0DF16C13A3AF82008ED511 /* FileNFS.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF0DF16813A3AF82008ED511 /* FileNFS.cpp */; }; DF0DF16D13A3AF82008ED511 /* NFSDirectory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF0DF16A13A3AF82008ED511 /* NFSDirectory.cpp */; }; + DF27E25C13C23CCA002514FE /* InertialScrollingHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF27E25A13C23CCA002514FE /* InertialScrollingHandler.cpp */; }; F54D9E0712B65FFF006870F9 /* libc.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = F54D9E0612B65FFF006870F9 /* libc.dylib */; }; F54D9E8E12B71457006870F9 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F54D9E8D12B71457006870F9 /* CoreAudio.framework */; }; F558F66F13AFE81500631E12 /* ThreadLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F558F66D13AFE81500631E12 /* ThreadLocal.cpp */; }; @@ -964,6 +965,8 @@ DF0DF16913A3AF82008ED511 /* FileNFS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileNFS.h; sourceTree = "<group>"; }; DF0DF16A13A3AF82008ED511 /* NFSDirectory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NFSDirectory.cpp; sourceTree = "<group>"; }; DF0DF16B13A3AF82008ED511 /* NFSDirectory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NFSDirectory.h; sourceTree = "<group>"; }; + DF27E25A13C23CCA002514FE /* InertialScrollingHandler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = InertialScrollingHandler.cpp; sourceTree = "<group>"; }; + DF27E25B13C23CCA002514FE /* InertialScrollingHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InertialScrollingHandler.h; sourceTree = "<group>"; }; F54D9E0612B65FFF006870F9 /* libc.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libc.dylib; path = usr/lib/libc.dylib; sourceTree = SDKROOT; }; F54D9E8D12B71457006870F9 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; }; F558F66813AFE7F300631E12 /* Condition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Condition.h; sourceTree = "<group>"; }; @@ -3247,6 +3250,8 @@ F56C77EA131EC154000AD0F6 /* GUIViewControl.h */, F56C77EB131EC154000AD0F6 /* GUIViewState.cpp */, F56C77EC131EC154000AD0F6 /* GUIViewState.h */, + DF27E25A13C23CCA002514FE /* InertialScrollingHandler.cpp */, + DF27E25B13C23CCA002514FE /* InertialScrollingHandler.h */, F56C77ED131EC154000AD0F6 /* IProgressCallback.h */, F56C77EE131EC154000AD0F6 /* LangInfo.cpp */, F56C77EF131EC154000AD0F6 /* LangInfo.h */, @@ -6710,6 +6715,7 @@ F558F66F13AFE81500631E12 /* ThreadLocal.cpp in Sources */, 7C89627013B702F3003631FE /* GUIWindowScreensaverDim.cpp in Sources */, 1830216013B8E35300770920 /* controledit.cpp in Sources */, + DF27E25C13C23CCA002514FE /* InertialScrollingHandler.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; |