1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
.\"
.\" Created by Torsten Marek <shlomme@debian.org>
.TH PYRCC4 1 "2007/07/31" "pyrcc 4.3"
.SH NAME
pyrcc4 \- compile Qt resource files for PyQt4 applications
.SH SYNOPSIS
.B pyrcc4
[\fIOPTIONS\fR]... \fIFILES\fR
.SH DESCRIPTION
.B pyrcc4
takes a Qt Resource File (\.qrc) and converts it into a Python module which can be imported into a PyQt4 application. All files loaded by Qt that are prefixed with a colon will be loaded from the resources rather than the file system.
.SH OPTIONS
.TP
\fB\-help\fR
Show a summary of the options.
.TP
\fB\-version\fR
Display the version number of pyrcc4 of the version of Qt which PyQt4 was generated for.
.TP
\fB\-py2\fR
Generate code for any Python v2.x version (default).
.TP
\fB\-py3\fR
Generate code for any Python v3.x version.
.TP
\fB\-o\fR \fIFILE\fR
Write the generated output to \fIFILE\fR instead of stdout.
.TP
\fB\-name\fR \fIFUN\fR
Create an external initialization function named \fIFUN\fR.
.TP
\fB\-threshold\fR \fILEVEL\fR
Set the threshold above which files should be compressed.
.TP
\fB\-compress\fR \fILEVEL\fR
Set the compression level for all input files.
.TP
\fB\-root\fR \fIPATH\fR
Search all resource referenced in a .qrc file under \fIPATH\fR.
.TP
.B \-no\-compress
Do not compress the resource files at all.
.SH AUTHOR
This manual page was written for Debian GNU/Linux by and Torsten Marek <shlomme@debian.org>, but may freely be used by others.
|