This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Source/WebKit2/UIProcess/qt/QtGestureRecognizer.h b/Source/WebKit2/UIProcess/qt/QtGestureRecognizer.h | |
index 0994c46..f5222c7 100644 | |
--- a/Source/WebKit2/UIProcess/qt/QtGestureRecognizer.h | |
+++ b/Source/WebKit2/UIProcess/qt/QtGestureRecognizer.h | |
@@ -31,6 +31,9 @@ namespace WebKit { | |
class QtViewportInteractionEngine; | |
class QtGestureRecognizer { | |
+public: | |
+ bool isRecognized() const { return m_state == GestureRecognized; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit d63b4bb28948669cf882787e24de8f4e6c82481a | |
Author: Kenneth Rohde Christiansen <[email protected]> | |
Date: Thu Jan 5 13:54:16 2012 +0100 | |
[Qt] Implement QQuickWebView::inputMethodQuery | |
Reviewed by NOBODY (OOPS!). | |
Implement the non-Maliit dependent parts of inputMethodQuery. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit dc7c5f063c750500c0de7f56dd93a96481cf8636 | |
Author: Kenneth Rohde Christiansen <[email protected]> | |
Date: Thu Jan 5 13:54:16 2012 +0100 | |
[Qt] Implement QQuickWebView::inputMethodQuery | |
Reviewed by NOBODY (OOPS!). | |
Implement the non-Maliit dependent parts of inputMethodQuery. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 6a7de7f6428fa6339e8cf48e29bf91b86ed8324e | |
Author: Kenneth Rohde Christiansen <[email protected]> | |
Date: Fri Jan 6 16:32:31 2012 +0100 | |
WIP | |
diff --git a/Source/WebCore/loader/EmptyClients.h b/Source/WebCore/loader/EmptyClients.h | |
index 8d1fe7d..e522eff 100644 | |
--- a/Source/WebCore/loader/EmptyClients.h | |
+++ b/Source/WebCore/loader/EmptyClients.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2242 case PlatformEvent::GestureTap: { | |
2243 // FIXME: Refactor this code to not hit test multiple times once hit testing has been corrected as suggested above. | |
2244 PlatformMouseEvent fakeMouseMove(gestureEvent.position(), gestureEvent.globalPosition(), NoButton, PlatformEvent::MouseMoved, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp()); | |
2245 PlatformMouseEvent fakeMouseDown(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MousePressed, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp()); | |
2246 PlatformMouseEvent fakeMouseUp(gestureEvent.position(), gestureEvent.globalPosition(), LeftButton, PlatformEvent::MouseReleased, /* clickCount */ 1, gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 9e1efdf0cbd9600c543fa8fe8e2ad60261353e36 | |
Author: Kenneth Rohde Christiansen <[email protected]> | |
Date: Fri Jan 6 16:32:31 2012 +0100 | |
WIP | |
diff --git a/Source/WebCore/loader/EmptyClients.h b/Source/WebCore/loader/EmptyClients.h | |
index 8d1fe7d..23c86ba 100644 | |
--- a/Source/WebCore/loader/EmptyClients.h | |
+++ b/Source/WebCore/loader/EmptyClients.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit e2aa0f79a4cd5d3eb8ab72472b4ab4d0f25c4c37 | |
Author: Kenneth Rohde Christiansen <[email protected]> | |
Date: Mon Jan 9 17:19:40 2012 +0100 | |
WIP | |
diff --git a/Source/WebKit2/UIProcess/PageClient.h b/Source/WebKit2/UIProcess/PageClient.h | |
index 1db4eaa..16fc879 100644 | |
--- a/Source/WebKit2/UIProcess/PageClient.h | |
+++ b/Source/WebKit2/UIProcess/PageClient.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit cb7d28aecce8516fb5be9b268697e178d410fb44 | |
Author: Kenneth Rohde Christiansen <[email protected]> | |
Date: Mon Jan 9 17:19:40 2012 +0100 | |
Implement the input panel request/close handling | |
Reviewed by NOBODY (OOPS!). | |
With the current patch we only request the input panel as a | |
response to a user tap. Close requests, on the other hand, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Source/WebKit2/UIProcess/API/mac/PageClientImpl.h b/Source/WebKit2/UIProcess/API/mac/PageClientImpl.h | |
index 8e3c5b7..6cf4684 100644 | |
--- a/Source/WebKit2/UIProcess/API/mac/PageClientImpl.h | |
+++ b/Source/WebKit2/UIProcess/API/mac/PageClientImpl.h | |
@@ -82,7 +82,8 @@ private: | |
virtual WebCore::FloatRect convertToUserSpace(const WebCore::FloatRect&); | |
virtual WebCore::IntPoint screenToWindow(const WebCore::IntPoint&); | |
virtual WebCore::IntRect windowToScreen(const WebCore::IntRect&); | |
- | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ldd /opt/AfterShotPro/bin/AfterShotPro | |
linux-gate.so.1 => (0xf7741000) | |
libkodakcms.so => not found | |
libuuid.so.1 => /lib32/libuuid.so.1 (0xf7711000) | |
libtcmalloc_minimal.so.0 => not found | |
libdl.so.2 => /lib32/libdl.so.2 (0xf770b000) | |
libz.so.1 => /usr/lib32/libz.so.1 (0xf76f6000) | |
libQtSvg.so.4 => /usr/lib/i386-linux-gnu/libQtSvg.so.4 (0xf76a1000) | |
libQt3Support.so.4 => /usr/lib/i386-linux-gnu/libQt3Support.so.4 (0xf73d3000) | |
libQtSql.so.4 => /usr/lib/i386-linux-gnu/libQtSql.so.4 (0xf7393000) |
OlderNewer