home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from PyQt4 import QtCore, QtGui
-
- try:
- _fromUtf8 = QtCore.QString.fromUtf8
- except AttributeError:
-
- _fromUtf8 = lambda s: s
-
-
- class Ui_CommentsDialog(object):
-
- def setupUi(self, CommentsDialog):
- CommentsDialog.setObjectName(_fromUtf8('CommentsDialog'))
- CommentsDialog.resize(336, 235)
- sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.MinimumExpanding, QtGui.QSizePolicy.MinimumExpanding)
- sizePolicy.setHorizontalStretch(0)
- sizePolicy.setVerticalStretch(0)
- sizePolicy.setHeightForWidth(CommentsDialog.sizePolicy().hasHeightForWidth())
- CommentsDialog.setSizePolicy(sizePolicy)
- self.verticalLayoutWidget = QtGui.QWidget(CommentsDialog)
- self.verticalLayoutWidget.setGeometry(QtCore.QRect(10, 10, 311, 211))
- self.verticalLayoutWidget.setObjectName(_fromUtf8('verticalLayoutWidget'))
- self.verticalLayout = QtGui.QVBoxLayout(self.verticalLayoutWidget)
- self.verticalLayout.setObjectName(_fromUtf8('verticalLayout'))
- self.textbox = QtGui.QPlainTextEdit(self.verticalLayoutWidget)
- self.textbox.setObjectName(_fromUtf8('textbox'))
- self.verticalLayout.addWidget(self.textbox)
- self.buttonBox = QtGui.QDialogButtonBox(self.verticalLayoutWidget)
- self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
- self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel | QtGui.QDialogButtonBox.Ok)
- self.buttonBox.setObjectName(_fromUtf8('buttonBox'))
- self.verticalLayout.addWidget(self.buttonBox)
- self.retranslateUi(CommentsDialog)
- QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8('accepted()')), CommentsDialog.accept)
- QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8('rejected()')), CommentsDialog.reject)
- QtCore.QMetaObject.connectSlotsByName(CommentsDialog)
-
-
- def retranslateUi(self, CommentsDialog):
- CommentsDialog.setWindowTitle(_('Edit Comments'))
-
-
-