Exemple #1
0
 def __init__(self, plot, parent=None):
     PlotAction.__init__(self,
                         plot,
                         icon='shape-circle',
                         text='Shift up',
                         tooltip='Shift active curve up by one unit',
                         triggered=self.shiftActiveCurveUp,
                         parent=parent)
Exemple #2
0
 def __init__(self, plot, parent=None):
     PlotAction.__init__(self,
                         plot,
                         icon='shape-circle',
                         text='Shift up',
                         tooltip='Shift active curve up by one unit',
                         triggered=self.shiftActiveCurveUp,
                         parent=parent)
Exemple #3
0
 def __init__(self, plot, parent=None):
     PlotAction.__init__(
         self,
         plot,
         icon=qt.QIcon(my_icon),
         text='FFT',
         tooltip='Perform Fast Fourier Transform on all curves',
         triggered=self.fftAllCurves,
         checkable=True,
         parent=parent)
Exemple #4
0
 def __init__(self, plot, parent=None):
     PlotAction.__init__(
         self,
         plot,
         icon=qt.QIcon(my_icon),
         text="FFT",
         tooltip="Perform Fast Fourier Transform on all curves",
         triggered=self.fftAllCurves,
         checkable=True,
         parent=parent,
     )