欢迎来到天天文库
浏览记录
ID:45792195
大小:304.40 KB
页数:13页
时间:2019-11-17
《使用QT进行程序开发快速指导》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、QT进行程序开发快速指导版本V1.0>修订历史记录日期版本操作说明作者校核批准2013.08.071.01概述42较早版本QT开发步骤42丄首先检查系统是否己安装qt422工程建立及编译转换43QT4.0结合VS2010开发指导。93.1安装93.2建立一个QtApplication101概述本文介绍QT开发步骤,为qt入门提供简单-的指导。第二章节主要介绍彳4.0以前版本的开发过程。第三章节介绍qt4.0与VS2010结合开发。2较早版本Qt开发步骤本步骤适合qt4.0以前的版本,但也可作为以后版本的参考,本部分参考别人
2、文档,实践整理而来。2丄首先检查系统是否已安装qt[root@localhostroot]#rpm-qqt如果出现qt-3・3.2-222工程建立及编译转换1•打开qtdesinger(编程一〉QtDesigner)2•新建一窗口(选择Widget),如图l.png3.添加一pushbutton4.在按钮上单击右键,选择Connections...3.单击New,添加signal.如图2.pngConnections:6.选择EditSlots.•.,编辑新的slots.如图3.png7•单击NewFunction,在输入
3、栏中输入新的slot函数名,openbtnQ.如图4.png8.单击ok,在刚才的窗口中选择刚才创建的新slot.如图5.png9•保存工程•按ctrl-s,输入文件名test,ui10.进入终端窗口,进入保存test,ui的目录11.使用进行文件转换.[root@localhostexample]#uictest・ui-otest.h[root@localhostexample]#uic-impltest.htest.ui-0test.cpp10.使用编辑器建立主文件main,cpp#inelude4、on.h>ttinclude"test.h"intmain(intargc,char**argv){QApplicationa(argc,argv);Formlw;w.show();a.connect(&a,SIGNAL(lastWindowClosed()),&a,SLOT(quit()));returna.exec();13•使用qniake建立工程和make文件[root@localhostexample]#qmake-project[root@localhostexample]#qmake-makefile14.打5、开窗口文件test,cpp,看到如F内容**Formimp1ementationgeneratedfromreadinguifile'test.ui'****Created:三11月719:55:212007**by:TheUserInterfaceCompiler($Td:qt/main.cpp3.3.2editedNov2413:47$)****WARNING!Allchangesmadeinthisfilewillbelost!#include"test・h〃#include#include<6、qpushbutton.h>#inelude#inelude#inelude/**ConstructsaFormlasachildof,parent/,withthe*name'name'andwidgetflagssetto'fl*/Forml::Forml(QWidget*parent,constchar*name,WFlagsfl):QWidget(parent,name,fl)if(!name)setName("Forml");pushBut7、tonl=newQPushButton(this,"pushButtonl");pushButtonl->setGeometry(QRect(120,100,291,51));languageChange();resize(QSize(600,480).expandedTo(minimumSizeHint()));clearWState(WStatePolished);//signalsandslotsconnectionsconnect(pushButtonl,SIGNAL(clicked()),this,SLOT(op8、enbtnO));}/**Destroystheobjectandfreesanyallocatedresources*/Forml::~Forml(){//noneedtodeletechildwidgets,Qtdoesitallforus}/**Setsthestringsofthesubwidg
4、on.h>ttinclude"test.h"intmain(intargc,char**argv){QApplicationa(argc,argv);Formlw;w.show();a.connect(&a,SIGNAL(lastWindowClosed()),&a,SLOT(quit()));returna.exec();13•使用qniake建立工程和make文件[root@localhostexample]#qmake-project[root@localhostexample]#qmake-makefile14.打
5、开窗口文件test,cpp,看到如F内容**Formimp1ementationgeneratedfromreadinguifile'test.ui'****Created:三11月719:55:212007**by:TheUserInterfaceCompiler($Td:qt/main.cpp3.3.2editedNov2413:47$)****WARNING!Allchangesmadeinthisfilewillbelost!#include"test・h〃#include#include<
6、qpushbutton.h>#inelude#inelude#inelude/**ConstructsaFormlasachildof,parent/,withthe*name'name'andwidgetflagssetto'fl*/Forml::Forml(QWidget*parent,constchar*name,WFlagsfl):QWidget(parent,name,fl)if(!name)setName("Forml");pushBut
7、tonl=newQPushButton(this,"pushButtonl");pushButtonl->setGeometry(QRect(120,100,291,51));languageChange();resize(QSize(600,480).expandedTo(minimumSizeHint()));clearWState(WStatePolished);//signalsandslotsconnectionsconnect(pushButtonl,SIGNAL(clicked()),this,SLOT(op
8、enbtnO));}/**Destroystheobjectandfreesanyallocatedresources*/Forml::~Forml(){//noneedtodeletechildwidgets,Qtdoesitallforus}/**Setsthestringsofthesubwidg
此文档下载收益归作者所有