QGraphicsItem子类抛出X错误并崩溃

问题描述

| 我正在尝试创建一个QGraphicsItem,它将以线程方式从文件提取数据,并在读入数据后显示它。请看代码
#ifndef TILE_H
#define TILE_H

#include <QGraphicsItem>
#include <QThread>
#include <QFutureWatcher>
#include <QtConcurrentRun>
#include \"gdal_priv.h\"
#include <QPainter>

class Tile : public QObject,public QGraphicsItem
{
    Q_OBJECT
    Q_INTERFACES(QGraphicsItem)

public:
    Tile(QGraphicsItem *parent = 0);

    Tile( int nBlocksX,int nBlocksY,int xoffset,int yoffset,int nXBlockSize,int nYBlockSize,int A_BPP,QGraphicsItem *parent=0);
    ~Tile();
    void LoadTilepixmap();

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

private:
    QFutureWatcher<void> *watcher;
    QFuture<void> *future;
    QImage *image;
    const qstyleOptionGraphicsItem *TileOption;
    QPainter *TilePainter;
    QWidget *TileWidget;
    int nBlocksX,nBlocksY,nBlockXSize,nBlockYSize,tilePosX,tilePosY,A_BPP;

signals:

public slots:
    void updateSceneslot();

};

#endif // TILE_H
和.cpp
#include \"tile.h\"

Tile::Tile(QGraphicsItem *parent) : QGraphicsItem(parent)
{
}

Tile::~Tile()
{
}
Tile::Tile(int nBlocksX,QGraphicsItem *parent)
    : QGraphicsItem(parent)
{
//set some flags and size parameters related to reading from the file on disk. All instances of this QGraphicsItem read from the same file
    this->nBlocksX = nBlocksX;
    this->nBlocksY = nBlocksY;
    this->nBlockXSize = nXBlockSize;
    this->nBlockYSize = nYBlockSize;
    this->tilePosX =xoffset;
    this->tilePosY = yoffset;
    this->A_BPP = A_BPP;
    setCacheMode(NoCache);
    setFlag(QGraphicsItem::ItemIsMovable,false);
    setActive(true);
    this->setAcceptHoverEvents(true);
    this->setFlag(QGraphicsItem::ItemIsFocusable);
    this->image = NULL;

    this->future = new QFuture<void>;
    this->watcher = new QFutureWatcher<void>;
    connect(watcher,SIGNAL(finished()),this,SLOT(updateSceneslot()));
}
QRectF Tile::boundingRect() const
{
    if(image == NULL)
        return(QRectF(0,0));

    return(QRectF(0,image->width(),image->height()));
}

void Tile::updateSceneslot()
{
    qDebug(\"updateSceneslot Thread id %i\",QThread::currentThread());
    this->paint(TilePainter,TileOption,TileWidget);
}

void Tile::paint(QPainter *painter,QWidget *widget)
{
    if(image==NULL)
    {
        TilePainter=painter;
        TileOption=option;
        TileWidget=widget;
        qDebug()<<\"Paint Thread id \"<< QThread::currentThread();
        *future=QtConcurrent::run(this,&Tile::LoadTilepixmap);
        watcher->setFuture(*future);

    }

    QPointF *p = new QPointF(0.0,0.0);
    painter->drawImage(*p,*image);
}

void Tile::LoadTilepixmap()
{
 /*...populate floatData with data from file...*/

    image = new QImage(nXSize,nYSize,QImage::Format_RGB32);
        for (int i = 0 ; i < nYSize ; i++)
        {
             for (int j = 0 ; j < nXSize ; j++)
             {
                    image->setPixel(j,i,qRgb((unsigned char)floatData[i*nXSize+j],(unsigned char)floatData[i*nXSize+j],(unsigned char)floatData[i*nXSize+j]));
             }
         }


}
这样可以编译良好,但是当我尝试加载图像时,出现了很多X错误,程序退出了:
.
.
.
X Error: BadGC (invalid GC parameter) 13
  Major opcode: 60 (X_FreeGC)
  Resource id:  0x1c002bb
X Error: RenderBadPicture (invalid Picture parameter) 181
  Extension:    156 (RENDER)
  Minor opcode: 7 (RenderFreePicture)
  Resource id:  0x1c002ba
X Error: Badpixmap (invalid pixmap parameter) 4
  Major opcode: 54 (X_Freepixmap)
  Resource id:  0x1c002b9
X Error: BadAlloc (insufficient resources for operation) 11
  Major opcode: 53 (X_Createpixmap)
  Resource id:  0x1c002bc
X Error: BadDrawable (invalid pixmap or Window parameter) 9
  Extension:    156 (RENDER)
  Minor opcode: 4 (RenderCreatePicture)
  Resource id:  0x1c002bc
X Error: BadDrawable (invalid pixmap or Window parameter) 9
  Major opcode: 55 (X_CreateGC)
  Resource id:  0x1c002bc
X Error: BadGC (invalid GC parameter) 13
  Major opcode: 56 (X_ChangeGC)
  Resource id:  0x1c002be
X Error: BadDrawable (invalid pixmap or Window parameter) 9
  Major opcode: 70 (X_polyFillRectangle)
  Resource id:  0x1c002bc
X Error: BadGC (invalid GC parameter) 13
  Major opcode: 60 (X_FreeGC)
  Resource id:  0x1c002be
X Error: RenderBadPicture (invalid Picture parameter) 181
  Extension:    156 (RENDER)
  Minor opcode: 7 (RenderFreePicture)
  Resource id:  0x1c002bd
X Error: Badpixmap (invalid pixmap parameter) 4
  Major opcode: 54 (X_Freepixmap)
  Resource id:  0x1c002bc
Paint Thread id  QThread(0x105feac0) 
The program has unexpectedly finished.
我究竟做错了什么?当我设置了单线程时,我可以做到这一点。     

解决方法

        您的图片加载代码不是线程安全的,因为QImage不是线程安全的。那应该是您崩溃的原因。 您还会在paint()中出现泄漏,例如在堆上创建但从未删除的QPoint。只需在堆栈而不是堆上创建它即可。图像相同:您泄漏了它,也不需要在堆上创建QImage \。 (它们是隐式共享的,因此副本便宜)。