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_JobsDialog(object):
-
- def setupUi(self, JobsDialog):
- JobsDialog.setObjectName(_fromUtf8('JobsDialog'))
- JobsDialog.resize(633, 542)
- icon = QtGui.QIcon()
- icon.addPixmap(QtGui.QPixmap(_fromUtf8(I('jobs.png'))), QtGui.QIcon.Normal, QtGui.QIcon.Off)
- JobsDialog.setWindowIcon(icon)
- self.vboxlayout = QtGui.QVBoxLayout(JobsDialog)
- self.vboxlayout.setObjectName(_fromUtf8('vboxlayout'))
- self.jobs_view = QtGui.QTableView(JobsDialog)
- self.jobs_view.setContextMenuPolicy(QtCore.Qt.NoContextMenu)
- self.jobs_view.setEditTriggers(QtGui.QAbstractItemView.NoEditTriggers)
- self.jobs_view.setAlternatingRowColors(True)
- self.jobs_view.setSelectionMode(QtGui.QAbstractItemView.SingleSelection)
- self.jobs_view.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows)
- self.jobs_view.setIconSize(QtCore.QSize(32, 32))
- self.jobs_view.setObjectName(_fromUtf8('jobs_view'))
- self.vboxlayout.addWidget(self.jobs_view)
- self.kill_button = QtGui.QPushButton(JobsDialog)
- self.kill_button.setObjectName(_fromUtf8('kill_button'))
- self.vboxlayout.addWidget(self.kill_button)
- self.details_button = QtGui.QPushButton(JobsDialog)
- self.details_button.setObjectName(_fromUtf8('details_button'))
- self.vboxlayout.addWidget(self.details_button)
- self.stop_all_jobs_button = QtGui.QPushButton(JobsDialog)
- self.stop_all_jobs_button.setObjectName(_fromUtf8('stop_all_jobs_button'))
- self.vboxlayout.addWidget(self.stop_all_jobs_button)
- self.retranslateUi(JobsDialog)
- QtCore.QMetaObject.connectSlotsByName(JobsDialog)
-
-
- def retranslateUi(self, JobsDialog):
- JobsDialog.setWindowTitle(_('Active Jobs'))
- self.kill_button.setText(_('&Stop selected job'))
- self.details_button.setText(_('Show job &details'))
- self.stop_all_jobs_button.setText(_('Stop &all non device jobs'))
-
-
-