forked from M-Labs/artiq
1
0
Fork 0

gui/models/DictSyncTreeSepModel: support tooltips

This commit is contained in:
Sebastien Bourdeauducq 2016-04-05 13:25:14 +08:00
parent 14caa2713c
commit d9b2968426
1 changed files with 12 additions and 4 deletions

View File

@ -359,19 +359,27 @@ class DictSyncTreeSepModel(QtCore.QAbstractItemModel):
return key
def data(self, index, role):
if not index.isValid() or role != QtCore.Qt.DisplayRole:
if not index.isValid() or (role != QtCore.Qt.DisplayRole
and role != QtCore.Qt.ToolTipRole):
return None
else:
column = index.column()
if column == 0:
if column == 0 and role == QtCore.Qt.DisplayRole:
return index.internalPointer().name
else:
key = self.index_to_key(index)
if key is None:
return None
else:
return self.convert(key, self.backing_store[key],
column)
if role == QtCore.Qt.DisplayRole:
convert = self.convert
else:
convert = self.convert_tooltip
return convert(key, self.backing_store[key],
column)
def convert(self, k, v, column):
raise NotImplementedError
def convert_tooltip(self, k, v, column):
return None