qt图形场景中qtgraphics项的对齐

时间:2013-04-09 10:52:24

标签: c++ qt user-interface graphics

我有一个图形视图,其中包含一些带有图形项目的场景。如何使这些图形项目显示在场景的左侧而不是中心?

我看过很多想法,但没有运气。

2 个答案:

答案 0 :(得分:1)

最简单的方法是添加一个不可见的QGraphicsRectItem作为第一项。

然后添加其他项目作为第一项的子项。

第一项的中心是协调的中心。

QGraphicsScene *scene = new QGraphicsScene(widget.graphicsView);

// ....

QGraphicsRectItem *frame = scene->addRect(-100,-100,100,100);
frame->setPen(Qt::NoPen);

// ....

// Add new items as children of frame
// Align them relative to their parent

                           ^
                           |
                           |
        -100,100           |            100,100
            +-----------------------------+
            |              |              |
            |              |              |
            |              |              |
            |              |              |
            |              |              |
            |              |              |
            |              |              |
---------------------------+------------------------>
            |              |              |
            |              |              |
            |              |              |
            |              |              |
            |              |              |
            |              |              |
            |              |              |
            +-----------------------------+
        -100,100           |            100,-100
                           |

要使其了解窗口大小,请覆盖以下方法:

class MainForm : public QMainWindow
{
//...

QGraphicsScene *scene;     // Move it here
QGraphicsRectItem *frame;  // Move it here

protected:
    virtual void resizeEvent(QResizeEvent * event);
    virtual bool event(QEvent * event);
    virtual void resizeAction();
//...
};

void MainForm::resizeAction()
{
    QRectF rect(field->rect());
    widget.graphicsView->setSceneRect(rect);
    widget.graphicsView->fitInView(rect, Qt::KeepAspectRatio);
}

void MainForm::resizeEvent(QResizeEvent * event)
{
    resizeAction();
    QMainWindow::resizeEvent(event);
}

bool MainForm::event(QEvent * event)
{
    if (event->type() == QEvent::Show)
        resizeAction();

    return QMainWindow::event(event);
}

答案 1 :(得分:0)

Scene_item.setSceneRect(x0,y0,x1,y1);