# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'qctlib/select.ui' # # Created: Tue Oct 23 09:13:09 2007 # by: PyQt4 UI code generator 4.3 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_ChangeDialog(object): def setupUi(self, ChangeDialog): ChangeDialog.setObjectName("ChangeDialog") ChangeDialog.resize(QtCore.QSize(QtCore.QRect(0,0,495,356).size()).expandedTo(ChangeDialog.minimumSizeHint())) self.vboxlayout = QtGui.QVBoxLayout(ChangeDialog) self.vboxlayout.setObjectName("vboxlayout") self.hboxlayout = QtGui.QHBoxLayout() self.hboxlayout.setObjectName("hboxlayout") spacerItem = QtGui.QSpacerItem(40,20,QtGui.QSizePolicy.Expanding,QtGui.QSizePolicy.Minimum) self.hboxlayout.addItem(spacerItem) self.keepButton = QtGui.QPushButton(ChangeDialog) self.keepButton.setObjectName("keepButton") self.hboxlayout.addWidget(self.keepButton) self.shelveButton = QtGui.QPushButton(ChangeDialog) self.shelveButton.setObjectName("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("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("buttonBox") self.vboxlayout.addWidget(self.buttonBox) self.retranslateUi(ChangeDialog) QtCore.QObject.connect(self.buttonBox,QtCore.SIGNAL("accepted()"),ChangeDialog.accept) QtCore.QObject.connect(self.buttonBox,QtCore.SIGNAL("rejected()"),ChangeDialog.reject) QtCore.QMetaObject.connectSlotsByName(ChangeDialog) def retranslateUi(self, ChangeDialog): ChangeDialog.setWindowTitle(QtGui.QApplication.translate("ChangeDialog", "Select Changes for Commit", None, QtGui.QApplication.UnicodeUTF8)) self.keepButton.setText(QtGui.QApplication.translate("ChangeDialog", "Keep", None, QtGui.QApplication.UnicodeUTF8)) self.shelveButton.setText(QtGui.QApplication.translate("ChangeDialog", "Shelve", None, QtGui.QApplication.UnicodeUTF8))