mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-14 00:34:03 +00:00
4a04d9dd84
including the old qt and python wrappers as discussed in issue #113
52 lines
2.4 KiB
Python
52 lines
2.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Form implementation generated from reading ui file 'tombqt/open_keymethod.ui'
|
|
#
|
|
# Created: Sat Jan 28 03:36:11 2012
|
|
# by: PyQt4 UI code generator 4.9
|
|
#
|
|
# 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_keymethod(object):
|
|
def setupUi(self, keymethod):
|
|
keymethod.setObjectName(_fromUtf8("keymethod"))
|
|
keymethod.resize(480, 640)
|
|
self.verticalLayout = QtGui.QVBoxLayout(keymethod)
|
|
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
|
|
spacerItem = QtGui.QSpacerItem(20, 265, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding)
|
|
self.verticalLayout.addItem(spacerItem)
|
|
self.radio_layout = QtGui.QVBoxLayout()
|
|
self.radio_layout.setObjectName(_fromUtf8("radio_layout"))
|
|
self.fs = QtGui.QRadioButton(keymethod)
|
|
self.fs.setObjectName(_fromUtf8("fs"))
|
|
self.radio_layout.addWidget(self.fs)
|
|
self.usb = QtGui.QRadioButton(keymethod)
|
|
self.usb.setEnabled(False)
|
|
self.usb.setObjectName(_fromUtf8("usb"))
|
|
self.radio_layout.addWidget(self.usb)
|
|
self.bluetooth = QtGui.QRadioButton(keymethod)
|
|
self.bluetooth.setEnabled(False)
|
|
self.bluetooth.setObjectName(_fromUtf8("bluetooth"))
|
|
self.radio_layout.addWidget(self.bluetooth)
|
|
self.verticalLayout.addLayout(self.radio_layout)
|
|
spacerItem1 = QtGui.QSpacerItem(20, 265, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding)
|
|
self.verticalLayout.addItem(spacerItem1)
|
|
|
|
self.retranslateUi(keymethod)
|
|
QtCore.QMetaObject.connectSlotsByName(keymethod)
|
|
|
|
def retranslateUi(self, keymethod):
|
|
keymethod.setWindowTitle(QtGui.QApplication.translate("keymethod", "WizardPage", None, QtGui.QApplication.UnicodeUTF8))
|
|
keymethod.setTitle(QtGui.QApplication.translate("keymethod", "Choose key", None, QtGui.QApplication.UnicodeUTF8))
|
|
self.fs.setText(QtGui.QApplication.translate("keymethod", "Filesystem", None, QtGui.QApplication.UnicodeUTF8))
|
|
self.usb.setText(QtGui.QApplication.translate("keymethod", "USB drive", None, QtGui.QApplication.UnicodeUTF8))
|
|
self.bluetooth.setText(QtGui.QApplication.translate("keymethod", "Retrieve via bluetooth (advanced)", None, QtGui.QApplication.UnicodeUTF8))
|
|
|