免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 783 | 回复: 0
打印 上一主题 下一主题

QT几种常见的工具 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-20 09:44 |只看该作者 |倒序浏览
Qt提供了几种命令行和图形工具来减轻和加速开发过程。每一种工具都在这里列出,并给出它们的文档的链接。
  • Qt设计器——可视化地设计视窗
  • Qt语言学家,lupdate和lrelease——翻译应用程序使之能够进入国际市场
  • Qt助手——快速地发现你所需要的帮助
  • qmake——由简单的宇平台无关的项目文件生成Makefile
  • qembed——转换数据,比如把图片转还为C++代码
  • qvfb——在桌面上运行和测试嵌入式应用程序
  • makeqpf——为嵌入式设备提供预先做好的字体
  • moc——元对象编译器
  • uic——用户界面编译器

 

UserInterfaceCompiler (uic)

用户接口编译器(UIC)

This page documents the User Interface Compiler for the Qt GUI application framework. The uic reads a user interface definition (.ui) file in XML as generated by Qt Designer and creates corresponding C++ header or source files. It can also generate an image file to embed raw image data in C++ source code.

    这页文档介绍QT图形编程应用框架下的UICUser Interface Compiler),UIC读取用户接口定义文件(.UI),后缀是.ui这种XML格式文件是由qt另外一个工具Qt Desiger 产生的,UIC工具从 .ui文件产生C++头文件和实现文件,同时也能生成图像的C++代码,这种代码是embed raw image data格式数据。

UIC的使用 File Generation Options

 

Generate declaration:

产生声明文件,就是头文件.h 

命令:uic [options] <file>

Generate implementation:

产生实现文件,就是.cpp文件

命令:uic [options] -impl <headerfile> <file>

  • <headerfile> - name of the declaration file

Generate image collection:

产生图像格式C++代码

命令:uic [options] -embed <project> <image1> <image2> <image3> ...

  • <project> - project name
  • <image[0..n]> - image files

For convenience, uic can also generate declaration or implementation stubs for subclasses.

Generate subclass declaration:

产生子类声明。

命令:uic [options] -subdecl <classname> <headerfile> <file>

  • <classname> - name of the subclass to generate
  • <headerfile> - declaration file of the baseclass

Generate subclass implementation:

产生子类实现文件

命令:uic [options] -subimpl <classname> <headerfile> <file>

  • <classname> - name of the subclass to generate
  • <headerfile> - declaration file of the subclass
General Options

标准操作码,Options的所有格式

  • -o file - write output to 'file' rather than to stdout.
  • -nofwd - omit forward declarations of custom classes in the generated header file. This is necessary if typedef classes are used.
  • -tr func - use func(sourceText, comment) rather than trUtf8(sourceText, comment) for internationalization.
Usage

 

uic is almost always invoked by make (1), rather than by hand.

Here are useful makefile rules if you only use GNU make:

%.h: %.ui
uic $< -o $@

%.cpp: %.ui
uic -impl $*.h $< -o $@

If you want to write portably, you can use individual rules of the following form:

NAME.h: NAME.ui
uic $< -o $@

NAME.cpp: NAME.ui
uic -impl $*.h $< -o $@

You must also remember to add NAME.cpp to your SOURCES (substitute your favorite name) variable and NAME.o to your OBJECTS variable.

(While we prefer to name our C++ source files .cpp, the uic doesn't care, so you can use .C, .cc, .CC, .cxx or even .c++ if you prefer.)

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP