src/gui/kernel/qevent.cpp
changeset 33 3e2da88830cd
parent 18 2f34d5167611
child 37 758a864f9613
equal deleted inserted replaced
30:5dc02b23752f 33:3e2da88830cd
  3419     case QEvent::ChildAdded: n = n ? n : "ChildAdded";
  3419     case QEvent::ChildAdded: n = n ? n : "ChildAdded";
  3420     case QEvent::ChildPolished: n = n ? n : "ChildPolished";
  3420     case QEvent::ChildPolished: n = n ? n : "ChildPolished";
  3421     case QEvent::ChildRemoved: n = n ? n : "ChildRemoved";
  3421     case QEvent::ChildRemoved: n = n ? n : "ChildRemoved";
  3422         dbg.nospace() << "QChildEvent(" << n << ", " << (static_cast<const QChildEvent*>(e))->child();
  3422         dbg.nospace() << "QChildEvent(" << n << ", " << (static_cast<const QChildEvent*>(e))->child();
  3423         return dbg.space();
  3423         return dbg.space();
       
  3424 #ifndef QT_NO_GESTURES
  3424     case QEvent::Gesture:
  3425     case QEvent::Gesture:
  3425         n = "Gesture";
  3426         n = "Gesture";
  3426         break;
  3427         break;
       
  3428 #endif
  3427     default:
  3429     default:
  3428         dbg.nospace() << "QEvent(" << (const void *)e << ", type = " << e->type() << ')';
  3430         dbg.nospace() << "QEvent(" << (const void *)e << ", type = " << e->type() << ')';
  3429         return dbg.space();
  3431         return dbg.space();
  3430     }
  3432     }
  3431 
  3433 
  4252         delete d;
  4254         delete d;
  4253     d = other.d;
  4255     d = other.d;
  4254     return *this;
  4256     return *this;
  4255 }
  4257 }
  4256 
  4258 
       
  4259 #ifndef QT_NO_GESTURES
  4257 /*!
  4260 /*!
  4258     \class QGestureEvent
  4261     \class QGestureEvent
  4259     \since 4.6
  4262     \since 4.6
  4260     \ingroup events
  4263     \ingroup events
  4261     \ingroup gestures
  4264     \ingroup gestures
  4556 
  4559 
  4557     \sa QEvent::ignore()
  4560     \sa QEvent::ignore()
  4558 */
  4561 */
  4559 #endif
  4562 #endif
  4560 
  4563 
       
  4564 #endif // QT_NO_GESTURES
       
  4565 
  4561 QT_END_NAMESPACE
  4566 QT_END_NAMESPACE