forked from apryet/Qgridder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui_qgridder_plot.py
More file actions
48 lines (40 loc) · 1.74 KB
/
ui_qgridder_plot.py
File metadata and controls
48 lines (40 loc) · 1.74 KB
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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'ui_qgridder_plot.ui'
#
# Created: Fri May 15 23:22:24 2015
# by: PyQt4 UI code generator 4.10.4
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s
try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig)
class Ui_QGridderPlot(object):
def setupUi(self, QGridderPlot):
QGridderPlot.setObjectName(_fromUtf8("QGridderPlot"))
QGridderPlot.resize(494, 526)
self.verticalLayout = QtGui.QVBoxLayout(QGridderPlot)
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
self.widget = Mplwidget(QGridderPlot)
sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.widget.sizePolicy().hasHeightForWidth())
self.widget.setSizePolicy(sizePolicy)
self.widget.setMinimumSize(QtCore.QSize(470, 460))
self.widget.setObjectName(_fromUtf8("widget"))
self.verticalLayout.addWidget(self.widget)
self.retranslateUi(QGridderPlot)
QtCore.QMetaObject.connectSlotsByName(QGridderPlot)
def retranslateUi(self, QGridderPlot):
QGridderPlot.setWindowTitle(_translate("QGridderPlot", "Qgridder Plot", None))
from mplwidget import Mplwidget