質問

qgraphicsview qgraphicsitemを使用して、チェスのようなシーンを作成しようとしています。

私はそれを作成しようとして公式の例に従っていますが、表示するものは何もありません。コードはかなり同じです。最初は、私のセルクラスだと思います。だから私はただ長方を描画しようとしています。しかし、表示するものは何もありません。以下は私のコードです、誰かが私を助けてくれますか。 Windows 7でQT 4.7を使用しています

Cell.H

class Cell : public QGraphicsItem
{
    //Q_OBJECT;

public:
    Cell(const QColor &color,int x, int y);
    QRectF boundingRect() const;
    void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
private:
    int x,y;
public:
    QColor color;
protected:
     void mousePressEvent(QGraphicsSceneMouseEvent *event);
};

cell.cpp

Cell::Cell(const QColor &color, int x, int y)
{
    this->x=x;
    this->y=y;
    this->color=color;
    setAcceptedMouseButtons(Qt::LeftButton);

}

QRectF Cell::boundingRect() const
{
    return QRectF(0,0,30,15);
}

void Cell::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{


    QBrush b=painter->brush();
    painter->setBrush(QColor::fromRgb(0,0,255));
    painter->drawRect(0,0,30,15);
    painter->fillRect(this->boundingRect(),QColor::fromRgb(0,0,255));
    painter->setBrush(b);
    return;
}

void Cell::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
    QGraphicsItem::mouseMoveEvent(event);
    this->color=QColor::fromRgb(0,0,0);
    update();

}

view.h

class View : public QFrame
{
    Q_OBJECT

public:
    QGraphicsView *getview() const;

public:
    View(QWidget *parent);
private:
    QGraphicsView *graphicsView;
};

view.cpp

View::View(QWidget *parent)
    :QFrame(parent)
{
    graphicsView = new QGraphicsView;
    graphicsView->setRenderHint(QPainter::Antialiasing, false);
    graphicsView->setOptimizationFlags(QGraphicsView::DontSavePainterState);
    graphicsView->setViewportUpdateMode(QGraphicsView::SmartViewportUpdate);
}

QGraphicsView *View::getview() const
{
    return graphicsView;
}

MainWindow.H

class MainWindow : public QWidget
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

private:
    void populateScene();

    QGraphicsScene *scene;
};

mainwindow.cpp

MainWindow::MainWindow(QWidget *parent) :
    QWidget(parent)
{
    populateScene();
    View *v=new View(0);
    v->getview()->setScene(scene);

    QHBoxLayout *layout = new QHBoxLayout;
    layout->addWidget(v);
    setLayout(layout);
}

MainWindow::~MainWindow()
{
}

void MainWindow::populateScene()
{
    scene=new QGraphicsScene();
    for(int x=0;x<30;x++)
    {
        for(int y=0;y<20;y++)
        {
            QGraphicsItem *item=new Cell(QColor::fromRgb(0,255,255),30,15);
            item->setPos(QPointF(30,15));
            scene->addItem(item);
        }
    }
}

main.cpp

QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
役に立ちましたか?

解決

あなたのQFrameはあなたのqgraphicsviewを「所有」していません。そのため、内部にビューを表示する理由はありません。

交換するだけです

graphicsView = new QGraphicsView;

と :

graphicsView = new QGraphicsView(this);

そして、ウィンドウをサイズ変更することを忘れないでください(またはコードで最小サイズに設定します)。

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top