创建 QGraphicsItems 列表时出错

发布于 2024-11-27 14:03:34 字数 1056 浏览 5 评论 0原文

我有一个 QGraphicsScene,我想在其上绘制一些特殊的曲线。为此,我创建了一个类,在其中将这些特殊曲线定义为新的 QGraphicsItem:

    #include < QGraphicsItem>

    class Clothoid : public QGraphicsItem
    {
    public:
        Clothoid(QPoint startPoint, QPoint endPoint);
        virtual ~Clothoid();

        QPoint sPoint;
        QPoint ePoint;
        float startCurvature;
        float endCurvature;
        float clothoidLength;

    protected:
        QRectF boundingRect() const;
        void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);

    };

并且我尝试将每个项目插入两次:一次在我定义的数组中:

    QList< Clothoid> clothoids;

一次在场景中:

    void renderArea::updateClothoid(const QPoint &p1, const QPoint &p2)
    {
        Clothoid *temp = new Clothoid(p1, p2);

        clothoids.append(&temp);

        scene->addItem(&temp);
    }

但我收到这两个错误:

没有匹配的函数用于调用“QList::append(Clothoid**)”,

并且

没有匹配的函数用于调用“QGraphicsScene::addItem(Clothoid**)”

我做错了什么?

I have a QGraphicsScene on which I would like to draw some special curves. For that I made a class in which I define these special curves as a new QGraphicsItem:


    #include < QGraphicsItem>

    class Clothoid : public QGraphicsItem
    {
    public:
        Clothoid(QPoint startPoint, QPoint endPoint);
        virtual ~Clothoid();

        QPoint sPoint;
        QPoint ePoint;
        float startCurvature;
        float endCurvature;
        float clothoidLength;

    protected:
        QRectF boundingRect() const;
        void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);

    };

and I try to insert each item twice: once in an array I defined:


    QList< Clothoid> clothoids;

and once in the scene:


    void renderArea::updateClothoid(const QPoint &p1, const QPoint &p2)
    {
        Clothoid *temp = new Clothoid(p1, p2);

        clothoids.append(&temp);

        scene->addItem(&temp);
    }

But I get these 2 errors:

no matching function for call to 'QList::append(Clothoid**)'

and

no matching function for call to 'QGraphicsScene::addItem(Clothoid**)'

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遇到 2024-12-04 14:03:34

那应该是:

clothoids.append(temp);
scene->addItem(temp);

QList 应该定义为:

QList<Clothoid*> clothoids;

That should be:

clothoids.append(temp);
scene->addItem(temp);

The QList should be defined as:

QList<Clothoid*> clothoids;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文