Qt:Документация 4.3.2/uic

Материал из Wiki.crossplatform.ru

(Различия между версиями)
Перейти к: навигация, поиск
(Новая: {{Qt4.3.2_header}} =User Interface Compiler (uic)<br />= This page documents the ''User Interface Compiler'' for the Qt GUI toolkit. The <tt>uic</tt> reads an XML format user interface ...)
 
Строка 2: Строка 2:
=User Interface Compiler (uic)<br />=
=User Interface Compiler (uic)<br />=
 +
<div id="uic"></div>
This page documents the ''User Interface Compiler'' for the Qt GUI toolkit. The <tt>uic</tt> reads an XML format user interface definition (<tt>.ui</tt>) file as generated by [[Qt:Документация 4.3.2/designer-manual | Qt Designer]] and creates a corresponding C++ header file.
This page documents the ''User Interface Compiler'' for the Qt GUI toolkit. The <tt>uic</tt> reads an XML format user interface definition (<tt>.ui</tt>) file as generated by [[Qt:Документация 4.3.2/designer-manual | Qt Designer]] and creates a corresponding C++ header file.
Usage:
Usage:
-
<source lang="cpp-qt"> uic [options] &lt;uifile&gt;</source>  
+
<source lang="cpp-qt"> uic [options] <uifile></source> <div id="options"></div>
 +
 
==Options==
==Options==
The following table lists the command-line options recognized by <tt>uic</tt>.
The following table lists the command-line options recognized by <tt>uic</tt>.
-
 
{|  align="center" cellpadding="2" cellspacing="1" border="0"
{|  align="center" cellpadding="2" cellspacing="1" border="0"
Строка 15: Строка 16:
!Description
!Description
|- valign="top" class="odd" |  
|- valign="top" class="odd" |  
-
|<tt>-o &lt;file&gt;</tt>
+
|<tt>-o <file></tt>
-
|Write output to <tt>&lt;file&gt;</tt> instead of to standard output.
+
|Write output to <tt><file></tt> instead of to standard output.
|- valign="top" class="even" |  
|- valign="top" class="even" |  
-
|<tt>-tr &lt;func&gt;</tt>
+
|<tt>-tr <func></tt>
-
|Use <tt>&lt;func&gt;</tt> for translating strings instead of <tt>tr()</tt>.
+
|Use <tt><func></tt> for translating strings instead of <tt>tr()</tt>.
|- valign="top" class="odd" |  
|- valign="top" class="odd" |  
|<tt>-p</tt>
|<tt>-p</tt>
Строка 30: Строка 31:
|Display <tt>uic</tt>'s version number.
|Display <tt>uic</tt>'s version number.
|}
|}
-
 
+
<div id="examples"></div>
==Examples==
==Examples==
 +
If you use <tt>qmake</tt>, <tt>uic</tt> will be invoked automatically for header files.
If you use <tt>qmake</tt>, <tt>uic</tt> will be invoked automatically for header files.
Here are useful makefile rules if you only use GNU make:
Here are useful makefile rules if you only use GNU make:
<source lang="cpp-qt"> ui_%.h: %.ui
<source lang="cpp-qt"> ui_%.h: %.ui
-
         uic $&lt; -o $@</source>  
+
         uic $< -o $@</source>  
If you want to write portably, you can use individual rules of the following form:
If you want to write portably, you can use individual rules of the following form:
<source lang="cpp-qt"> ui_foo.h: foo.ui
<source lang="cpp-qt"> ui_foo.h: foo.ui
-
         uic $&lt; -o $@</source>  
+
         uic $< -o $@</source>  
You must also remember to add <tt>ui_foo.h</tt> to your <tt>HEADERS</tt> (substitute your favorite name).
You must also remember to add <tt>ui_foo.h</tt> to your <tt>HEADERS</tt> (substitute your favorite name).
{{Qt4.3.2_footer}}
{{Qt4.3.2_footer}}

Текущая версия на 10:43, 6 ноября 2008

40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

[править] User Interface Compiler (uic)

This page documents the User Interface Compiler for the Qt GUI toolkit. The uic reads an XML format user interface definition (.ui) file as generated by Qt Designer and creates a corresponding C++ header file.

Usage:

 uic [options] <uifile>

[править] Options

The following table lists the command-line options recognized by uic.

Option Description
-o <file> Write output to <file> instead of to standard output.
-tr <func> Use <func> for translating strings instead of tr().
-p Don't generate guards against multiple inclusion (#ifndef FOO_H ...).
-h Display the usage and the list of options.
-v Display uic's version number.

[править] Examples

If you use qmake, uic will be invoked automatically for header files.

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

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

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

 ui_foo.h: foo.ui
         uic $< -o $@

You must also remember to add ui_foo.h to your HEADERS (substitute your favorite name).


Copyright © 2007 Trolltech Trademarks
Qt 4.3.2