D:\Users\17574\Documents\sample\tuozhuaiandlianxian\mainwindow.h:35: error: invalid use of incomplete type 'class QGraphicsSceneMouseEvent' In file included from ..\tuozhuaiandlianxian\mainwindow.cpp:2: ..\tuozhuaiandlianxian\mainwindow.h: In member function 'virtual void MyRectItem::mousePressEvent(QGraphicsSceneMouseEvent*)': ..\tuozhuaiandlianxian\mainwindow.h:35:26: error: invalid use of incomplete type 'class QGraphicsSceneMouseEvent' 35 | m_lastPos = event->scenePos(); | ^~
时间: 2024-01-22 14:20:06 浏览: 182
mainwindow.h
这个错误通常是由于未正确包含头文件或命名空间导致的。在此情况下,您需要包含 `<QGraphicsSceneMouseEvent>` 头文件。您还需要确保在使用 `QGraphicsSceneMouseEvent` 时正确使用命名空间。可以使用 `using namespace` 语句来简化命名空间的使用,例如:
```cpp
#include <QGraphicsSceneMouseEvent>
class MyRectItem : public QGraphicsRectItem
{
public:
MyRectItem(QGraphicsItem* parent = nullptr);
protected:
void mousePressEvent(QGraphicsSceneMouseEvent* event) override;
private:
QPointF m_lastPos;
};
void MyRectItem::mousePressEvent(QGraphicsSceneMouseEvent* event)
{
using namespace Qt;
if (event->button() == LeftButton)
{
m_lastPos = event->scenePos();
}
}
```
如果问题仍然存在,请确保您的 Qt 版本已正确安装并与您的 IDE 或构建系统配置相匹配。
阅读全文