typedef long LPARAM;
#endif
+#if PLATFORM(GDK)
+typedef union _GdkEvent GdkEvent;
+#endif
+
namespace WebCore {
// These button numbers match the one used in the DOM API.
bool altKey() const { return m_altKey; }
bool metaKey() const { return m_metaKey; }
- static bool isMouseButtonDown(MouseButton);
#if __APPLE__
PlatformMouseEvent(NSEvent*);
#endif
#if WIN32
PlatformMouseEvent(HWND, WPARAM, LPARAM, int clickCount);
#endif
+#if PLATFORM(GDK)
+ PlatformMouseEvent(GdkEvent*);
+#endif
private:
IntPoint m_position;