/usr/share/pyshared/scolasync/Ui_diskFull.py is in scolasync 2.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | # -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'diskFull.ui'
#
# Created: Wed Dec 28 08:56:40 2011
# by: PyQt4 UI code generator 4.8.6
#
# 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_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName(_fromUtf8("MainWindow"))
MainWindow.resize(363, 426)
MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "Disk size", None, QtGui.QApplication.UnicodeUTF8))
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap(_fromUtf8("/usr/share/scolasync/images/scolasync.svg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
MainWindow.setWindowIcon(icon)
self.centralwidget = QtGui.QWidget(MainWindow)
self.centralwidget.setObjectName(_fromUtf8("centralwidget"))
self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget)
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
self.toolButton = QtGui.QToolButton(self.centralwidget)
self.toolButton.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
icon1 = QtGui.QIcon()
icon1.addPixmap(QtGui.QPixmap(_fromUtf8("/usr/share/icons/Tango/scalable/devices/multimedia-player.svg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.toolButton.setIcon(icon1)
self.toolButton.setObjectName(_fromUtf8("toolButton"))
self.verticalLayout.addWidget(self.toolButton)
self.graphicsView = QtGui.QGraphicsView(self.centralwidget)
self.graphicsView.setObjectName(_fromUtf8("graphicsView"))
self.verticalLayout.addWidget(self.graphicsView)
self.label_total = QtGui.QLabel(self.centralwidget)
self.label_total.setText(QtGui.QApplication.translate("MainWindow", "total size", None, QtGui.QApplication.UnicodeUTF8))
self.label_total.setObjectName(_fromUtf8("label_total"))
self.verticalLayout.addWidget(self.label_total)
self.label_used = QtGui.QLabel(self.centralwidget)
self.label_used.setText(QtGui.QApplication.translate("MainWindow", "Used", None, QtGui.QApplication.UnicodeUTF8))
self.label_used.setObjectName(_fromUtf8("label_used"))
self.verticalLayout.addWidget(self.label_used)
MainWindow.setCentralWidget(self.centralwidget)
self.menubar = QtGui.QMenuBar(MainWindow)
self.menubar.setGeometry(QtCore.QRect(0, 0, 363, 23))
self.menubar.setObjectName(_fromUtf8("menubar"))
MainWindow.setMenuBar(self.menubar)
self.statusbar = QtGui.QStatusBar(MainWindow)
self.statusbar.setObjectName(_fromUtf8("statusbar"))
MainWindow.setStatusBar(self.statusbar)
self.retranslateUi(MainWindow)
QtCore.QMetaObject.connectSlotsByName(MainWindow)
def retranslateUi(self, MainWindow):
pass
|