1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#ifndef QTSCRIPTSHELL_QGRAPHICSTEXTITEM_H
#define QTSCRIPTSHELL_QGRAPHICSTEXTITEM_H
#include <qgraphicsitem.h>
#include <QtScript/qscriptvalue.h>
class QtScriptShell_QGraphicsTextItem : public QGraphicsTextItem
{
public:
QtScriptShell_QGraphicsTextItem(QGraphicsItem* parent = 0, QGraphicsScene* scene = 0);
QtScriptShell_QGraphicsTextItem(const QString& text, QGraphicsItem* parent = 0, QGraphicsScene* scene = 0);
~QtScriptShell_QGraphicsTextItem();
void advance(int phase);
QRectF boundingRect() const;
void childEvent(QChildEvent* arg__1);
bool collidesWithItem(const QGraphicsItem* other, Qt::ItemSelectionMode mode) const;
bool collidesWithPath(const QPainterPath& path, Qt::ItemSelectionMode mode) const;
bool contains(const QPointF& point) const;
void contextMenuEvent(QGraphicsSceneContextMenuEvent* event);
void customEvent(QEvent* arg__1);
void dragEnterEvent(QGraphicsSceneDragDropEvent* event);
void dragLeaveEvent(QGraphicsSceneDragDropEvent* event);
void dragMoveEvent(QGraphicsSceneDragDropEvent* event);
void dropEvent(QGraphicsSceneDragDropEvent* event);
bool event(QEvent* arg__1);
bool eventFilter(QObject* arg__1, QEvent* arg__2);
QVariant extension(const QVariant& variant) const;
void focusInEvent(QFocusEvent* event);
void focusOutEvent(QFocusEvent* event);
void hoverEnterEvent(QGraphicsSceneHoverEvent* event);
void hoverLeaveEvent(QGraphicsSceneHoverEvent* event);
void hoverMoveEvent(QGraphicsSceneHoverEvent* event);
void inputMethodEvent(QInputMethodEvent* event);
QVariant inputMethodQuery(Qt::InputMethodQuery query) const;
bool isObscuredBy(const QGraphicsItem* item) const;
QVariant itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant& value);
void keyPressEvent(QKeyEvent* event);
void keyReleaseEvent(QKeyEvent* event);
void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event);
void mouseMoveEvent(QGraphicsSceneMouseEvent* event);
void mousePressEvent(QGraphicsSceneMouseEvent* event);
void mouseReleaseEvent(QGraphicsSceneMouseEvent* event);
QPainterPath opaqueArea() const;
void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget);
bool sceneEvent(QEvent* event);
bool sceneEventFilter(QGraphicsItem* watched, QEvent* event);
QPainterPath shape() const;
void timerEvent(QTimerEvent* arg__1);
int type() const;
void wheelEvent(QGraphicsSceneWheelEvent* event);
QScriptValue __qtscript_self;
};
#endif // QTSCRIPTSHELL_QGRAPHICSTEXTITEM_H
|