/usr/share/pyshared/pysideuic/Compiler/compiler.py is in pyside-tools 0.2.15-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | # This file is part of the PySide project.
#
# Copyright (C) 2009-2011 Nokia Corporation and/or its subsidiary(-ies).
# Copyright (C) 2010 Riverbank Computing Limited.
# Copyright (C) 2009 Torsten Marek
#
# Contact: PySide team <pyside@openbossa.org>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 2 as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
# 02110-1301 USA
import sys
from pysideuic.properties import Properties
from pysideuic.uiparser import UIParser
from pysideuic.Compiler import qtproxies
from pysideuic.Compiler.indenter import createCodeIndenter, getIndenter, \
write_code
from pysideuic.Compiler.qobjectcreator import CompilerCreatorPolicy
from pysideuic.Compiler.misc import write_import
class UICompiler(UIParser):
def __init__(self):
UIParser.__init__(self, qtproxies.QtCore, qtproxies.QtGui,
CompilerCreatorPolicy())
def reset(self):
qtproxies.i18n_strings = []
UIParser.reset(self)
def setContext(self, context):
qtproxies.i18n_context = context
def createToplevelWidget(self, classname, widgetname):
indenter = getIndenter()
indenter.level = 0
indenter.write("from PySide import QtCore, QtGui")
indenter.write("")
indenter.write("class Ui_%s(object):" % self.uiname)
indenter.indent()
indenter.write("def setupUi(self, %s):" % widgetname)
indenter.indent()
w = self.factory.createQObject(classname, widgetname, (),
is_attribute = False,
no_instantiation = True)
w.baseclass = classname
w.uiclass = "Ui_%s" % self.uiname
return w
def setDelayedProps(self):
write_code("")
write_code("self.retranslateUi(%s)" % self.toplevelWidget)
UIParser.setDelayedProps(self)
def finalize(self):
indenter = getIndenter()
indenter.level = 1
indenter.write("")
indenter.write("def retranslateUi(self, %s):" % self.toplevelWidget)
indenter.indent()
if qtproxies.i18n_strings:
for s in qtproxies.i18n_strings:
indenter.write(s)
else:
indenter.write("pass")
indenter.dedent()
indenter.dedent()
# Make a copy of the resource modules to import because the parser will
# reset() before returning.
self._resources = self.resources
def compileUi(self, input_stream, output_stream, from_imports):
createCodeIndenter(output_stream)
w = self.parse(input_stream)
indenter = getIndenter()
indenter.write("")
self.factory._cpolicy._writeOutImports()
for res in self._resources:
write_import(res, from_imports)
return {"widgetname": str(w),
"uiclass" : w.uiclass,
"baseclass" : w.baseclass}
|