2

クラスが存在するかどうか、またはそのクラスに関する情報をqDebugに出力させるにはどうすればよいですか?? これについてインターネット上に何もないなんて信じられない。私ink = new InkSpot(this;)が実際に有効なものを返していることを確認する必要があります。

ink = new InkSpot(this);
qDebug << ink;

X:\Development\InkPuppet\inkpuppet.cpp:70: error: C3867: 'QMessageLogger::debug': function call missing argument list; use '&QMessageLogger::debug' to create a pointer to member

QMessageLogger を使用してみましたが、さまざまなエラーが発生します。

ink.widgetに何かをしたためにプログラムがクラッシュするので、inkのコードを投稿します

それを呼び出すコードは次のとおりです。

ヘッダ: InkSpot *ink;

void InkPuppet::testButton()
{
    ink = new InkSpot(this);
    qDebug() << ink->widget;
    ui->testButton->setText("working");
}

インクスポット.h

#ifndef INKSPOT_H
#define INKSPOT_H

#include <QObject>
#include <QWidget>
#include <QPainter>
#include <QPaintEvent>
#include <QLabel>

namespace Ui {
class InkSpot;
}

class InkSpot : public QWidget
{
    Q_OBJECT
public:
    explicit InkSpot(QWidget *parent = 0);
    void draw(QPainter *painter);
    QWidget *widget;
    QLabel *label;

signals:

public slots:

protected:
    void paintEvent(QPaintEvent *event);

private:
    Ui::InkSpot *ui;

};

#endif // INKSPOT_H

インクスポット.cpp

#include "inkspot.h"
#include "inkpuppet.h"
#include "ui_inkpuppet.h"

#include <QtCore>
#include <QtGui>
#include <QWidget>
#include <QPainter>
#include <QPaintEvent>

InkSpot::InkSpot(QWidget *parent) :
    QWidget(parent)
{
}
void InkSpot::paintEvent(QPaintEvent *event)
{
    QFile *brushInput; //takes raw 8 bit grayscale image, 8 bit values only
    char *brushProto;
    uchar *brushData;

    brushInput = new QFile("x:\\Development\\InkPuppet\\brush.raw"); //open the raw file
    brushInput->open(QIODevice::ReadOnly);
    QDataStream in;
    in.setDevice(brushInput);
    int size = brushInput->size(); //set size to length of raw file

    brushProto = new char[size];
    in.readRawData(brushProto, size); //read file into prototype
    brushData = new uchar[size];

    for(int i = 0; i < size; ++i)
    {
        brushData[i] = (uchar)brushProto[i]; //copy char to uchar array
    }

    QImage test(brushData, 128, 128, QImage::Format_Indexed8);
    QImage test2(128, 128, QImage::Format_ARGB32);

    QVector<QRgb> vectorColors(256); //create color table
    for(int c = 0; c < 256; c++)
    {
        vectorColors[c] = qRgb(c, c, c);
    }

    test.setColorTable(vectorColors);

    for(int iX = 0; iX < 100; ++iX)
    {
        for(int iY = 0; iY < 100; ++iY)
        {
            test2.setPixel(iX, iY, qRgba(255 - (qrand() % 100), 0 + (qrand() % 100), 0 + (qrand() % 100), qAbs((int)test.pixel(iX, iY)-255)));
        }
    }

    //final conversion for stencil and color brush
    QPixmap testPixmap = QPixmap::fromImage(test2);
    QPixmap testPixmap2 = QPixmap::fromImage(test);

    QPainter painter(this);

    painter.drawPixmap(150, 50, 100, 100, testPixmap);
    painter.drawPixmap(50, 50, 100, 100, testPixmap2);

    delete[] brushProto;
    delete[] brushData;
    delete brushInput;
}
4

1 に答える 1