Ignore:
Timestamp:
Oct 16, 2017 7:20:55 AM (7 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
Branches:
ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
f331852
Parents:
c691d36 (diff), c7358b2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'ESS_GUI_ToolTips' into ESS_GUI

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/FittingWidget.py

    r8f2548c ra95c44b  
    5050 
    5151USING_TWISTED = True 
     52 
     53class ToolTippedItemModel(QtGui.QStandardItemModel): 
     54 
     55    def __init__(self, parent = None): 
     56        QtGui.QStandardItemModel.__init__(self,parent) 
     57 
     58    def headerData(self, section, orientation, role): 
     59 
     60        if role == QtCore.Qt.ToolTipRole: 
     61            if orientation == QtCore.Qt.Horizontal: 
     62                return QtCore.QString(str(self.header_tooltips[section])) 
     63 
     64        return QtGui.QStandardItemModel.headerData(self, section, orientation, role) 
    5265 
    5366class FittingWidget(QtGui.QWidget, Ui_FittingWidgetUI): 
     
    240253        # We can't use a single model here, due to restrictions on flattening 
    241254        # the model tree with subclassed QAbstractProxyModel... 
    242         self._model_model = QtGui.QStandardItemModel() 
    243         self._poly_model = QtGui.QStandardItemModel() 
    244         self._magnet_model = QtGui.QStandardItemModel() 
     255        self._model_model = ToolTippedItemModel() 
     256        self._poly_model = ToolTippedItemModel() 
     257        self._magnet_model = ToolTippedItemModel() 
    245258 
    246259        # Param model displayed in param list 
Note: See TracChangeset for help on using the changeset viewer.