Lines Matching refs:touch_event
1099 CefTouchEvent touch_event; in OnPaint() local
1100 touch_event.x = MiddleX(pointerdiv) - 45; in OnPaint()
1101 touch_event.y = MiddleY(pointerdiv); in OnPaint()
1102 touch_event.type = CEF_TET_PRESSED; in OnPaint()
1103 touch_event.pointer_type = CEF_POINTER_TYPE_PEN; in OnPaint()
1105 browser->GetHost()->SendTouchEvent(touch_event); in OnPaint()
1107 touch_event.type = CEF_TET_MOVED; in OnPaint()
1109 touch_event.x++; in OnPaint()
1110 browser->GetHost()->SendTouchEvent(touch_event); in OnPaint()
1113 touch_event.type = CEF_TET_RELEASED; in OnPaint()
1114 browser->GetHost()->SendTouchEvent(touch_event); in OnPaint()