C ++ / Qt - 错误:C2027:使用未定义的类型' QBitmap'

时间:2016-11-25 17:38:58

标签: c++ qt

我试图在Qt创建程序上向QLabel添加图像。但是在编译程序时出现错误:C:\Users\*****\Documents\GameAPP\main.cpp:12: error: C2027: use of undefined type 'QBitmap'

在Windows 10上使用Qt 5.7和5.6版。

这是我的代码:

main.cpp中:

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    QLabel *l = new QLabel();
    QPixmap p("C:\Users\*****\Pictures\Start_Orb.png");
    l->setPixmap(p);
    l->setMask(p.mask()); //error at this line
    l->setFixedSize(20, 20);
    l->move(20, 20);
    l->show();
    return a.exec();
}

mainwindow.h:

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QPixmap>
#include <QLabel>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

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

private:
    Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H

mainwindow.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
}

MainWindow::~MainWindow()
{
    delete ui;
}

1 个答案:

答案 0 :(得分:2)

您只需添加#include <QBitmap>即可。