-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplotscifigs.py
257 lines (198 loc) · 8.53 KB
/
plotscifigs.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
""" Short description of this Python module.
Longer description of this module.
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
"""
__author__ = "Daniel Martin-Yerga"
__email__ = "[email protected]"
__copyright__ = "Copyright 2018"
__license__ = "GPLv3"
__version__ = "0.1"
import sys
from PyQt5.QtWidgets import QApplication, QMainWindow, QWidget, QFileDialog, QMessageBox
from ui_mainwindow import Ui_MainWindow
from ui_tabplotwidget import Ui_tabPlotWidget
from plotting import Plotting
class MainWindow (QMainWindow):
def __init__(self, parent=None):
QMainWindow.__init__(self, parent)
self.ui = Ui_MainWindow()
self.ui.setupUi(self)
self.setupMainWindow()
def setupMainWindow(self):
self.tabWidget = self.ui.tabWidget
self.tabConfig = self.ui.tabConfig
self.tabplot1 = self.ui.tabPlot1
self.tabplot2 = self.ui.tabPlot2
self.tabplot3 = self.ui.tabPlot3
self.tabplot4 = self.ui.tabPlot4
self.tabplots = [self.tabplot1, self.tabplot2, self.tabplot3, self.tabplot4]
self.tabtexts = []
for i in range(1, 5):
self.tabtexts.append(self.tabWidget.tabText(i))
self.tabplotwidgets = []
for tabplot in self.tabplots:
newwidget = TabPlotWidget()
self.tabplotwidgets.append(newwidget)
tabplot.layout().addWidget(newwidget)
self.nextbutton = self.ui.nextButton
self.nextbutton.clicked.connect(self.onNextButtonClicked)
self.backbutton = self.ui.backButton
self.backbutton.clicked.connect(self.onBackButtonClicked)
self.settingsButton = self.ui.settingsButton
self.nplotspin = self.ui.nplotsSpin
self.nplotspin.valueChanged.connect(self.nplotsChanged)
self.nplots = int(self.nplotspin.value())
self.combostyle = self.ui.comboStyle
self.verticalRBtn = self.ui.verticalRBtn
self.verticalRBtn.toggled.connect(self.aspectToggled)
self.singleRBtn = self.ui.singleRBtn
self.singleRBtn.toggled.connect(self.aspectToggled)
self.plotbutton = self.ui.plotButton
self.plotbutton.clicked.connect(self.plotFigure)
self.actionQuit = self.ui.actionQuit
self.actionQuit.triggered.connect(self.quitApp)
self.actionAbout = self.ui.actionAbout
self.actionAbout.triggered.connect(self.aboutApp)
self.annTextEdit = self.ui.annTextEdit
def quitApp(self):
app.quit()
def aspectToggled(self):
#TODO: improve behaviour, show msg, if verticalplot -> single: True
if self.verticalRBtn.isChecked():
self.singleRBtn.setChecked(True)
def onBackButtonClicked(self):
index = self.tabWidget.currentIndex()
numtabs = self.tabWidget.count()
print(index, numtabs)
if index > 0:
self.tabWidget.setCurrentIndex(index-1)
def onNextButtonClicked(self):
index = self.tabWidget.currentIndex()
numtabs = self.tabWidget.count()
print(index, numtabs)
if index < numtabs-1:
self.tabWidget.setCurrentIndex(index+1)
def nplotsChanged(self):
newvalue = self.nplotspin.value()
if self.nplots > newvalue:
self.tabWidget.removeTab(self.nplots)
else:
tabtext = self.tabtexts[newvalue-1]
newtab = self.tabplots[newvalue-1]
self.tabWidget.insertTab(newvalue, newtab, tabtext)
self.nplots = newvalue
def plotFigure(self):
config = self.getConfig()
plotsconfig = self.getPlotsConfig()
print("plotsconfig: ", plotsconfig)
annotations = self.getAnnotations()
plotting = Plotting(config, plotsconfig, annotations)
def getAnnotations(self):
"""
Annotations:
Text: x, y, text
Arrow: nplot, Arrow, x, y, dx, dy, headwith, headlength
Ellipse: nplot, Ellipse, x, y, width, height, angle, color,
:return:
"""
anntext = self.annTextEdit.toPlainText()
textlines = anntext.split("\n")
annotations = []
for i in range(len(textlines)):
splittedtext = textlines[i].split(";")
annotations.append(splittedtext)
print("annotations: ", annotations)
return annotations
def getConfig(self):
self.plotstyle = self.combostyle.currentText()
self.singlecolumn = self.singleRBtn.isChecked()
self.verticalplot = self.verticalRBtn.isChecked()
return self.nplots, self.singlecolumn, self.verticalplot, self.plotstyle
def getPlotsConfig(self):
plotsconfig = []
for i in range(self.nplots):
widget = self.tabplotwidgets[i]
widgetdata = widget.getData()
plotsconfig.append(widgetdata)
return plotsconfig
def aboutApp(self):
aboutdialog = QMessageBox.about(self, "About plotsciFigs", "About the application")
class TabPlotWidget (QWidget):
def __init__(self, parent=None):
QWidget.__init__(self, parent)
self.ui = Ui_tabPlotWidget()
self.ui.setupUi(self)
self.setupTabPlotWidget()
def setupTabPlotWidget(self):
self.browseBtn = self.ui.browseBtn
self.browseBtn.clicked.connect(self.browseDialog)
self.filenameBox = self.ui.filenameBox
self.typecombo = self.ui.comboType
self.doubleaxisCB = self.ui.doubleCB
self.xlabel1line = self.ui.xlabel1line
self.ylabel1line = self.ui.ylabel1line
self.ylabel2line = self.ui.ylabel2line
self.legendsline = self.ui.legendline
self.xlimitline = self.ui.xlimitline
self.y1limitlne = self.ui.y1limitline
self.y2limitline = self.ui.y2limitline
self.legend1CB = self.ui.legend1CB
self.legend2CB = self.ui.legend2CB
self.xaxislocator = self.ui.xaxislocator
self.y1axislocator = self.ui.y1axislocator
self.y2axislocator = self.ui.y2axislocator
self.convertyline = self.ui.convertYline
self.converty2line = self.ui.convertY2line
self.normalizeCB = self.ui.normalizedCB
self.lineplotCB = self.ui.lineplotBox
self.desvestCB = self.ui.desvestBox
self.multicolordotsCB = self.ui.multicolorCB
def browseDialog(self):
filename, ffilter = QFileDialog.getOpenFileName(self, 'Select file')
if filename:
self.filenameBox.setText(filename)
def getData(self):
plottype = self.typecombo.currentText()
filename = self.filenameBox.text()
xlabel1 = self.xlabel1line.text()
ylabel1 = self.ylabel1line.text()
ylabel2 = self.ylabel2line.text()
xlimit = self.xlimitline.text()
y1limit = self.y1limitlne.text()
y2limit = self.y2limitline.text()
legends = self.legendsline.text()
doubleaxis = self.doubleaxisCB.isChecked()
legend1loc = self.legend1CB.currentText()
legend2loc = self.legend2CB.currentText()
xaxislocator = self.xaxislocator.text()
y1axislocator = self.y1axislocator.text()
y2axislocator = self.y2axislocator.text()
converty = self.convertyline.text()
converty2 = self.converty2line.text()
normalized = self.normalizeCB.currentText()
desvest = self.desvestCB.isChecked()
lineplot = self.lineplotCB.isChecked()
multicolor = self.multicolordotsCB.isChecked()
return plottype, filename, xlabel1, ylabel1, ylabel2, legends, xlimit, y1limit, y2limit, \
doubleaxis, legend1loc, legend2loc, xaxislocator, y1axislocator, y2axislocator, converty, converty2, \
normalized, desvest, lineplot, multicolor
if __name__ == "__main__":
#QApplication.setDesktopSettingsAware(False)
app = QApplication(sys.argv)
app.setApplicationName("plotSciFigs")
app.setApplicationVersion("0.1")
appname = "org.dyerga.plotscifigs"
window = MainWindow()
window.setWindowTitle("plotSciFigs")
window.show()
sys.exit(app.exec_())