================================================================================
Para generar el archivo *.py a partir del *.ui generado por qt-designer:

	pyuic4 -o ui_prueba.py prueba.ui
================================================================================
Usage: pyuic4 [options] <ui-file>

Options:
  --version             show program's version number and exit
  -h, --help            show this help message and exit
  -p, --preview         show a preview of the UI instead of generating code
  -o FILE, --output=FILE
                        write generated code to FILE instead of stdout
  -x, --execute         generate extra code to test and display the class
  -d, --debug           show debug output
  -i N, --indent=N      set indent width to N spaces, tab if N is 0 (default:
================================================================================
Para generar el módulo que contiene los recursos de la aplicación:

	pyrcc4 -o prueba_rc.py prueba.qrc
================================================================================	
Usage: pyrcc4  [options] <inputs>

Options:
        -o file           Write output to file rather than stdout
        -name name        Create an external initialization function with name
        -threshold level  Threshold to consider compressing files
        -compress level   Compress input files by level
        -root path        Prefix resource access path with root path
        -no-compress      Disable all compression
        -version          Display version
        -help             Display this information

