~mapclient.devs/mapclient/stable

« back to all changes in this revision

Viewing changes to mapclient/tools/pmr/ui_oauthcheckdialog.py

  • Committer: musculoskeletal
  • Date: 2014-06-25 05:38:05 UTC
  • mfrom: (1.6.35 testing)
  • Revision ID: musculoskeletal@bioeng1033-20140625053805-jkqhi5oq74vmlntl
Merging testing into stable.

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 'qt/oauthcheckdialog.ui'
 
4
#
 
5
# Created: Fri Nov 22 16:57:05 2013
 
6
#      by: pyside-uic 0.2.13 running on PySide 1.1.0
 
7
#
 
8
# WARNING! All changes made in this file will be lost!
 
9
 
 
10
from PySide import QtCore, QtGui
 
11
 
 
12
class Ui_OAuthCheckDialog(object):
 
13
    def setupUi(self, OAuthCheckDialog):
 
14
        OAuthCheckDialog.setObjectName("OAuthCheckDialog")
 
15
        OAuthCheckDialog.resize(400, 300)
 
16
        self.verticalLayout = QtGui.QVBoxLayout(OAuthCheckDialog)
 
17
        self.verticalLayout.setObjectName("verticalLayout")
 
18
        self.groupBox = QtGui.QGroupBox(OAuthCheckDialog)
 
19
        self.groupBox.setObjectName("groupBox")
 
20
        self.verticalLayout_2 = QtGui.QVBoxLayout(self.groupBox)
 
21
        self.verticalLayout_2.setObjectName("verticalLayout_2")
 
22
        self.label = QtGui.QLabel(self.groupBox)
 
23
        self.label.setObjectName("label")
 
24
        self.verticalLayout_2.addWidget(self.label)
 
25
        self.continueButton = QtGui.QPushButton(self.groupBox)
 
26
        self.continueButton.setDefault(True)
 
27
        self.continueButton.setObjectName("continueButton")
 
28
        self.verticalLayout_2.addWidget(self.continueButton)
 
29
        self.verticalLayout.addWidget(self.groupBox)
 
30
        self.buttonBox = QtGui.QDialogButtonBox(OAuthCheckDialog)
 
31
        self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
 
32
        self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
 
33
        self.buttonBox.setObjectName("buttonBox")
 
34
        self.verticalLayout.addWidget(self.buttonBox)
 
35
 
 
36
        self.retranslateUi(OAuthCheckDialog)
 
37
        QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), OAuthCheckDialog.accept)
 
38
        QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), OAuthCheckDialog.reject)
 
39
        QtCore.QMetaObject.connectSlotsByName(OAuthCheckDialog)
 
40
 
 
41
    def retranslateUi(self, OAuthCheckDialog):
 
42
        OAuthCheckDialog.setWindowTitle(QtGui.QApplication.translate("OAuthCheckDialog", "Access Credentials Required", None, QtGui.QApplication.UnicodeUTF8))
 
43
        self.groupBox.setTitle(QtGui.QApplication.translate("OAuthCheckDialog", "Authorise Application", None, QtGui.QApplication.UnicodeUTF8))
 
44
        self.label.setText(QtGui.QApplication.translate("OAuthCheckDialog", "MAP Client requires your permission to access PMR.", None, QtGui.QApplication.UnicodeUTF8))
 
45
        self.continueButton.setText(QtGui.QApplication.translate("OAuthCheckDialog", "Continue", None, QtGui.QApplication.UnicodeUTF8))
 
46