/usr/share/pyshared/qctlib/ui_select.py is in qct 1.7-3.
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 | # -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'qctlib/select.ui'
#
# Created: Tue Oct 18 06:59:58 2011
# by: PyQt4 UI code generator 4.8.5
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class Ui_ChangeDialog(object):
def setupUi(self, ChangeDialog):
ChangeDialog.setObjectName(_fromUtf8("ChangeDialog"))
ChangeDialog.resize(495, 356)
ChangeDialog.setWindowTitle(QtGui.QApplication.translate("ChangeDialog", "Select Changes for Commit", None, QtGui.QApplication.UnicodeUTF8))
self.vboxlayout = QtGui.QVBoxLayout(ChangeDialog)
self.vboxlayout.setObjectName(_fromUtf8("vboxlayout"))
self.hboxlayout = QtGui.QHBoxLayout()
self.hboxlayout.setObjectName(_fromUtf8("hboxlayout"))
spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
self.hboxlayout.addItem(spacerItem)
self.keepButton = QtGui.QPushButton(ChangeDialog)
self.keepButton.setText(QtGui.QApplication.translate("ChangeDialog", "Keep", None, QtGui.QApplication.UnicodeUTF8))
self.keepButton.setObjectName(_fromUtf8("keepButton"))
self.hboxlayout.addWidget(self.keepButton)
self.shelveButton = QtGui.QPushButton(ChangeDialog)
self.shelveButton.setText(QtGui.QApplication.translate("ChangeDialog", "Shelve", None, QtGui.QApplication.UnicodeUTF8))
self.shelveButton.setObjectName(_fromUtf8("shelveButton"))
self.hboxlayout.addWidget(self.shelveButton)
spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
self.hboxlayout.addItem(spacerItem1)
self.vboxlayout.addLayout(self.hboxlayout)
self.textEdit = QtGui.QTextEdit(ChangeDialog)
self.textEdit.setObjectName(_fromUtf8("textEdit"))
self.vboxlayout.addWidget(self.textEdit)
self.buttonBox = QtGui.QDialogButtonBox(ChangeDialog)
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.NoButton|QtGui.QDialogButtonBox.Ok)
self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
self.vboxlayout.addWidget(self.buttonBox)
self.retranslateUi(ChangeDialog)
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), ChangeDialog.accept)
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), ChangeDialog.reject)
QtCore.QMetaObject.connectSlotsByName(ChangeDialog)
def retranslateUi(self, ChangeDialog):
pass
|