2

QQuickItem を使用して QT5 で痛い問題があります。QML で純粋な openGL を使用して 3D モデルを描画する必要があったため、独自のカスタム QQuickItem を作成しました。これまでのところ、すべてが期待どおりに機能しています。3D モデルは QML で美しく表示されています。

この問題は、カスタム QQuickItem の横にある同じ QML に単純な Rectangle を配置したいときに発生します。3D モデルが表示されなくなりました。何故ですか?

これが私のカスタムクイックアイテムコードです:

    MQuickItem::MQuickItem(){
        isInit = false;

    connect(this, SIGNAL(windowChanged(QQuickWindow*)), this, SLOT(handleWindowChanged(QQuickWindow*)));
}


    void MQuickItem::handleWindowChanged(QQuickWindow *win){
        w = new SMThickness3DView(/*width(), height()*/);

    if(win){
        connect(win, SIGNAL(sceneGraphInitialized()), this, SLOT(initializeMGL()), Qt::DirectConnection);
        connect(win, SIGNAL(beforeRendering()), this, SLOT(paintMGL()), Qt::DirectConnection);
        connect(win, SIGNAL(widthChanged(int)), this, SLOT(resizeMGL()), Qt::DirectConnection);
        connect(win, SIGNAL(heightChanged(int)), this, SLOT(resizeMGL()), Qt::DirectConnection);

        win->setClearBeforeRendering(false);
    }
}

void MQuickItem::initializeMGL(){
    w->initializeGL();
    isInit = true;
}

void MQuickItem::paintMGL(){
    w->paintGL();
//    connect(window()->openglContext(), SIGNAL(aboutToBeDestroyed()), this, SLOT(cleanupMGL()), Qt::DirectConnection);
}

void MQuickItem::resizeMGL(){
    if(isInit){
        w->resizeGL(width(), height());
        w->paintGL();
    }
}

void MQuickItem::cleanupMGL(){
}

void MQuickItem::rotatePerson(bool toLeft){
    if(toLeft)
        w->setYaw(std::min(w->getYaw() + 2., 90.));
    else
        w->setYaw(std::max(w->getYaw() - 2.0, -90.0));
}

そして、これが私のQMLで、3Dモデルの上に小さな長方形があります:

Item {
    anchors.fill: parent
    anchors.centerIn: parent

    MQuickItem {
        id: obj

        property bool mReleased: true
        anchors.fill: parent

        MouseArea{
            id: mArea
            anchors.fill: parent
            drag.target: dummy

            property int initialPressedX;
            property int initialPressedY;

            onPressed: {
                initialPressedX = mArea.mouseX;
                initialPressedY = mArea.mouseY;
            }

            onPositionChanged: {
                var diff = mArea.mouseX - initialPressedX;

                if(Math.abs(diff) > 10){
                    if(diff < 0){
                        obj.rotatePerson(false)
                    }
                    else{
                        obj.rotatePerson(true)
                    }

                    initialPressedX = mArea.mouseX;
                    initialPressedY = mArea.mouseY;
                }
            }

            Rectangle{id: dummy}
        }
    }
    Rectangle{
        id:thisIsTheRectangleThatMakesMyModelDisapear
        width: 50
        height: 50
        color:"red"
    }
}

少なくともこの問題の説明や提案を誰かに教えてもらえますか?

4

0 に答える 0