bool ScreenArea::on_motion_notify_event(GdkEventMotion* _pstEvent)
{
    if (!m_bShowCursor) {
        vShowCursor();
    }
    vStartCursorTimeout();
    return false;
}
Example #2
0
bool ScreenArea::on_enter_notify_event(GdkEventCrossing * _pstEvent)
{
  vStartCursorTimeout();
  return false;
}