X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=datamodel.py;h=828374e823cb63155f7d0d83215a69138fded421;hb=HEAD;hp=6ce91581bbed334e51d3ba2feda120af8a0eaa3d;hpb=6c05c913c3d0140b1431b832e4a550665e659bf7;p=sigrok-meter.git diff --git a/datamodel.py b/datamodel.py index 6ce9158..828374e 100644 --- a/datamodel.py +++ b/datamodel.py @@ -14,12 +14,11 @@ ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License -## along with this program; if not, write to the Free Software -## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +## along with this program; if not, see . ## -import collections import itertools +import math import qtcompat import sigrok.core as sr import util @@ -52,7 +51,7 @@ class MeasurementDataModel(QtGui.QStandardItemModel): '''Role used to store the device vendor and model.''' descRole = QtCore.Qt.UserRole + 2 - '''Role used to store a dictionary with the traces''' + '''Role used to store a dictionary with the traces.''' tracesRole = QtCore.Qt.UserRole + 3 '''Role used to store the color to draw the graph of the channel.''' @@ -65,20 +64,17 @@ class MeasurementDataModel(QtGui.QStandardItemModel): # idRole holds tuples, and using them to sort doesn't work. self.setSortRole(MeasurementDataModel.descRole) - # Used in 'format_value()' to check against. - self.inf = float('inf') - # A generator for the colors of the channels. self._colorgen = self._make_colorgen() def _make_colorgen(self): cols = [ QtGui.QColor(0x8F, 0x52, 0x02), # brown + QtGui.QColor(0x73, 0xD2, 0x16), # green QtGui.QColor(0xCC, 0x00, 0x00), # red + QtGui.QColor(0x34, 0x65, 0xA4), # blue QtGui.QColor(0xF5, 0x79, 0x00), # orange QtGui.QColor(0xED, 0xD4, 0x00), # yellow - QtGui.QColor(0x73, 0xD2, 0x16), # green - QtGui.QColor(0x34, 0x65, 0xA4), # blue QtGui.QColor(0x75, 0x50, 0x7B) # violet ] @@ -103,7 +99,7 @@ class MeasurementDataModel(QtGui.QStandardItemModel): return '' def format_value(self, mag): - if mag == self.inf: + if math.isinf(mag): return u'\u221E' return '{:f}'.format(mag) @@ -136,7 +132,7 @@ class MeasurementDataModel(QtGui.QStandardItemModel): item = QtGui.QStandardItem() item.setData(uid, MeasurementDataModel.idRole) item.setData(desc, MeasurementDataModel.descRole) - item.setData(collections.defaultdict(Trace), MeasurementDataModel.tracesRole) + item.setData({}, MeasurementDataModel.tracesRole) item.setData(next(self._colorgen), MeasurementDataModel.colorRole) self.appendRow(item) self.sort(0) @@ -160,9 +156,24 @@ class MeasurementDataModel(QtGui.QStandardItemModel): # The samples role is a dictionary that contains the old samples for each unit. # Should be trimmed periodically, otherwise it grows larger and larger. - sample = (timestamp, value) - traces = item.data(MeasurementDataModel.tracesRole) - traces[unit].append(sample) + if not math.isinf(value) and not math.isnan(value): + sample = (timestamp, value) + traces = item.data(MeasurementDataModel.tracesRole) + + # It's not possible to use 'collections.defaultdict' here, because + # PySide doesn't return the original type that was passed in. + if not (unit in traces): + traces[unit] = Trace() + traces[unit].append(sample) + + item.setData(traces, MeasurementDataModel.tracesRole) + + def clear_samples(self): + '''Removes all old samples from the model.''' + for row in range(self.rowCount()): + idx = self.index(row, 0) + self.setData(idx, {}, + MeasurementDataModel.tracesRole) class MultimeterDelegate(QtGui.QStyledItemDelegate): '''Delegate to show the data items from a MeasurementDataModel.''' @@ -221,9 +232,11 @@ class MultimeterDelegate(QtGui.QStyledItemDelegate): c = index.data(MeasurementDataModel.colorRole) c = QtGui.QColorDialog.getColor(c, None, 'Choose new color for channel') - - item = model.itemFromIndex(index) - item.setData(c, MeasurementDataModel.colorRole) + if c.isValid(): + # False if cancel is pressed (resulting in a black + # color). + item = model.itemFromIndex(index) + item.setData(c, MeasurementDataModel.colorRole) return True