#include <QtGui/qgraphicssceneevent.h>
#ifndef QGRAPHICSSCENEEVENT_H
#if !defined(QT_NO_GRAPHICSVIEW) || (QT_EDITION & QT_MODULE_GRAPHICSVIEW) != QT_MODULE_GRAPHICSVIEW
class QGraphicsSceneEvent: public QEvent{
public: QGraphicsSceneEvent(enum QEvent::Type type);
public: virtual ~QGraphicsSceneEvent();
public: struct QWidget* widget() const
public: void setWidget(struct QWidget* widget);
protected: QGraphicsSceneEvent(struct QGraphicsSceneEventPrivate& dd, enum QEvent::Type type = QEvent::None);
protected: struct QGraphicsSceneEventPrivate* d_ptr;
protected: inline struct QGraphicsSceneEventPrivate* d_func();
protected: inline struct QGraphicsSceneEventPrivate const * d_func() const
friend struct QGraphicsSceneEventPrivate;
};
#endif // QT_NO_GRAPHICSVIEW
#endif