Skip to content

Commit 0210be9

Browse files
committed
Better handling of playing and stopping
Fixed bug that would not allow to play same source from different panels Added a "source" textbox
1 parent e3e6222 commit 0210be9

File tree

1 file changed

+30
-13
lines changed

1 file changed

+30
-13
lines changed

pvg_panel_two.py

+30-13
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ def __init__(self, parent):
5252
self.thumbnailNumber = wx.ComboBox(self, -1, size=(-1,-1) , choices=self.MonitorList, style=wx.CB_DROPDOWN | wx.CB_READONLY | wx.CB_SORT)
5353
self.Bind(wx.EVT_COMBOBOX, self.onChangeMonitor, self.thumbnailNumber)
5454

55+
self.sourceTXTBOX = wx.TextCtrl (self, -1, "No monitor selected", style=wx.TE_READONLY)
56+
5557
sbSizer_1.Add ( self.thumbnailNumber, 0, wx.ALIGN_CENTRE|wx.LEFT|wx.RIGHT|wx.TOP, 5 )
58+
sbSizer_1.Add ( self.sourceTXTBOX, 0, wx.ALIGN_CENTRE|wx.LEFT|wx.RIGHT|wx.TOP|wx.EXPAND, 5 )
5659

5760
#Static box2: mask parameters
5861
sb_2 = wx.StaticBox(self, -1, "Mask Editing")#, size=(250,-1))
@@ -101,10 +104,10 @@ def __init__(self, parent):
101104
titleFont = wx.Font(10, wx.SWISS, wx.NORMAL, wx.BOLD)
102105
instr = [ ('Left mouse button - single click outside ROI', 'Start dragging ROI. ROI will be a perfect rectangle'),
103106
('Left mouse button - single click inside ROI', 'Select ROI. ROI turns red.'),
104-
('Left mouse button - double click', 'Select corner of ROI. Will close ROI after fourth selection'),
107+
('Left mouse button - double click', 'Select corner of ROI.\nWill close ROI after fourth selection'),
105108
('Middle mouse button - single click', 'Add currently selected ROI. ROI turns white.'),
106109
('Right mouse button - click', 'Remove selected currently selected ROI'),
107-
('Auto Fill', 'Will fill 32 ROIS (16x2) to fit under the last two\nselected points. To use select first upper left corner,\n then the lower right corner, then hit the Auto Fill Button.')
110+
('Auto Fill', 'Will fill 32 ROIS (16x2) to fit under the last two\nselected points. To use select first upper left corner,\n then the lower right corner, then use "Auto Fill".')
108111
]
109112

110113
for title, text in instr:
@@ -128,30 +131,44 @@ def __init__(self, parent):
128131

129132
self.SetSizer(sizer_1)
130133

134+
def StopPlaying(self):
135+
"""
136+
"""
137+
self.fsPanel.Stop()
138+
139+
131140
def onChangeMonitor(self, event):
132141
"""
142+
FIX THIS
143+
this is a mess
133144
"""
134145

135146
if self.fsPanel.isPlaying: self.fsPanel.Stop()
136147

137-
sel = self.monitor_name = event.GetString()
138-
m = self.monitor_number = self.MonitorList.index(sel)
148+
self.monitor_name = event.GetString()
149+
self.monitor_number = self.MonitorList.index( self.monitor_name )
139150

140151
n_cams = options.GetOption("Webcams")
141152
WebcamsList = [ 'Webcam %s' % (int(w) +1) for w in range( n_cams ) ]
142153

143154
if options.HasMonitor(self.monitor_number):
144-
self.fsPanel.sourceType, self.fsPanel.source, self.fsPanel.track, self.mask_file, self.fsPanel.trackType = options.GetMonitor(self.monitor_number)
145-
else:
146-
self.fsPanel.sourceType, self.fsPanel.source, self.fsPanel.track, self.mask_file, self.fsPanel.trackType = [0, '', False, '', 1]
155+
sourceType, source, track, mask_file, trackType = options.GetMonitor(self.monitor_number)
156+
self.fsPanel.setMonitor( source )
157+
self.fsPanel.Play()
147158

148-
self.fsPanel.setMonitor(self.fsPanel.source, self.fs_size)
149-
if self.fsPanel.hasMonitor(): self.fsPanel.Play()
159+
if mask_file:
160+
self.fsPanel.mon.loadROIS(mask_file)
161+
self.currentMaskTXT.SetValue(os.path.split(mask_file)[1] or '')
150162

151-
if self.mask_file:
152-
self.fsPanel.mon.loadROIS(self.mask_file)
153-
154-
self.currentMaskTXT.SetValue(os.path.split(self.mask_file)[1] or '')
163+
if sourceType == 0:
164+
self.sourceTXTBOX.SetValue( WebcamsList[source] )
165+
else:
166+
self.sourceTXTBOX.SetValue( os.path.split(source)[1] )
167+
168+
else:
169+
sourceType, source, track, mask_file, trackType = [0, '', False, '', 1]
170+
self.sourceTXTBOX.SetValue('No Source for this monitor')
171+
155172

156173
def onSaveMask(self, event):
157174
"""

0 commit comments

Comments
 (0)