Skip to content

Instantly share code, notes, and snippets.

View kenchris's full-sized avatar
🏠
Working from home

Kenneth Rohde Christiansen kenchris

🏠
Working from home
  • Intel Corporation
  • Denmark
View GitHub Profile
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());
commit 9e1efdf0cbd9600c543fa8fe8e2ad60261353e36
Author: Kenneth Rohde Christiansen <kenneth@webkit.org>
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
commit e2aa0f79a4cd5d3eb8ab72472b4ab4d0f25c4c37
Author: Kenneth Rohde Christiansen <kenneth@webkit.org>
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
commit cb7d28aecce8516fb5be9b268697e178d410fb44
Author: Kenneth Rohde Christiansen <kenneth@webkit.org>
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,
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&);
-
+
$ 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)
g++ -m64 -fuse-ld=gold -Wl,--version-script=/scratchbox/users/kenneth/home/kenneth/swork/Qt5/webkit/Source/qtwebkit-export.map -Wl,--gc-sections -Wl,--no-undefined -Wl,-O1 -Wl,-rpath,/scratchbox/users/kenneth/home/kenneth/swork/Qt5/qt5/qtbase/lib -shared -Wl,-Bsymbolic-functions -Wl,-soname,libQtWebKit.so.4 -o libQtWebKit.so.4.10.0 obj/debug/WebKit/qt/Api/qwebframe.o obj/debug/WebKit/qt/Api/qgraphicswebview.o obj/debug/WebKit/qt/Api/qwebpage.o obj/debug/WebKit/qt/Api/qwebview.o obj/debug/WebKit/qt/Api/qwebelement.o obj/debug/WebKit/qt/Api/qwebhistory.o obj/debug/WebKit/qt/Api/qwebsettings.o obj/debug/WebKit/qt/Api/qwebhistoryinterface.o obj/debug/WebKit/qt/Api/qwebplugindatabase.o obj/debug/WebKit/qt/Api/qwebpluginfactory.o obj/debug/WebKit/qt/Api/qwebsecurityorigin.o obj/debug/WebKit/qt/Api/qwebscriptworld.o obj/debug/WebKit/qt/Api/qwebdatabase.o obj/debug/WebKit/qt/Api/qwebinspector.o obj/debug/WebKit/qt/Api/qwebkitversion.o obj/debug/WebKit/qt/Api/qhttpheader.o obj/debug/WebKit/qt/WebCoreSupport/QtFallback
namespace WebCore {
namespace{
inline LayoutSize frameToMainFrameOffset(Frame* frame)
{
LayoutPoint mainFramePoint = frame->page()->mainFrame()->view()->rootViewToContents(frame->view()->contentsToRootView(LayoutPoint()));
return toLayoutSize(mainFramePoint);
}
namespace WebCore {
namespace{
inline LayoutSize frameToMainFrameOffset(Frame* frame)
{
LayoutPoint mainFramePoint = frame->page()->mainFrame()->view()->rootViewToContents(frame->view()->contentsToRootView(LayoutPoint()));
return toLayoutSize(mainFramePoint);
}
namespace WebCore {
namespace{
inline LayoutSize frameToMainFrameOffset(Frame* frame)
{
LayoutPoint mainFramePoint = frame->page()->mainFrame()->view()->rootViewToContents(frame->view()->contentsToRootView(LayoutPoint()));
return toLayoutSize(mainFramePoint);
}