diff options
Diffstat (limited to 'ubuntu/maverick/dependencies/python-tqt/debian/manpages/pyuic.1')
-rw-r--r-- | ubuntu/maverick/dependencies/python-tqt/debian/manpages/pyuic.1 | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/ubuntu/maverick/dependencies/python-tqt/debian/manpages/pyuic.1 b/ubuntu/maverick/dependencies/python-tqt/debian/manpages/pyuic.1 new file mode 100644 index 000000000..f1ffa41ff --- /dev/null +++ b/ubuntu/maverick/dependencies/python-tqt/debian/manpages/pyuic.1 @@ -0,0 +1,74 @@ +.TH pyuic 1 "25 June 2001" \" -*- nroff -*- +.SH NAME +pyuic \- Qt user interface compiler for Python +.SH SYNOPSIS +.B pyuic +[options] <uifile> +.SH DESCRIPTION +This page documents the +.B Python User Interface Compiler +for the Qt GUI application framework. The +.B pyuic +reads a user interface definition file (.ui) in XML as generated by Qt +Designer and creates corresponding Python module. +.PP +.PP +Generate implementation: +.br +.I "\fB pyuic [options] \fI<uifile>" +.br +.PP +Generate image collection: +.br +.I "\fB pyuic [options] -embed \fI<project> <image1> <image2> <image3>\fP ..." +.br + \fI<project>\fP: project name + \fI<image[1..n]>\fP: image files +.br +.PP +Generate subclass implementation: +.br +.I "\fB pyuic [options] -subimpl <classname> \fI<uifile>" +.br + \fI<classname>\fP: name of the subclass to generate +.PP + +.SH GENERAL OPTIONS +.TP +.I "-o file" +Write output to +.I file +rather than to stdout. +.TP +.I "-p indent" +Set the Python +.I indent +in spaces (0 to use a tab) +.TP +.I "-tr func" +Use +.I func(...) +rather than tr(...) for i18n. +.TP +.I -x +Generate extra code to test the class +.TP +.I -test +Generate extra code to test but not display the class +.TP +.I -version +Display version of pyuic +.TP +.I -help +Display this information + +.SH "SEE ALSO" +.BR uic (1) + +.BR http://www.trolltech.com/ + +.BR http://www.riverbankcomputing.co.uk/ +.SH AUTHOR +This manual page was written by Ricardo J. Cárdenes Medina +for the Debian GNU/Linux System (but may be used by others), based +on Trolltech's <info@trolltech.com> manual page for uic |