[ad6b4e2] | 1 | from PyQt4 import QtGui |
---|
| 2 | from PyQt4 import QtCore |
---|
| 3 | |
---|
| 4 | import sas.qtgui.Utilities.GuiUtils as GuiUtils |
---|
[6011788] | 5 | |
---|
| 6 | class ModelViewDelegate(QtGui.QStyledItemDelegate): |
---|
| 7 | """ |
---|
| 8 | Custom delegate for appearance and behavior control of the model view |
---|
| 9 | """ |
---|
[8f2548c] | 10 | def __init__(self, parent=None): |
---|
| 11 | """ |
---|
| 12 | Overwrite generic constructor to allow for some globals |
---|
| 13 | """ |
---|
| 14 | super(QtGui.QStyledItemDelegate, self).__init__() |
---|
| 15 | |
---|
| 16 | # Main parameter table view columns |
---|
| 17 | self.param_error=-1 |
---|
| 18 | self.param_property=0 |
---|
| 19 | self.param_value=1 |
---|
| 20 | self.param_min=2 |
---|
| 21 | self.param_max=2 |
---|
| 22 | self.param_unit=2 |
---|
| 23 | |
---|
| 24 | def editableParameters(self): |
---|
| 25 | return [self.param_value, self.param_min, self.param_max] |
---|
| 26 | |
---|
| 27 | def addErrorColumn(self): |
---|
| 28 | """ |
---|
| 29 | Modify local column pointers |
---|
| 30 | Note: the reverse is never required! |
---|
| 31 | """ |
---|
| 32 | self.param_property=0 |
---|
| 33 | self.param_value=1 |
---|
| 34 | self.param_error=2 |
---|
| 35 | self.param_min=3 |
---|
| 36 | self.param_max=4 |
---|
| 37 | self.param_unit=5 |
---|
[06b0138] | 38 | |
---|
[6011788] | 39 | def paint(self, painter, option, index): |
---|
| 40 | """ |
---|
| 41 | Overwrite generic painter for certain columns |
---|
| 42 | """ |
---|
[8f2548c] | 43 | if index.column() in self.editableParameters(): |
---|
[6011788] | 44 | # Units - present in nice HTML |
---|
| 45 | options = QtGui.QStyleOptionViewItemV4(option) |
---|
| 46 | self.initStyleOption(options,index) |
---|
[2a432e7] | 47 | |
---|
[6011788] | 48 | style = QtGui.QApplication.style() if options.widget is None else options.widget.style() |
---|
| 49 | |
---|
| 50 | # Prepare document for inserting into cell |
---|
| 51 | doc = QtGui.QTextDocument() |
---|
| 52 | |
---|
| 53 | # Convert the unit description into HTML |
---|
| 54 | text_html = GuiUtils.convertUnitToHTML(str(options.text)) |
---|
| 55 | doc.setHtml(text_html) |
---|
| 56 | |
---|
| 57 | # delete the original content |
---|
| 58 | options.text = "" |
---|
[2a432e7] | 59 | style.drawControl(QtGui.QStyle.CE_ItemViewItem, options, painter, options.widget); |
---|
[6011788] | 60 | |
---|
| 61 | context = QtGui.QAbstractTextDocumentLayout.PaintContext() |
---|
| 62 | textRect = style.subElementRect(QtGui.QStyle.SE_ItemViewItemText, options) |
---|
| 63 | |
---|
| 64 | painter.save() |
---|
| 65 | painter.translate(textRect.topLeft()) |
---|
| 66 | painter.setClipRect(textRect.translated(-textRect.topLeft())) |
---|
| 67 | # Draw the QTextDocument in the cell |
---|
| 68 | doc.documentLayout().draw(painter, context) |
---|
| 69 | painter.restore() |
---|
| 70 | else: |
---|
| 71 | # Just the default paint |
---|
| 72 | QtGui.QStyledItemDelegate.paint(self, painter, option, index) |
---|
| 73 | |
---|
| 74 | def createEditor(self, widget, option, index): |
---|
| 75 | """ |
---|
| 76 | Overwrite generic editor for certain columns |
---|
| 77 | """ |
---|
| 78 | if not index.isValid(): |
---|
| 79 | return 0 |
---|
[8f2548c] | 80 | if index.column() == self.param_value: #only in the value column |
---|
[6011788] | 81 | editor = QtGui.QLineEdit(widget) |
---|
| 82 | validator = QtGui.QDoubleValidator() |
---|
| 83 | editor.setValidator(validator) |
---|
| 84 | return editor |
---|
[8f2548c] | 85 | if index.column() in [self.param_property, self.param_error]: |
---|
[0d13814] | 86 | # Set some columns uneditable |
---|
| 87 | return None |
---|
[6011788] | 88 | |
---|
| 89 | return super(ModelViewDelegate, self).createEditor(widget, option, index) |
---|
| 90 | |
---|
[00b3b40] | 91 | def setModelData(self, editor, model, index): |
---|
| 92 | """ |
---|
| 93 | Overwrite generic model update method for certain columns |
---|
| 94 | """ |
---|
[8f2548c] | 95 | if index.column() in (self.param_min, self.param_max): |
---|
[6011788] | 96 | try: |
---|
[00b3b40] | 97 | value_float = float(editor.text()) |
---|
[6011788] | 98 | except ValueError: |
---|
[00b3b40] | 99 | # TODO: present the failure to the user |
---|
| 100 | # balloon popup? tooltip? cell background colour flash? |
---|
[6011788] | 101 | return |
---|
[00b3b40] | 102 | QtGui.QStyledItemDelegate.setModelData(self, editor, model, index) |
---|
[6011788] | 103 | |
---|
| 104 | |
---|
| 105 | class PolyViewDelegate(QtGui.QStyledItemDelegate): |
---|
| 106 | """ |
---|
[00b3b40] | 107 | Custom delegate for appearance and behavior control of the polydispersity view |
---|
[6011788] | 108 | """ |
---|
[e43fc91] | 109 | POLYDISPERSE_FUNCTIONS = ['rectangle', 'array', 'lognormal', 'gaussian', 'schulz'] |
---|
[06b0138] | 110 | |
---|
[aca8418] | 111 | combo_updated = QtCore.pyqtSignal(str, int) |
---|
[e43fc91] | 112 | filename_updated = QtCore.pyqtSignal(int) |
---|
[06b0138] | 113 | |
---|
[8eaa101] | 114 | def __init__(self, parent=None): |
---|
| 115 | """ |
---|
| 116 | Overwrite generic constructor to allow for some globals |
---|
| 117 | """ |
---|
| 118 | super(QtGui.QStyledItemDelegate, self).__init__() |
---|
| 119 | |
---|
| 120 | self.poly_parameter = 0 |
---|
| 121 | self.poly_pd = 1 |
---|
| 122 | self.poly_min = 2 |
---|
| 123 | self.poly_max = 3 |
---|
| 124 | self.poly_npts = 4 |
---|
| 125 | self.poly_nsigs = 5 |
---|
| 126 | self.poly_function = 6 |
---|
[e43fc91] | 127 | self.poly_filename = 7 |
---|
[8eaa101] | 128 | |
---|
| 129 | def editableParameters(self): |
---|
| 130 | return [self.poly_min, self.poly_max, self.poly_npts, self.poly_nsigs] |
---|
| 131 | |
---|
| 132 | def columnDict(self): |
---|
| 133 | return {self.poly_pd: 'width', |
---|
| 134 | self.poly_min: 'min', |
---|
| 135 | self.poly_max: 'max', |
---|
| 136 | self.poly_npts: 'npts', |
---|
| 137 | self.poly_nsigs: 'nsigmas'} |
---|
| 138 | |
---|
| 139 | def addErrorColumn(self): |
---|
| 140 | """ |
---|
| 141 | Modify local column pointers |
---|
| 142 | Note: the reverse is never required! |
---|
| 143 | """ |
---|
| 144 | self.poly_parameter = 0 |
---|
| 145 | self.poly_pd = 1 |
---|
| 146 | self.poly_min = 3 |
---|
| 147 | self.poly_max = 4 |
---|
| 148 | self.poly_npts = 5 |
---|
| 149 | self.poly_nsigs = 6 |
---|
| 150 | self.poly_function = 7 |
---|
[e43fc91] | 151 | self.poly_filename = 8 |
---|
[8eaa101] | 152 | |
---|
[00b3b40] | 153 | def createEditor(self, widget, option, index): |
---|
| 154 | # Remember the current choice |
---|
[aca8418] | 155 | if not index.isValid(): |
---|
| 156 | return 0 |
---|
[e43fc91] | 157 | elif index.column() == self.poly_filename: |
---|
| 158 | # Notify the widget that we want to change the filename |
---|
| 159 | self.filename_updated.emit(index.row()) |
---|
| 160 | return None |
---|
[8eaa101] | 161 | elif index.column() in self.editableParameters(): |
---|
[e43fc91] | 162 | self.editor = QtGui.QLineEdit(widget) |
---|
[aca8418] | 163 | validator = QtGui.QDoubleValidator() |
---|
[e43fc91] | 164 | self.editor.setValidator(validator) |
---|
| 165 | return self.editor |
---|
[6011788] | 166 | else: |
---|
[00b3b40] | 167 | QtGui.QStyledItemDelegate.createEditor(self, widget, option, index) |
---|
[aca8418] | 168 | |
---|
| 169 | def paint(self, painter, option, index): |
---|
| 170 | """ |
---|
| 171 | Overwrite generic painter for certain columns |
---|
| 172 | """ |
---|
[8eaa101] | 173 | if index.column() in (self.poly_min, self.poly_max): |
---|
[aca8418] | 174 | # Units - present in nice HTML |
---|
| 175 | options = QtGui.QStyleOptionViewItemV4(option) |
---|
| 176 | self.initStyleOption(options,index) |
---|
| 177 | |
---|
| 178 | style = QtGui.QApplication.style() if options.widget is None else options.widget.style() |
---|
[b00414d] | 179 | |
---|
| 180 | # Prepare document for inserting into cell |
---|
| 181 | doc = QtGui.QTextDocument() |
---|
| 182 | |
---|
| 183 | # Convert the unit description into HTML |
---|
| 184 | text_html = GuiUtils.convertUnitToHTML(str(options.text)) |
---|
| 185 | doc.setHtml(text_html) |
---|
| 186 | |
---|
| 187 | # delete the original content |
---|
| 188 | options.text = "" |
---|
| 189 | style.drawControl(QtGui.QStyle.CE_ItemViewItem, options, painter, options.widget); |
---|
| 190 | |
---|
| 191 | context = QtGui.QAbstractTextDocumentLayout.PaintContext() |
---|
| 192 | textRect = style.subElementRect(QtGui.QStyle.SE_ItemViewItemText, options) |
---|
| 193 | |
---|
| 194 | painter.save() |
---|
| 195 | painter.translate(textRect.topLeft()) |
---|
| 196 | painter.setClipRect(textRect.translated(-textRect.topLeft())) |
---|
| 197 | # Draw the QTextDocument in the cell |
---|
| 198 | doc.documentLayout().draw(painter, context) |
---|
| 199 | painter.restore() |
---|
| 200 | else: |
---|
| 201 | # Just the default paint |
---|
| 202 | QtGui.QStyledItemDelegate.paint(self, painter, option, index) |
---|
| 203 | |
---|
| 204 | class MagnetismViewDelegate(QtGui.QStyledItemDelegate): |
---|
| 205 | """ |
---|
| 206 | Custom delegate for appearance and behavior control of the magnetism view |
---|
| 207 | """ |
---|
| 208 | def __init__(self, parent=None): |
---|
| 209 | """ |
---|
| 210 | Overwrite generic constructor to allow for some globals |
---|
| 211 | """ |
---|
| 212 | super(QtGui.QStyledItemDelegate, self).__init__() |
---|
| 213 | |
---|
| 214 | self.mag_parameter = 0 |
---|
| 215 | self.mag_value = 1 |
---|
| 216 | self.mag_min = 2 |
---|
| 217 | self.mag_max = 3 |
---|
| 218 | self.mag_unit = 4 |
---|
| 219 | |
---|
| 220 | def editableParameters(self): |
---|
| 221 | return [self.mag_min, self.mag_max] |
---|
| 222 | |
---|
| 223 | def addErrorColumn(self): |
---|
| 224 | """ |
---|
| 225 | Modify local column pointers |
---|
| 226 | Note: the reverse is never required! |
---|
| 227 | """ |
---|
| 228 | self.mag_parameter = 0 |
---|
| 229 | self.mag_value = 1 |
---|
| 230 | self.mag_min = 3 |
---|
| 231 | self.mag_max = 4 |
---|
| 232 | self.mag_unit = 5 |
---|
| 233 | |
---|
| 234 | def createEditor(self, widget, option, index): |
---|
| 235 | # Remember the current choice |
---|
| 236 | current_text = index.data().toString() |
---|
| 237 | if not index.isValid(): |
---|
| 238 | return 0 |
---|
| 239 | if index.column() in self.editableParameters(): |
---|
| 240 | editor = QtGui.QLineEdit(widget) |
---|
| 241 | validator = QtGui.QDoubleValidator() |
---|
| 242 | editor.setValidator(validator) |
---|
| 243 | return editor |
---|
| 244 | else: |
---|
| 245 | QtGui.QStyledItemDelegate.createEditor(self, widget, option, index) |
---|
| 246 | |
---|
| 247 | def paint(self, painter, option, index): |
---|
| 248 | """ |
---|
| 249 | Overwrite generic painter for certain columns |
---|
| 250 | """ |
---|
[0d13814] | 251 | if index.column() in (self.mag_min, self.mag_max, self.mag_unit): |
---|
[b00414d] | 252 | # Units - present in nice HTML |
---|
| 253 | options = QtGui.QStyleOptionViewItemV4(option) |
---|
| 254 | self.initStyleOption(options,index) |
---|
| 255 | |
---|
| 256 | style = QtGui.QApplication.style() if options.widget is None else options.widget.style() |
---|
[aca8418] | 257 | |
---|
| 258 | # Prepare document for inserting into cell |
---|
| 259 | doc = QtGui.QTextDocument() |
---|
| 260 | |
---|
| 261 | # Convert the unit description into HTML |
---|
| 262 | text_html = GuiUtils.convertUnitToHTML(str(options.text)) |
---|
| 263 | doc.setHtml(text_html) |
---|
| 264 | |
---|
| 265 | # delete the original content |
---|
| 266 | options.text = "" |
---|
| 267 | style.drawControl(QtGui.QStyle.CE_ItemViewItem, options, painter, options.widget); |
---|
| 268 | |
---|
| 269 | context = QtGui.QAbstractTextDocumentLayout.PaintContext() |
---|
| 270 | textRect = style.subElementRect(QtGui.QStyle.SE_ItemViewItemText, options) |
---|
| 271 | |
---|
| 272 | painter.save() |
---|
| 273 | painter.translate(textRect.topLeft()) |
---|
| 274 | painter.setClipRect(textRect.translated(-textRect.topLeft())) |
---|
| 275 | # Draw the QTextDocument in the cell |
---|
| 276 | doc.documentLayout().draw(painter, context) |
---|
| 277 | painter.restore() |
---|
| 278 | else: |
---|
| 279 | # Just the default paint |
---|
| 280 | QtGui.QStyledItemDelegate.paint(self, painter, option, index) |
---|