Cat
EmulateFE.py
Go to the documentation of this file.
1 import wx
2 from proc import *
3 from plotter import *
4 from libCatKernel import *
5 from matplotlib.path import Path
6 import matplotlib.patches as patches
7 
8 class EmulateFE(proc):
9  def __init__(self, cat, obj, panel, path):
10  proc.__init__(self,cat,obj,panel,path)
11  self.loadxrc()
12  self.update()
13  self.panel.Bind(wx.EVT_BUTTON, self.onApply, id=xrc.XRCID("Apply"))
14 
15  def update(self):
16  print "Not implemented"
17 
18 #----------------------------------------------------------------------
19 
20 def Edit (cat, obj, panel, path):
21  return EmulateFE(cat, obj, panel, path)
22 
23 #----------------------------------------------------------------------
24 
25 def Plot(cat, obj, parent, id):
26  return None
Definition: proc.py:8
def loadxrc(self)
Definition: proc.py:16
def Edit(cat, obj, panel, path)
Definition: EmulateFE.py:20
def update(self)
Definition: EmulateFE.py:15
def __init__(self, cat, obj, panel, path)
Definition: EmulateFE.py:9
def Plot(cat, obj, parent, id)
Definition: EmulateFE.py:25