Chinaunix首页 | 论坛 | 博客
  • 博客访问: 125161
  • 博文数量: 46
  • 博客积分: 2000
  • 博客等级: 大尉
  • 技术积分: 480
  • 用 户 组: 普通用户
  • 注册时间: 2009-06-13 09:26
文章分类

全部博文(46)

文章存档

2011年(1)

2010年(5)

2009年(40)

我的朋友

分类: LINUX

2010-01-23 17:39:07

windows下利用qt designer编写GUI程序
 
首先,利用qt designer设计一个窗口,然后保存为*.ui
这里保存为test.ui
然后编写main.cpp
内容如下:

#include <QApplication>
#include <QDialog>
#include "ui_test.h"
int main(int argc,char** argv)
{
    QApplication app(argc,argv);
    Ui::Dialog ui;
    QDialog * dialog = new QDialog;
    ui.setupUi(dialog);
    dialog->show();
    return app.exec();
}

然后编译程序

I:\test>qmake -project -o test.pro

I:\test>qmake test.pro

I:\test>mingw32-make
mingw32-make -f Makefile.Debug
mingw32-make[1]: Entering directory `I:/test'
c:\Qt\2009.05\qt\bin\uic.exe test.ui -o ui_test.h
g++ -c -g -frtti -fexceptions -mthreads -Wall -DUNICODE -DQT_LARGEFILE_SUPPORT -
DQT_DLL -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -I"c:\Qt
\2009.05\qt\include\QtCore" -I"c:\Qt\2009.05\qt\include\QtGui" -I"c:\Qt\2009.05\
qt\include" -I"." -I"c:\Qt\2009.05\qt\include\ActiveQt" -I"debug" -I"." -I"c:\Qt
\2009.05\qt\mkspecs\win32-g++" -o debug\main.o main.cpp
g++ -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-rel
oc -mthreads -Wl -Wl,-subsystem,windows -o debug\test.exe debug/main.o -L"c:\Qt
\2009.05\qt\lib" -lmingw32 -lqtmaind -lQtGuid4 -lQtCored4
mingw32-make[1]: Leaving directory `I:/test'


I:\test>cd debug

I:\test\debug>dir

 I:\test\debug 的目录

2010/01/23 17:31 <DIR> .
2010/01/23 17:31 <DIR> ..
2010/01/23 17:31 198,314 main.o
2010/01/23 17:31 536,282 test.exe
               2 个文件 734,596 字节
               2 个目录 35,651,584 可用字节

I:\test\debug>test.exe


阅读(1717) | 评论(0) | 转发(0) |
0

上一篇:windows7下命令行编译QT程序

下一篇:李开复

给主人留下些什么吧!~~