新建一个工程test,在窗体里放入上两章自定义的控件HLabel,编译,会出现以下提示:
- D:\Test\test-build-desktop-Qt_4_8_2__4_8_2__Debug\..\test\mainwindow.cpp:2: In file included from ..\test\mainwindow.cpp:2:
- D:\Test\test-build-desktop-Qt_4_8_2__4_8_2__Debug\ui_mainwindow.h:23: error: hlabel.h: No such file or directory
- D:\Test\test-build-desktop-Qt_4_8_2__4_8_2__Debug\..\test\mainwindow.cpp:2: In file included from ..\test\mainwindow.cpp:2:
- D:\Test\test-build-desktop-Qt_4_8_2__4_8_2__Debug\ui_mainwindow.h:31: error: ISO C++ forbids declaration of 'HLabel' with no type
- D:\Test\test-build-desktop-Qt_4_8_2__4_8_2__Debug\ui_mainwindow.h:31: error: expected ';' before '*' token
- D:\Test\test-build-desktop-Qt_4_8_2__4_8_2__Debug\ui_mainwindow.h:-1: In member function 'void Ui_MainWindow::setupUi(QMainWindow*)':
- D:\Test\test-build-desktop-Qt_4_8_2__4_8_2__Debug\ui_mainwindow.h:43: error: 'hLabel' was not declared in this scope
- D:\Test\test-build-desktop-Qt_4_8_2__4_8_2__Debug\ui_mainwindow.h:43: error: expected type-specifier before 'HLabel'
- D:\Test\test-build-desktop-Qt_4_8_2__4_8_2__Debug\ui_mainwindow.h:43: error: expected ';' before 'HLabel'
很容易看出,是因为缺少了控件的相关头文件及源文件,把自定义控件的hlabel.h, hlabel.cpp放入到test工程目录,再编译,还是会出错:
- D:\Test\test-build-desktop-Qt_4_8_2__4_8_2__Debug\.\ui_mainwindow.h:43: error: undefined reference to `HLabel::HLabel(QWidget*)'
- :-1: error: collect2: ld returned 1 exit status
关键的来了:
把自定义控件的hlabel.pri文件也放到test工程目录,并在test.pro文件里加入一名:
- include(hlabel.pri)
再编译,顺利运行!
-------------------------------------------------------------------------
为了更有成就感,可以为上两章提到的HLabel控件加入一个clicked()信号:
hlabel.h文件
- #ifndef HLABEL_H
- #define HLABEL_H
- #include <QtGui/QLabel>
- class HLabel : public QLabel
- {
- Q_OBJECT
- protected:
- void mousePressEvent(QMouseEvent * ev);//这是手工加入的
- public:
- HLabel(QWidget *parent = 0);
- signals:
- void clicked();//这是手工加入的
- };
- #endif
hlabel.cpp文件
- #include "hlabel.h"
- HLabel::HLabel(QWidget *parent) :
- QLabel(parent)
- {
- }
- //以下是手工加入的代码
- void HLabel::mousePressEvent(QMouseEvent * ev)
- {
- this->setCursor(Qt::PointingHandCursor);
- emit this->clicked();
- }
1、 重新编译自定义控件,并按照上两章介绍的方法加入到QtDesigner
2、再按照本文上半部分的方法把相关文件放入到test工程目录,重新打开test工程,在自定义控件上右键 -> go to slots 就会发现多了一个clicked()信号,在信号处理随便写点代码(如下),运行就会看到效果了!
- void MainWindow::on_hLabel_clicked()
- {
- ui->hLabel->setText("ok");
- }