Home | History | Annotate | Download | only in qt

Lines Matching refs:Qt

44     if (event->button() == Qt::LeftButton || (event->buttons() & Qt::LeftButton))
46 else if (event->button() == Qt::RightButton || (event->buttons() & Qt::RightButton))
48 else if (event->button() == Qt::MidButton || (event->buttons() & Qt::MidButton))
83 static inline WebEvent::Modifiers modifiersForEvent(Qt::KeyboardModifiers modifiers)
86 if (modifiers & Qt::ShiftModifier)
88 if (modifiers & Qt::ControlModifier)
90 if (modifiers & Qt::AltModifier)
92 if (modifiers & Qt::MetaModifier)
127 if (e->orientation() == Qt::Horizontal) {
154 bool isKeypad = (state & Qt::KeypadModifier);
181 case Qt::TouchPointReleased:
184 case Qt::TouchPointMoved:
187 case Qt::TouchPointPressed:
190 case Qt::TouchPointStationary:
201 bool m_ctrlKey = (event->modifiers() & Qt::ControlModifier);
202 bool m_altKey = (event->modifiers() & Qt::AltModifier);
203 bool m_shiftKey = (event->modifiers() & Qt::ShiftModifier);
204 bool m_metaKey = (event->modifiers() & Qt::MetaModifier);