Lines Matching refs:WebMouseEvent
67 static inline WebMouseEvent::Button buttonForEvent(GdkEvent* event) in buttonForEvent()
73 button = WebMouseEvent::NoButton; in buttonForEvent()
75 button = WebMouseEvent::LeftButton; in buttonForEvent()
77 button = WebMouseEvent::MiddleButton; in buttonForEvent()
79 button = WebMouseEvent::RightButton; in buttonForEvent()
86 button = WebMouseEvent::LeftButton; in buttonForEvent()
88 button = WebMouseEvent::MiddleButton; in buttonForEvent()
90 button = WebMouseEvent::RightButton; in buttonForEvent()
96 return static_cast<WebMouseEvent::Button>(button); in buttonForEvent()
99 WebMouseEvent WebEventFactory::createWebMouseEvent(GdkEvent *event, int currentClickCount) in createWebMouseEvent()
122 return WebMouseEvent(type, in createWebMouseEvent()