~ubuntu-branches/ubuntu/quantal/ubuntuone-control-panel/quantal-proposed

« back to all changes in this revision

Viewing changes to ubuntuone/controlpanel/gui/qt/ui/loadingoverlay_ui.py

  • Committer: Package Import Robot
  • Author(s): Rodney Dawes
  • Date: 2012-06-20 16:42:13 UTC
  • mto: This revision was merged to the branch mainline in revision 50.
  • Revision ID: package-import@ubuntu.com-20120620164213-6z7q5pqc0ydjrp19
Tags: upstream-3.99.0
ImportĀ upstreamĀ versionĀ 3.99.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
 
 
3
# Form implementation generated from reading ui file 'data/qt/loadingoverlay.ui'
 
4
#
 
5
# Created: Wed Jun 20 16:21:44 2012
 
6
#      by: PyQt4 UI code generator 4.9.1
 
7
#
 
8
# WARNING! All changes made in this file will be lost!
 
9
 
 
10
from PyQt4 import QtCore, QtGui
 
11
 
 
12
try:
 
13
    _fromUtf8 = QtCore.QString.fromUtf8
 
14
except AttributeError:
 
15
    _fromUtf8 = lambda s: s
 
16
 
 
17
class Ui_Form(object):
 
18
    def setupUi(self, Form):
 
19
        Form.setObjectName(_fromUtf8("Form"))
 
20
        Form.resize(702, 230)
 
21
        self.verticalLayout = QtGui.QVBoxLayout(Form)
 
22
        self.verticalLayout.setContentsMargins(-1, 30, -1, -1)
 
23
        self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
 
24
        self.horizontalLayout_2 = QtGui.QHBoxLayout()
 
25
        self.horizontalLayout_2.setObjectName(_fromUtf8("horizontalLayout_2"))
 
26
        spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
 
27
        self.horizontalLayout_2.addItem(spacerItem)
 
28
        self.frm_box = QtGui.QFrame(Form)
 
29
        self.frm_box.setMinimumSize(QtCore.QSize(0, 102))
 
30
        self.frm_box.setObjectName(_fromUtf8("frm_box"))
 
31
        self.horizontalLayout = QtGui.QHBoxLayout(self.frm_box)
 
32
        self.horizontalLayout.setContentsMargins(-1, 0, -1, 30)
 
33
        self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
 
34
        self.label = QtGui.QLabel(self.frm_box)
 
35
        sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
 
36
        sizePolicy.setHorizontalStretch(0)
 
37
        sizePolicy.setVerticalStretch(0)
 
38
        sizePolicy.setHeightForWidth(self.label.sizePolicy().hasHeightForWidth())
 
39
        self.label.setSizePolicy(sizePolicy)
 
40
        self.label.setText(_fromUtf8("Getting information, please wait..."))
 
41
        self.label.setObjectName(_fromUtf8("label"))
 
42
        self.horizontalLayout.addWidget(self.label)
 
43
        self.horizontalLayout_2.addWidget(self.frm_box)
 
44
        spacerItem1 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
 
45
        self.horizontalLayout_2.addItem(spacerItem1)
 
46
        self.verticalLayout.addLayout(self.horizontalLayout_2)
 
47
        spacerItem2 = QtGui.QSpacerItem(20, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Expanding)
 
48
        self.verticalLayout.addItem(spacerItem2)
 
49
 
 
50
        self.retranslateUi(Form)
 
51
        QtCore.QMetaObject.connectSlotsByName(Form)
 
52
 
 
53
    def retranslateUi(self, Form):
 
54
        pass
 
55