Skip to content

Commit 37c9b88

Browse files
committed
Fixed legends on sleep trend. Closes #3
1 parent a999014 commit 37c9b88

File tree

2 files changed

+50
-15
lines changed

2 files changed

+50
-15
lines changed

panels/5_sleeptrend.py

+26-8
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ def __init__(self, parent):
3131
self.name = 'Sleep Trend'
3232
self.compatible = 'all'
3333

34+
self.AddOption('show_legend', 'boolean', 1, ['Show legend', 'Do not show legend'], 'Do you want to draw a legend in the Day / Night graph?')
35+
3436

3537
def Refresh(self):
3638
'''
@@ -137,24 +139,36 @@ def Refresh(self):
137139
single_day_std = average(value_std)
138140
single_day_rd_avg = average(day_sleep)
139141
single_day_rn_avg = average(night_sleep)
142+
143+
plot_legend = self.GetOption('show_legend')
140144

141-
self.canvas.redraw(subplot_trend, title, value_avg, value_std, single_day_avg, single_day_std, single_day_rd_avg, single_day_rn_avg, pos, color )
145+
self.canvas.redraw(subplot_trend, title, value_avg, value_std, single_day_avg, single_day_std, single_day_rd_avg, single_day_rn_avg, pos, color, plot_legend )
142146
self.WriteComment(cSEL.Comment or '')
143147

144148

145-
def subplot_trend(fig, title, value_avg, value_std, single_day_avg, single_day_std, single_day_rd_avg, single_day_rn_avg, pos, col):
149+
def subplot_trend(fig, title, value_avg, value_std, single_day_avg, single_day_std, single_day_rd_avg, single_day_rn_avg, pos, col, plot_legend):
146150

147151
## for n, point in zip(range(len(value_avg)), value_avg):
148152
## if point == NaN: value_avg[n] = -1
149153

154+
if GUI['choice'] == 'AI':
155+
ylabel = 'Activity Index'
156+
a2title = 'Activity'
157+
158+
else:
159+
ylabel = 'Minutes'
160+
a2title = 'Sleep'
161+
162+
150163

151164
#UPPER PANEL
152165
a1 = fig.add_subplot(211)
153166
#a1.xlim(0,len(tot_sleep)+1)
154167
a1.plot(value_avg, color=col, marker= 'o', ls = ':')
155168
if GUI['ErrorBar']: a1.errorbar(range(0,len(value_avg)), value_avg, value_std, ecolor=col, fmt=None )
156169
if single_day_avg > 3: a1.set_ylim(0,1440)
157-
a1.set_ylabel('Sleep (m/d)')
170+
171+
a1.set_ylabel(ylabel)
158172

159173
a1.set_xlim(-1,len(value_avg))
160174
step = (len(value_avg)>50 * 5) or 1
@@ -165,7 +179,7 @@ def subplot_trend(fig, title, value_avg, value_std, single_day_avg, single_day_s
165179
a1.set_title(title)
166180

167181
#LOWER RIGHT
168-
a2 = fig.add_subplot(224, title = 'Total Sleep')
182+
a2 = fig.add_subplot(224, title = a2title)
169183
pos = pos + 1
170184
width = float(pos) / (pos*2)
171185

@@ -174,15 +188,16 @@ def subplot_trend(fig, title, value_avg, value_std, single_day_avg, single_day_s
174188
else:
175189
a2.bar(pos, single_day_avg, width, color=col , align='center')
176190

177-
a2.set_ylabel('Sleep (m/d)')
191+
192+
a2.set_ylabel(ylabel)
178193
a2.set_xticks(range(1,pos+2))
179194
a2.set_xticklabels(['']+range(1,pos))
180195
a2.set_xlim(1.5,pos+0.5)
181196
if single_day_avg > 3: a2.set_ylim(0,1440)
182197

183198

184199
#LOWER LEFT
185-
a3 = fig.add_subplot(223, title = 'Total Sleep (day/night)')
200+
a3 = fig.add_subplot(223, title = 'Total Sleep (day - night)')
186201

187202
col_brighter = brighten(col)
188203

@@ -195,5 +210,8 @@ def subplot_trend(fig, title, value_avg, value_std, single_day_avg, single_day_s
195210
a3.set_xticklabels(['']+range(1,pos))
196211
a3.set_xlim(1.5,pos+0.5)
197212
a3.set_ylim(0,1440)
198-
## a3.legend( (p1[0], p2[0]), ('Day', 'Night') )
199-
##a3.set_ylabel('Sleep (m/d)')
213+
214+
if plot_legend:
215+
a3.legend( (p1[0], p2[0]), ('Day', 'Night') )
216+
217+
a3.set_ylabel('Minutes')

pysolo_anal.py

+24-7
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@
1919
# along with this program; if not, write to the Free Software
2020
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
2121
# MA 02110-1301, USA.
22+
#
23+
# self.sp = MultiSplitterWindow
24+
# self.TreePanel
25+
# self.Notebook
26+
# self.Pages
27+
# self.sbPanel
28+
# self.OptSB
29+
# self.ExportSB
30+
2231

2332
import wx, os, glob
2433
from pysolo_path import panelPath, imgPath
@@ -34,6 +43,10 @@
3443
from wx.lib.buttons import GenBitmapToggleButton
3544
import wx.lib.agw.customtreectrl as CT
3645

46+
import wx.lib.newevent
47+
myEVT_OPTION_CHANGED, EVT_OPTION_CHANGED = wx.lib.newevent.NewEvent()
48+
49+
3750
class ExportVariableSideBar(wx.Panel):
3851
"""
3952
Custom Panel for the Export Variable sidebar
@@ -249,6 +262,7 @@ def __init__(self, parent):
249262
create the actual panel
250263
"""
251264

265+
self.parent = parent
252266
wx.Panel.__init__(self, parent, -1)
253267

254268
self.varType = ''
@@ -307,6 +321,10 @@ def onSelChanged(self, event):
307321

308322
self.OptionsInfo.SetValue(descMsg)
309323

324+
#create and post the event
325+
#TOFIX: this event does not propagate upstream
326+
#It's needed to refresh drawing when variables are changed
327+
wx.PostEvent(self.parent, myEVT_OPTION_CHANGED())
310328

311329
def SetItemsList(self, checked, choices):
312330
"""
@@ -413,9 +431,6 @@ def __init__(self, parent):
413431
GUI['currentlyDrawn'] = 0
414432
GUI['holdplot'] = False
415433

416-
417-
418-
419434
def onKeyDown(self,event):
420435
"""
421436
Detects a key down event and take corresponding action
@@ -684,20 +699,22 @@ def __init__(self, parent, id, title, siblingMode = False):
684699
self.MakeTheTree() #creates self.TreePanel and contents
685700

686701
self.MakeTheNotebook() #creates self.nb
687-
SB = self.MakeTheSideBar() #creates the sidebar on the right side
702+
self.sidebar = self.MakeTheSideBar() #creates the sidebar on the right side
688703

689704

690705
self.sp.AppendWindow(self.TreePanel, self.initpos)
691-
self.sp.AppendWindow(self.nb)
692-
self.sp.AppendWindow(SB)
706+
self.sp.AppendWindow(self.nb) # contains all the panels as pages
707+
self.sp.AppendWindow(self.sidebar) # contains optsb and exportsb
693708

694709
self.OptSB.Show(False)
695710

696711
#self.sp.SplitVertically(self.TreePanel, self.nb, self.initpos)
697712
self.sp.SetMinimumPaneSize(self.minpane)
698713

714+
#custom events are defined in pysolo_lib
699715
self.Bind(EVT_FILE_MODIFIED, self.SetfileisModified)
700716
self.Bind(EVT_OPTIONSB_SHOW_HIDE, self.onShowOptionsSideBar)
717+
self.Bind(EVT_OPTION_CHANGED, self.Refresh)
701718
self.Bind(wx.EVT_CLOSE, self.onClose)
702719
self.Bind(wx.EVT_SIZE, self.onResize)
703720

@@ -792,7 +809,7 @@ def GetPanels(self):
792809

793810
def MakeTheSideBar(self):
794811
"""
795-
We create the panel that will sit on the right side to modify panel specific parameters
812+
We create an option panel that will sit on the right side to modify panel specific parameters
796813
"""
797814

798815
sbPanel = MultiSplitterWindow(self.sp)

0 commit comments

Comments
 (0)