| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | from PyQt4 import QtCore, QtGui |
| |
|
| |
|
| | _fromUtf8 = getattr(QtCore.QString, 'fromUtf8', lambda s: s) |
| |
|
| |
|
| | def _translate(context, text, disambig): |
| | return QtGui.QApplication.translate( |
| | context, text, disambig, |
| | getattr( |
| | QtGui.QApplication, 'UnicodeUTF8', |
| | QtCore.QCoreApplication.Encoding)) |
| |
|
| |
|
| | class Ui_Dialog(object): |
| | def setupUi(self, Dialog): |
| | Dialog.setObjectName(_fromUtf8("Dialog")) |
| | Dialog.resize(400, 300) |
| | self.verticalLayout = QtGui.QVBoxLayout(Dialog) |
| | self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) |
| | self.groupBox = QtGui.QGroupBox(Dialog) |
| | self.groupBox.setObjectName(_fromUtf8("groupBox")) |
| | self.verticalLayout_2 = QtGui.QVBoxLayout(self.groupBox) |
| | self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2")) |
| | self.selTableView = QtGui.QTableView(self.groupBox) |
| | self.selTableView.setEditTriggers(QtGui.QAbstractItemView.NoEditTriggers) |
| | self.selTableView.setProperty("showDropIndicator", False) |
| | self.selTableView.setDragDropOverwriteMode(False) |
| | self.selTableView.setAlternatingRowColors(False) |
| | self.selTableView.setSelectionMode(QtGui.QAbstractItemView.SingleSelection) |
| | self.selTableView.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) |
| | self.selTableView.setGridStyle(QtCore.Qt.DashLine) |
| | self.selTableView.setSortingEnabled(True) |
| | self.selTableView.setObjectName(_fromUtf8("selTableView")) |
| | self.selTableView.verticalHeader().setVisible(False) |
| | self.verticalLayout_2.addWidget(self.selTableView) |
| | self.verticalLayout.addWidget(self.groupBox) |
| | self.buttonBox = QtGui.QDialogButtonBox(Dialog) |
| | 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(Dialog) |
| | QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), Dialog.accept) |
| | QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), Dialog.reject) |
| | QtCore.QMetaObject.connectSlotsByName(Dialog) |
| |
|
| | def retranslateUi(self, Dialog): |
| | Dialog.setWindowTitle(_translate("Dialog", "Please choose an MT model to load...", None)) |
| | self.groupBox.setTitle(_translate("Dialog", "Avaialble MT Models", None)) |
| |
|
| |
|
| | if __name__ == "__main__": |
| | import sys |
| | app = QtGui.QApplication(sys.argv) |
| | Dialog = QtGui.QDialog() |
| | ui = Ui_Dialog() |
| | ui.setupUi(Dialog) |
| | Dialog.show() |
| | sys.exit(app.exec_()) |
| |
|