首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > QT开发 >

QT 出现为解析的外部符号,该怎么解决

2013-05-02 
QT 出现为解析的外部符号#include dialog.h#include QApplication#includeQDialog#includeQCheckBo

QT 出现为解析的外部符号

#include "dialog.h"
#include <QApplication>
#include<QDialog>
#include<QCheckBox>
#include<QLabel>
#include<QPushButton>
#include<QLineEdit>
#include<QHBoxLayout>
#include<QVBoxLayout>
class FindDialog:public QDialog
{
    Q_OBJECT
public:
    FindDialog(QWidget *parent=0);
    ~FindDialog();
signals:
    void findNext(const QString &str,Qt::CaseSensitivity cs);
    void findPrevious(const QString &str,Qt::CaseSensitivity cs);
private slots:
    void findClicked();
    void enableFindButton(const QString &text);
private:
    QLabel *label;
    QLineEdit *lineEdit;
    QCheckBox *caseCheckBox;
    QCheckBox *backwardCheckBox;
    QPushButton *findButton;
    QPushButton *closeButton;
};
FindDialog::FindDialog(QWidget *parent):QDialog(parent)
{
    label=new QLabel(tr("Find &what:"));
    lineEdit=new QLineEdit;
    label->setBuddy(lineEdit);
    caseCheckBox=new QCheckBox(tr("Match &case"));
    backwardCheckBox=new QCheckBox(tr("Search &backford"));
    findButton=new QPushButton(tr("&Find"));
    findButton->setDefault(true);
    findButton->setEnabled(false);
    closeButton=new QPushButton(tr("Close"));
    connect(lineEdit,SIGNAL(textChanged(const QString&)),this,SLOT(enableFindButton(QString&)));
    connect(findButton,SIGNAL(clicked()),this,SLOT(findClicked()));
    connect(closeButton,SIGNAL(clicked()),this,SLOT(close()));
    QHBoxLayout *topLeftLayout=new QHBoxLayout;
    topLeftLayout->addWidget(label);
    topLeftLayout->addWidget(lineEdit);
    QVBoxLayout *leftLayout=new QVBoxLayout;
    leftLayout->addLayout(topLeftLayout);
    leftLayout->addWidget(closeButton);
    leftLayout->addWidget(backwardCheckBox);
    QVBoxLayout *rightLayout=new QVBoxLayout;
    rightLayout->addWidget(findButton);
    rightLayout->addWidget(closeButton);
    rightLayout->addStretch();
    QHBoxLayout *mainLayout=new QHBoxLayout;
    mainLayout->addLayout(leftLayout);
    mainLayout->addLayout(rightLayout);
    setLayout(mainLayout);
    setWindowTitle(tr("Find"));
    setFixedHeight(sizeHint().height());
}

FindDialog::~FindDialog(){}
void FindDialog::findClicked()
{
    QString text=lineEdit->text();
    Qt::CaseSensitivity cs=caseCheckBox->isChecked()?Qt::CaseInsensitive:Qt::CaseSensitive;
    if(backwardCheckBox->isChecked())
    {
        emit findPrevious(text,cs);
    }


    else
    {
        emit findNext(text,cs);
    }
}

void FindDialog::enableFindButton(const QString &text)
{
    findButton->setEnabled(!text.isEmpty());
}

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    FindDialog *dialog=new FindDialog;
    dialog->show();
    return a.exec();
}



main.obj:-1: 错误:LNK2001: 无法解析的外部符号 "public: virtual struct QMetaObject const * __cdecl FindDialog::metaObject(void)const " (?metaObject@FindDialog@@UEBAPEBUQMetaObject@@XZ)
main.obj:-1: 错误:LNK2001: 无法解析的外部符号 "public: virtual void * __cdecl FindDialog::qt_metacast(char const *)" (?qt_metacast@FindDialog@@UEAAPEAXPEBD@Z)

等等 一共六个
[解决办法]
slots实现要写到CPP文件中
[解决办法]
如果代码没错,这个估计就是Qt5的QtCreator的BUG,重新qmake,再build。

热点排行