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

« back to all changes in this revision

Viewing changes to ubuntuone/controlpanel/gui/qt/ui/device_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/device.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(430, 27)
 
21
        Form.setWindowTitle(_fromUtf8("Form"))
 
22
        self.horizontalLayout = QtGui.QHBoxLayout(Form)
 
23
        self.horizontalLayout.setMargin(0)
 
24
        self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
 
25
        self.device_icon_label = QtGui.QLabel(Form)
 
26
        self.device_icon_label.setPixmap(QtGui.QPixmap(_fromUtf8(":/computer.png")))
 
27
        self.device_icon_label.setObjectName(_fromUtf8("device_icon_label"))
 
28
        self.horizontalLayout.addWidget(self.device_icon_label)
 
29
        self.device_name_label = QtGui.QLabel(Form)
 
30
        self.device_name_label.setText(_fromUtf8("Local device"))
 
31
        self.device_name_label.setObjectName(_fromUtf8("device_name_label"))
 
32
        self.horizontalLayout.addWidget(self.device_name_label)
 
33
        spacerItem = QtGui.QSpacerItem(217, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
 
34
        self.horizontalLayout.addItem(spacerItem)
 
35
        self.remove_device_button = QtGui.QPushButton(Form)
 
36
        self.remove_device_button.setText(_fromUtf8("Remove"))
 
37
        self.remove_device_button.setProperty("secondary", True)
 
38
        self.remove_device_button.setObjectName(_fromUtf8("remove_device_button"))
 
39
        self.horizontalLayout.addWidget(self.remove_device_button)
 
40
 
 
41
        self.retranslateUi(Form)
 
42
        QtCore.QMetaObject.connectSlotsByName(Form)
 
43
 
 
44
    def retranslateUi(self, Form):
 
45
        pass
 
46
 
 
47
import images_rc