我的第一个qt小程序
mywidgetex.h
#ifndef MYWIDGETEX_H
#define MYWIDGETEX_H
#include <QtGui/QWidget>
#include <QtGui/QPushButton>
class MyWidgetEx : public QWidget
{
Q_OBJECT
public:
MyWidgetEx(void);
~MyWidgetEx(void);
private:
QPushButton *btn;
public slots:
void setButtonText();
};
#endif // MYWIDGETEX_H
mywidgetex.cpp
#include "mywidgetex.h"
MyWidgetEx::MyWidgetEx(void)
//: QWidget(parent, flags)
{
this->setGeometry(100,100,300,300);//从屏幕上100 100开始做300 300大小的画面
btn=new QPushButton("Start",this);
btn->setGeometry(10,10,100,40);
connect(btn,SIGNAL(clicked()),this,SLOT(setButtonText()));
}
MyWidgetEx::~MyWidgetEx()
{
}
void MyWidgetEx::setButtonText()
{
btn->setText("Change");
}
其他都不用改了 直接运行就可以看到结果。主要增加对 信号与槽的理解
另外据说QT在VS2008上跑的不是很顺利。。。在用户自定义槽之后,connect无法顺利连接自定义的槽与信号,可能会有如下报错:
1>MyWidgetEx.obj : error LNK2001: 无法解析的外部符号 "public: virtual int __thiscall MyWidgetEx::qt_metacall(enum QMetaObject::Call,int,void * *)" (?qt_metacall@MyWidgetEx@@UAEHW4Call@QMetaObject@@HPAPAX@Z) 1>MyWidgetEx.obj : error LNK2001: 无法解析的外部符号 "public: virtual void * __thiscall MyWidgetEx::qt_metacast(char const *)" (?qt_metacast@MyWidgetEx@@UAEPAXPBD@Z) 1>MyWidgetEx.obj : error LNK2001: 无法解析的外部符号 "public: virtual struct QMetaObject const * __thiscall MyWidgetEx::metaObject(void)const " (?metaObject@MyWidgetEx@@UBEPBUQMetaObject@@XZ)
而解决方案就是将使用到自定义槽的类的定义与函数分别写在一个.h和一个.cpp文件里,例如: