mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-12 15:56:28 +00:00
3eb93acc18
This commit re-organizes all the source distribution contents to present users with the simple script, while moving the rest in extras. Also autoconf/automake scripts were removed, back to minimalism. The rationale of this change is that Tomb really only consists of a script and users with no extra needs should just be presented with it with no need for anything else. Any other thing on top of the Tomb script is an extra and can be even distributed separately or integrated in distributions.
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))
|
|
|