diff options
Diffstat (limited to 'WebCore/platform/PlatformMouseEvent.h')
-rw-r--r-- | WebCore/platform/PlatformMouseEvent.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/WebCore/platform/PlatformMouseEvent.h b/WebCore/platform/PlatformMouseEvent.h index 99acc63..436a902 100644 --- a/WebCore/platform/PlatformMouseEvent.h +++ b/WebCore/platform/PlatformMouseEvent.h @@ -114,8 +114,13 @@ namespace WebCore { PlatformMouseEvent(GdkEventMotion*); #endif -#if PLATFORM(MAC) && defined(__OBJC__) +#if PLATFORM(MAC) +#if defined(__OBJC__) PlatformMouseEvent(NSEvent *, NSView *windowView); +#endif + PlatformMouseEvent(int x, int y, int globalX, int globalY, MouseButton button, MouseEventType eventType, + int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp, + unsigned modifierFlags, int eventNumber); int eventNumber() const { return m_eventNumber; } #endif |