使用不完全类型Qt的Invalide

时间:2016-01-01 19:09:23

标签: c++ qt linker base-class

我有一点问题:

finddialog.h

#ifndef FINDDIALOG_H
#define FINDDIALOG_H

class QDialog;
class QWidget;
class QLineEdit;
class QPushButton;
class QCheckBox;
class QLabel;

class FindDialog : public QDialog
{
    Q_OBJECT


public:
    FindDialog(QWidget *parent);

private slots:
    void findClicked();
    void enableFindButton(const QString &text);

signals :
    void findNext(const QString &str, Qt::CaseSensitivity cs);
    void findPrev(const QString &str, Qt::CaseSensitivity cs);

private:
    QLabel *findLabel;
    QLineEdit *textEdit;
    QCheckBox *caseCheckBox;
    QCheckBox *backwCheckBox;
    QPushButton *findButton;
    QPushButton *closeButton;

};

#endif // FINDDIALOG_H

finddialog.c

#include <QtWidgets>
#include "finddialog.h"


FindDialog::FindDialog(QWidget *parent) : QDialog(parent)
{
    QPushButton *button = new QPushButton(this);
}

void FindDialog::findClicked()
{

}

void FindDialog::enableFindButton(const QString &text)
{

}

我收到QDialog / QPushButton无效使用不完整类型错误。

我已将QtWidget添加到.cpp文件中,为什么它不起作用?

2 个答案:

答案 0 :(得分:4)

对于基类类型,

(Forward)声明是不够的。您必须提供定义(使QDialog成为完整类型),所以:

#include <QDialog>
头文件中的

。请参阅str[regexp] reference

根据您发布的代码,我不知道QPushButton不完整的错误来自哪里(当然,如果您#include <QtWidgets>。)

如果你没有#include <QtWidgets>(有#include <QPushButton>等等),你就无法实例化任何这些不完整的类型,如下所示:

new QPushButton(this);

再一次,需要一个定义(内存大小QPushButton需要什么?要调用什么构造函数?只有在编译单元中有一个定义 - .cpp文件时才知道。

答案 1 :(得分:0)

通过QPushButtonfinddialog.h中的其他人的前向声明,编译器希望在某些链接文件中找到它们的构造函数和其他方法。
#include所需的头文件以使其正常工作。