- 论坛徽章:
- 0
|
- 1、main.cpp
- #include <QApplication>
- #include <qtdemo.h>
-
- int main(int argc, char **argv)
- {
- QApplication a(argc, argv);
- Demo *demo = new Demo;
-
- demo->setGeometry(300,300,100,100);
- demo->setWindowTitle("Qt Demo");
- demo->show();
-
- return a.exec();
- }
复制代码- 2、qtdemo.cpp
- #include <QLabel>
- #include <QVBoxLayout>
- #include <QPushButton>
- #include "qtdemo.h"
-
- Demo::Demo()
- {
- string = new QLabel(tr("This is a QT Demo!!"));
- string->setFont(QFont("Times",20, QFont::Bold));
- string->setAlignment(Qt::AlignHCenter);
-
- button = new QPushButton("Quit");
- button->setFont(QFont("Times",15, QFont::Bold));
-
- vlayout = new QVBoxLayout;
- vlayout->addWidget(string);
- vlayout->addWidget(button);
- setLayout(vlayout);
-
- connect(button,SINGAL(clicked()),this,SLOT(close()));
- }
复制代码- 3、qtdemo.h
- #ifndef __QTDEMO__
- #define __QTDEMO__
-
- #include <QWidget>
- class QLabel;
- class QVBoxLayout;
- class QPushButton;
-
- class Demo:public QWidget
- {
- public:
- Demo();
- private:
- QLabel *string;
- QVBoxLayout *vlayout;
- QPushButton *button;
- };
-
- #endif
复制代码 问题:
编译过程:
1)qtmake -project , 成功
2)qtmake, 成功
3)make 出错,错误提示如下:
....
qtdemo.cpp: In constructor `Demo: emo()':
qtdemo.cpp:20: `clicked' undeclared (first use this function)
qtdemo.cpp:20: (Each undeclared identifier is reported only once for each
function it appears in.)
qtdemo.cpp:20: `SINGAL' undeclared (first use this function)
make: *** [qtdemo.o] Error 1
操作系统:
linux redhat 9.0 |
|