示例#1
0
 def __init__(self, parent=None, nplots=3):
     #QtGui.QWidget
     MPLWidget.__init__(self, parent=parent)
     #self.canvas = MPLWidget(self)
     self.nplots = nplots
     self.on_neb_pick = Signal()
     self.mpl_connect('pick_event', self.on_pick)
示例#2
0
 def __init__(self, parent=None, nplots = 3):
     #QtGui.QWidget
     MPLWidget.__init__(self, parent=parent)
     #self.canvas = MPLWidget(self)
     self.nplots = nplots
     self.on_neb_pick = Signal()
     self.mpl_connect('pick_event', self.on_pick)
示例#3
0
    def __init__(self, database=None, parent=None, app=None, minima=None):
        MPLWidget.__init__(self, parent=parent)
#        self.widget = GraphDisplayWidget(parent=parent)
        self.database = database
        self.minima = minima
        self.app = app
        
        self.on_minima_picked = Signal()
示例#4
0
    def __init__(self, database=None, parent=None, app=None, minima=None):
        MPLWidget.__init__(self, parent=parent)
        #        self.widget = GraphDisplayWidget(parent=parent)
        self.database = database
        self.minima = minima
        self.app = app

        self.on_minima_picked = Signal()
示例#5
0
 def __init__(self, parent=None):
     #QtGui.QWidget
     MPLWidget.__init__(self, parent=parent)
示例#6
0
 def __init__(self, parent=None):
     #QtGui.QWidget
     MPLWidget.__init__(self, parent=parent)
示例#7
0
 def __init__(self, parent=None, attrname="k", yscale='linear'):
     MPLWidget.__init__(self, parent=parent)
     self.neb_attribute = attrname
     self.yscale = yscale
示例#8
0
 def __init__(self, parent=None, attrname="k", yscale='linear'):
     MPLWidget.__init__(self, parent=parent)
     self.neb_attribute=attrname
     self.yscale = yscale