0

我是QT的新人。现在有一个问题让我感到困惑。

MainWindow中的代码如下:

MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
{
    QGraphicsView *view = new QGraphicsView;
    QGraphicsScene *scene =new QGraphicsScene;
    GraphicsTextItem *item = (GraphicsTextItem*)scene->addText(QString("hello world"));
    item->setPos(100,100);
    scene->addItem(item);
    QGraphicsItem *i = scene->itemAt(120,110);
    view->setScene(scene);
    view->show();
}

类 GraphicsTextItem 继承 QGraphicsTextItem 和受保护的方法 mousePressDown 重新实现如下:

void GraphicsTextItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
{
    qDebug()<<"mouseDoubleClickEvent happens";
    QGraphicsTextItem::mouseDoubleClickEvent(event);
}

应用程序可以正常工作,但是当我双击 GraphicsTextItem 对象时,GraphicsTextItem 类中的 mouseDoubleClickEvent 没有任何反应。

期待您的回应!

4

1 回答 1

2

我搜索了我的代码并开发了一个示例,因为我留下了一个问题,但这里是:

#include <QGraphicsTextItem>

class GraphicsTextItem : public QGraphicsTextItem
{
    Q_OBJECT

public:
    GraphicsTextItem(QGraphicsItem * parent = 0);

protected:
    void mouseDoubleClickEvent ( QGraphicsSceneMouseEvent * event );

};

执行:

#include "graphicstextitem.h"
#include <QDebug>
#include <QGraphicsSceneMouseEvent>

GraphicsTextItem::GraphicsTextItem(QGraphicsItem * parent)
    :QGraphicsTextItem(parent)
{
    setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
}

void GraphicsTextItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
{
    if (textInteractionFlags() == Qt::NoTextInteraction)
        setTextInteractionFlags(Qt::TextEditorInteraction);
    QGraphicsItem::mouseDoubleClickEvent(event);
}

风景

#include "mainwindow.h"
#include <QtGui>
#include <QtCore>
#include "graphicstextitem.h"

MainWindow::MainWindow(QWidget *parent) :
        QMainWindow(parent)
{
    QGraphicsScene * scene = new QGraphicsScene();
    QGraphicsView * view = new QGraphicsView();
    view->setScene(scene);

    GraphicsTextItem * text = new GraphicsTextItem();
    text->setPlainText("Hello world");
    scene->addItem(text);


    text->setPos(100,100);
    text->setFlag(QGraphicsItem::ItemIsMovable);
    setCentralWidget(view);
}

在此示例中,您可以通过双击与文本 QGraphicsTextItem 交互和更改。我希望你会有所帮助。

于 2011-10-10T21:03:47.770 回答