forked from 3liz/lizmap-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui_lizmap_popup.py
58 lines (51 loc) · 2.86 KB
/
ui_lizmap_popup.py
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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'ui_lizmap_popup.ui'
#
# Created: Mon Feb 11 10:08:12 2013
# 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_lizmap_popup(object):
def setupUi(self, lizmap_popup):
lizmap_popup.setObjectName(_fromUtf8("lizmap_popup"))
lizmap_popup.setWindowModality(QtCore.Qt.WindowModal)
lizmap_popup.resize(448, 391)
self.gridLayout_3 = QtGui.QGridLayout(lizmap_popup)
self.gridLayout_3.setObjectName(_fromUtf8("gridLayout_3"))
self.splitter = QtGui.QSplitter(lizmap_popup)
self.splitter.setOrientation(QtCore.Qt.Vertical)
self.splitter.setObjectName(_fromUtf8("splitter"))
self.groupBox = QtGui.QGroupBox(self.splitter)
self.groupBox.setObjectName(_fromUtf8("groupBox"))
self.gridLayout_2 = QtGui.QGridLayout(self.groupBox)
self.gridLayout_2.setObjectName(_fromUtf8("gridLayout_2"))
self.txtPopup = QtGui.QTextEdit(self.groupBox)
self.txtPopup.setObjectName(_fromUtf8("txtPopup"))
self.gridLayout_2.addWidget(self.txtPopup, 0, 0, 1, 1)
self.groupBox_2 = QtGui.QGroupBox(self.splitter)
self.groupBox_2.setObjectName(_fromUtf8("groupBox_2"))
self.gridLayout = QtGui.QGridLayout(self.groupBox_2)
self.gridLayout.setObjectName(_fromUtf8("gridLayout"))
self.htmlPopup = QtGui.QTextEdit(self.groupBox_2)
self.htmlPopup.setEnabled(False)
self.htmlPopup.setObjectName(_fromUtf8("htmlPopup"))
self.gridLayout.addWidget(self.htmlPopup, 0, 0, 1, 1)
self.gridLayout_3.addWidget(self.splitter, 0, 0, 1, 1)
self.bbConfigurePopup = QtGui.QDialogButtonBox(lizmap_popup)
self.bbConfigurePopup.setOrientation(QtCore.Qt.Horizontal)
self.bbConfigurePopup.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
self.bbConfigurePopup.setObjectName(_fromUtf8("bbConfigurePopup"))
self.gridLayout_3.addWidget(self.bbConfigurePopup, 1, 0, 1, 1)
self.retranslateUi(lizmap_popup)
QtCore.QMetaObject.connectSlotsByName(lizmap_popup)
lizmap_popup.setTabOrder(self.txtPopup, self.htmlPopup)
lizmap_popup.setTabOrder(self.htmlPopup, self.bbConfigurePopup)
def retranslateUi(self, lizmap_popup):
lizmap_popup.setWindowTitle(QtGui.QApplication.translate("lizmap_popup", "Lizmap - Popup", None, QtGui.QApplication.UnicodeUTF8))
self.groupBox.setTitle(QtGui.QApplication.translate("lizmap_popup", "ui.popup.source.label", None, QtGui.QApplication.UnicodeUTF8))
self.groupBox_2.setTitle(QtGui.QApplication.translate("lizmap_popup", "ui.popup.html.label", None, QtGui.QApplication.UnicodeUTF8))