This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dir { | |
ArchiveDir "./debian"; | |
CacheDir "./cache"; | |
}; | |
Default { | |
Packages::Compress ". gzip bzip2"; | |
Sources::Compress ". gzip bzip2"; | |
Contents::Compress ". gzip bzip2"; | |
}; | |
TreeDefault { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import numpy | |
from taurus.external.qt import QtGui | |
from taurus.qt.qtgui.application import TaurusApplication | |
from taurus.qt.qtgui.base import TaurusBaseComponent | |
from pyqtgraph import PlotDataItem | |
class TaurusPlotDataItem(PlotDataItem, TaurusBaseComponent): | |
"""A taurus-ified PlotDataItem""" |