1

情况:我Dialog在 Qt 中有一堂课,我在上面画了一个正方形的栅格。正方形在MySquare类中实现(MySquare:QGraphicsItem)。

问题:我想向 Dialog 槽发出信号,setTarget()表明单击了一个正方形(显然我想给它一些关于该正方形的信息,例如稍后它的 x 和 y 坐标)。但是我得到一个“未定义的引用MySquare::targetChanged()”错误。我一直在寻找解决方案,但没有找到任何解决方案;有人有想法吗?

编辑:我在 MySquare 中添加了一个 Q_OBJECT 宏,但是错误并没有消失,我得到一个额外的“'未定义引用' vtable for MySquare()'错误

对话框.h

class Dialog : public QDialog
{
    Q_OBJECT

public:
    explicit Dialog(QWidget *parent = 0);

  ~Dialog();


public slots:
    void setTarget();

private:
    Ui::Dialog *ui;
    QGraphicsScene *scene;
};

对话框.cpp

Dialog::Dialog(QWidget *parent) : QDialog(parent), ui(new Ui::Dialog)
{
    ui->setupUi(this);

    scene = new QGraphicsScene(this);
    ui->graphicsView->setScene(scene);

    MySquare *item;

    item = new MySquare(30,30,30,30);
    QObject::connect(item,SIGNAL(targetChanged()),this,SLOT(setTarget()));
}

void Dialog::setTarget(){
    qDebug() << "signal recieved" << endl;
}

mysquare.h

#include <QGraphicsItem>
#include <QPainter>
#include <QDebug>
#include <QKeyEvent>
#include <QObject>

class MySquare : public QGraphicsItem, public QObject
{

Q_OBJECT

public:
    MySquare(int x,int y,int h, int w);
    QRectF boundingRect() const;
    void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
    int x,y,h,w;

signals:
    void targetChanged();

protected:
    void mousePressEvent(QGraphicsSceneMouseEvent *event);
    void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
    void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
};

mysquare.cpp

#include "mysquare.h"
#include <QGraphicsSceneDragDropEvent>
#include <QWidget>

MySquare::MySquare(int _x,int _y, int _w, int _h)
{

    setAcceptDrops(true);
    color=Qt::red;
    color_pressed = Qt::green;
    x = _x;
    y = _y;
    w = _w;
    h = _h;
}


QRectF MySquare::boundingRect() const
{
    return QRectF(x,y,w,h); 
}


void MySquare::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{
    QRectF rec = boundingRect();
    QBrush brush(color);

        if (Pressed){
            brush.setColor(color);
        } else {
            brush.setColor(color_pressed);
        }

    painter->fillRect(rec,brush);
    painter->drawRect(rec);
}


void MySquare::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
    Pressed=true;
    update();
    QGraphicsItem::mousePressEvent(event);

    emit targetChanged();
}



void MySquare::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
    Pressed=false;
    update();
    QGraphicsItem::mouseReleaseEvent(event);
    qDebug() << "mouse Released";
}

void MySquare::mouseMoveEvent(QGraphicsSceneMouseEvent *event){
    qDebug() << "mouse Moved";
    QDrag *drag = new QDrag(event->widget());
    QMimeData *mime = new QMimeData;
    drag->setMimeData(mime);
    drag->exec();
}


void MySquare::keyPressEvent(QKeyEvent *event){
    //out of bounds check?
    int x = pos().x();
    int y = pos().y();

    QGraphicsItem::keyPressEvent(event);

}
4

2 回答 2

3

编辑:如果您对 vtable 有未定义的引用,那么可能是因为您没有实现某些虚函数。您是否在MySquare某处实现了该类的鼠标事件处理程序?你也实现了类的boundingRect()paint()功能MySquare吗?

旧答案:您需要Q_OBJECT在类中打开“{”之后编写宏MySquare。Qt 也会在某些时候抱怨多重继承。因此,不是从QGraphicsItemandQObject继承,QGraphicsObject而是从继承。

链接器抱怨缺少函数定义的实际原因如下:当您将Q_OBJECT宏放入正确的位置时,Qt 元对象编译器 (MOC) 将为项目生成一个新的 cpp 文件,其中包含相应类的信号功能。因此,Qt 为您实现了每个信号的功能。如果您不插入Q_OBJECT宏,那么 MOC 将不会为您做任何事情,并且链接器将缺少信号的函数定义。

于 2013-01-05T14:02:03.297 回答
0

尝试执行以下步骤:

构建-清理构建-运行 qmake 构建-构建。

添加 Q_Object Makro 后,可能未在 Makefile 中设置 moc 选项。因此,您必须刷新您的 Makefile。

希望这可以帮助。

于 2013-01-07T20:31:27.997 回答