Changeset 4344
- Timestamp:
- 07/12/07 12:07:11 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
experimental/components/GraphPy/branches/0.6.1/GraphPy/GraphPy.py
r4343 r4344 105 105 def pushPacket(self, I, Q): 106 106 self.parent.app_ref.frame.my_local_plot.pushPacket(I, Q) 107 locker = wx.MutexGuiLocker() 107 108 108 109 #------------------------------------------------------------------- 109 110 # ORB_Init class definition … … 144 145 title = "Graph Component" 145 146 146 print "WARNING: component implementation name has to be GraphPy (not GraphPy1)" 147 self.component_name = ['arbitrary', 'arbitrary', 'GraphPy'] 148 147 tmp = label.split('/') 148 self.component_name = [tmp[0], tmp[1], tmp[2]] 149 149 wx.Frame.__init__(self, parent, id, title, 150 150 wx.DefaultPosition, (600, 400)) … … 326 326 def OnInit(self): 327 327 wx.InitAllImageHandlers() 328 self.frame = GraphFrame(None) # parent is None328 self.frame = GraphFrame(None) 329 329 self.SetTopWindow(self.frame) 330 330 return True