-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathPoincarePlot.py
200 lines (139 loc) · 6.3 KB
/
PoincarePlot.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
# ----------------------------------------------------------------------
# gHRV: a graphical application for Heart Rate Variability analysis
# Copyright (C) 2020 LIA2 Research Group - Dpt. Informatics
# University of Vigo - Spain
#
# Authors:
# - Leandro Rodríguez-Liñares
# - Arturo Méndez
# - María José Lado
# - Xosé Antón Vila
#
# 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/>.
# ----------------------------------------------------------------------
import wx
from configvalues import *
import matplotlib
from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
from DataModel import DM
import Utils
import numpy as np
import os
from sys import platform
from matplotlib.widgets import Button
class PoincarePlotWindow(wx.Frame):
# sbDefaultText=" Keys: 's' saves plot"
def __init__(self,parent,id,title,dm):
wx.Frame.__init__(self, parent, -1, title, size=poincareWindowSize)
if platform != "darwin":
icon = wx.Icon("LogoIcon.ico", wx.BITMAP_TYPE_ICO)
self.SetIcon(icon)
# wx.Frame.__init__(self, parent, -1, title)
self.dm = dm
self.HasTwoPlots=False
self.Bind(wx.EVT_CLOSE,self.OnEnd)
self.WindowParent=parent
sizer=wx.BoxSizer(wx.VERTICAL)
panel = wx.Panel(self)
if not self.dm.HasVisibleEpisodes():
self.dm.SetPoincarePlotTagLeft("Global")
if self.dm.HasVisibleEpisodes():
# -------------- Begin of tags selector
sbTags = wx.StaticBox(panel, label="Episodes")
sbTagsSizer = wx.StaticBoxSizer(sbTags, wx.HORIZONTAL)
self.AllTags = self.dm.GetVisibleEpisodes()[0]
# tagsRB = []
ChoicesLeft = self.GetChoicesLeft()
self.dm.SetPoincarePlotTagLeft(ChoicesLeft[0])
self.dm.SetPoincarePlotTagRight("None")
self.cbComboLeft=wx.ComboBox(panel,
choices=ChoicesLeft,
value=self.dm.GetPoincarePlotTagLeft(),
style=wx.CB_DROPDOWN|wx.CB_READONLY
)
sbTagsSizer.Add(self.cbComboLeft,flag=wx.ALL | wx.EXPAND, border=borderSmall)
self.Bind(wx.EVT_COMBOBOX, self.OnComboLeft, id=self.cbComboLeft.GetId())
sbTagsSizer.AddStretchSpacer(prop=1)
ChoicesRight=self.GetChoicesRight()
self.cbComboRight=wx.ComboBox(panel,
choices=ChoicesRight,
value=self.dm.GetPoincarePlotTagRight(),
style=wx.CB_DROPDOWN|wx.CB_READONLY
)
sbTagsSizer.Add(self.cbComboRight,flag=wx.ALL | wx.EXPAND, border=borderSmall)
self.Bind(wx.EVT_COMBOBOX, self.OnComboRight, id=self.cbComboRight.GetId())
sizer.Add(sbTagsSizer,flag=wx.EXPAND|wx.TOP|wx.LEFT|wx.RIGHT,border=borderBig)
# -------------- End of tags selector
# -------------- Begin of figure
if ColoredBGPlots:
self.fig = matplotlib.figure.Figure((5.0, 5.0),facecolor=PoincareBGColor)
else:
self.fig = matplotlib.figure.Figure((5.0, 5.0))
# self.fig.subplots_adjust(left=0.05, bottom=0.18, right=0.98, top=0.92, wspace=0.20, hspace=0.15)
self.canvas = FigureCanvas(panel, -1, self.fig)
sizer.Add(self.canvas, 1, wx.LEFT | wx.TOP | wx.GROW)
# -------------- End of figure
# # -------------- Begin of buttons
hbox = wx.BoxSizer(wx.HORIZONTAL)
self.textOutput = wx.TextCtrl(panel, id, 'Information', size=(400, 50), style=wx.TE_READONLY|wx.TE_MULTILINE|wx.TE_RICH2)
self.textOutput.SetFont(wx.Font(11, wx.FONTFAMILY_SWISS, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL));
hbox.Add(self.textOutput, 1, wx.LEFT | wx.TOP | wx.GROW)
# hbox.AddStretchSpacer(prop=1)
endButton = wx.Button(panel, -1, "Close", size=buttonSizeSignif)
self.Bind(wx.EVT_BUTTON, self.OnEnd, id=endButton.GetId())
endButton.SetToolTip(wx.ToolTip("Click to close window"))
hbox.Add(endButton, 0, border=borderBig, flag=wx.LEFT | wx.ALIGN_BOTTOM)
sizer.Add(hbox, 0, flag=wx.EXPAND|wx.ALL, border=borderBig)
# # -------------- End of buttons
panel.SetSizer(sizer)
self.SetMinSize(poincareWindowMinSize)
self.Show(True)
self.Layout()
self.Refresh()
self.canvas.draw()
def OnComboLeft(self,event):
self.dm.SetPoincarePlotTagLeft(self.cbComboLeft.GetValue())
self.cbComboRight.Clear()
ch = self.GetChoicesRight()
for item in ch:
self.cbComboRight.Append(item)
self.Refresh()
def GetChoicesLeft(self):
Choices = ["Global"]
for Tag in self.AllTags:
Choices += [Tag]
Choices += ["Outside "+Tag]
return Choices
def GetChoicesRight(self):
Choices = ["None"]
for Tag in self.AllTags:
Choices += [Tag]
Choices += ["Outside "+Tag]
if self.dm.GetPoincarePlotTagLeft() != "Global":
Choices.remove(self.dm.GetPoincarePlotTagLeft())
return Choices
def OnComboRight(self,event):
self.dm.SetPoincarePlotTagRight(self.cbComboRight.GetValue())
if self.dm.GetPoincarePlotTagRight()=="None":
self.HasTwoPlots=False
else:
self.HasTwoPlots=True
self.Refresh()
def OnEnd(self,event):
self.WindowParent.OnPoincareEnded()
self.Destroy()
def Refresh(self):
cad = self.dm.CreatePlotPoincareEmbedded(self.fig,parentWindow=self)
self.textOutput.SetValue(cad)
self.canvas.draw()