[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
mjs
mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:23:23 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 35f088ac46bac7297a5588e500e40f272b530b95
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Jul 5 01:08:53 2002 +0000
* WebView.subproj/IFHTMLView.mm:
(-[IFHTMLView mouseMovedNotification:]): Pass the modifier flags
along for mouse move events.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1514 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 4dccf25..655eb80 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,9 @@
+2002-07-04 Maciej Stachowiak <mjs at apple.com>
+
+ * WebView.subproj/IFHTMLView.mm:
+ (-[IFHTMLView mouseMovedNotification:]): Pass the modifier flags
+ along for mouse move events.
+
2002-07-04 John Sullivan <sullivan at apple.com>
* WebView.subproj/IFDynamicScrollBarsView.h:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 4dccf25..655eb80 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,9 @@
+2002-07-04 Maciej Stachowiak <mjs at apple.com>
+
+ * WebView.subproj/IFHTMLView.mm:
+ (-[IFHTMLView mouseMovedNotification:]): Pass the modifier flags
+ along for mouse move events.
+
2002-07-04 John Sullivan <sullivan at apple.com>
* WebView.subproj/IFDynamicScrollBarsView.h:
diff --git a/WebKit/WebView.subproj/IFHTMLView.mm b/WebKit/WebView.subproj/IFHTMLView.mm
index ee826f2..e1de142 100644
--- a/WebKit/WebView.subproj/IFHTMLView.mm
+++ b/WebKit/WebView.subproj/IFHTMLView.mm
@@ -484,7 +484,9 @@
if ([thisWindow isMainWindow] &&
[[[notification userInfo] objectForKey: @"NSEvent"] window] == thisWindow &&
[[thisWindow contentView] hitTest:p] == self) {
- QMouseEvent kEvent(QEvent::MouseMove, QPoint((int)p.x, (int)p.y), 0, 0);
+ int state = 0;
+ [self _addModifiers:[event modifierFlags] toState:&state];
+ QMouseEvent kEvent(QEvent::MouseMove, QPoint((int)p.x, (int)p.y), 0, state);
KHTMLView *widget = _private->widget;
if (widget) {
widget->viewportMouseMoveEvent(&kEvent);
diff --git a/WebKit/WebView.subproj/WebHTMLView.m b/WebKit/WebView.subproj/WebHTMLView.m
index ee826f2..e1de142 100644
--- a/WebKit/WebView.subproj/WebHTMLView.m
+++ b/WebKit/WebView.subproj/WebHTMLView.m
@@ -484,7 +484,9 @@
if ([thisWindow isMainWindow] &&
[[[notification userInfo] objectForKey: @"NSEvent"] window] == thisWindow &&
[[thisWindow contentView] hitTest:p] == self) {
- QMouseEvent kEvent(QEvent::MouseMove, QPoint((int)p.x, (int)p.y), 0, 0);
+ int state = 0;
+ [self _addModifiers:[event modifierFlags] toState:&state];
+ QMouseEvent kEvent(QEvent::MouseMove, QPoint((int)p.x, (int)p.y), 0, state);
KHTMLView *widget = _private->widget;
if (widget) {
widget->viewportMouseMoveEvent(&kEvent);
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list