File: xmldialog.py

package info (click to toggle)
qgis 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 374,696 kB
  • ctags: 66,263
  • sloc: cpp: 396,139; ansic: 241,070; python: 130,609; xml: 14,884; perl: 1,290; sh: 1,287; sql: 500; yacc: 268; lex: 242; makefile: 168
file content (52 lines) | stat: -rw-r--r-- 2,646 bytes parent folder | download
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
# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file '/home/tkralidi/work/foss4g/MetaSearch/MetaSearch/plugin/MetaSearch/ui/xmldialog.ui'
#
# Created: Thu Mar 20 21:56:35 2014
#      by: PyQt4 UI code generator 4.9.3
#
# 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_XMLDialog(object):
    def setupUi(self, XMLDialog):
        XMLDialog.setObjectName(_fromUtf8("XMLDialog"))
        XMLDialog.resize(812, 767)
        self.verticalLayout = QtGui.QVBoxLayout(XMLDialog)
        self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
        self.lblXMLRequest = QtGui.QLabel(XMLDialog)
        self.lblXMLRequest.setObjectName(_fromUtf8("lblXMLRequest"))
        self.verticalLayout.addWidget(self.lblXMLRequest)
        self.txtbrXMLRequest = QtGui.QTextBrowser(XMLDialog)
        self.txtbrXMLRequest.setObjectName(_fromUtf8("txtbrXMLRequest"))
        self.verticalLayout.addWidget(self.txtbrXMLRequest)
        self.lblXMLResponse = QtGui.QLabel(XMLDialog)
        self.lblXMLResponse.setObjectName(_fromUtf8("lblXMLResponse"))
        self.verticalLayout.addWidget(self.lblXMLResponse)
        self.txtbrXMLResponse = QtGui.QTextBrowser(XMLDialog)
        self.txtbrXMLResponse.setLineWrapMode(QtGui.QTextEdit.NoWrap)
        self.txtbrXMLResponse.setOpenExternalLinks(True)
        self.txtbrXMLResponse.setObjectName(_fromUtf8("txtbrXMLResponse"))
        self.verticalLayout.addWidget(self.txtbrXMLResponse)
        self.buttonBox = QtGui.QDialogButtonBox(XMLDialog)
        self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
        self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Close)
        self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
        self.verticalLayout.addWidget(self.buttonBox)

        self.retranslateUi(XMLDialog)
        QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), XMLDialog.accept)
        QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), XMLDialog.reject)
        QtCore.QMetaObject.connectSlotsByName(XMLDialog)

    def retranslateUi(self, XMLDialog):
        XMLDialog.setWindowTitle(QtGui.QApplication.translate("XMLDialog", "XML Request / Response", None, QtGui.QApplication.UnicodeUTF8))
        self.lblXMLRequest.setText(QtGui.QApplication.translate("XMLDialog", "Request", None, QtGui.QApplication.UnicodeUTF8))
        self.lblXMLResponse.setText(QtGui.QApplication.translate("XMLDialog", "Response", None, QtGui.QApplication.UnicodeUTF8))