我正在尝试在 MainWindow 中创建一个 QGraphicScene(具有适当的视图)。场景在单独的类中定义(主窗口的子小部件)。
打开操作效果很好,我可以打开每张图片,但它们总是在新窗口中打开,而不是在主窗口中。
当我在子小部件中创建标签(左右)时,它会在主窗口中正确显示。所以问题似乎是 QGraphicScene 或 QGraphicView。
主窗口:
MainWindow::MainWindow()
{
QWidget *widget = new QWidget;
setCentralWidget(widget);
PictureArea = new picturearea(this);
QHBoxLayout *HLayout = new QHBoxLayout(this);
HLayout->addWidget(PictureArea,1);
widget->setLayout(HLayout);
createActions();
createMenus();
this->setMinimumSize(800,600);
this->resize(800,600);
}
...
void MainWindow::open()
{
QString fileName = QFileDialog::getOpenFileName(this, tr("Open Image"),
QDir::currentPath(), tr("Image Files (*.png *.jpg)"));
if (!fileName.isEmpty())
{
QImage image(fileName);
if (image.isNull())
{
QMessageBox::information(this, tr("Image Viewer"),
tr("Cannot load %1.").arg(fileName));
return;
}
//transfer to child widget, guess no mistakes so far
PictureArea->setPicture(image);
}
}
图片区域:
picturearea::picturearea(QWidget *parent) : QWidget(parent)
{
}
void picturearea::setPicture(QImage image)
{
QGraphicsScene* scene = new QGraphicsScene();
QGraphicsView* view = new QGraphicsView(scene);
QGraphicsPixmapItem* item =
new QGraphicsPixmapItem(QPixmap::fromImage(image));
scene->addItem(item);
view->show();
}
如何在 MainWindow 中而不是在单独的窗口中创建场景?我正在使用 QT 4.7.4,Windows7 64 位。