示例#1
0
 def createEditor(self, parent, option, index):
     m = index.model()
     col = m.column_map[index.column()]
     if m.custom_columns[col]['datatype'] == 'int':
         editor = QSpinBox(parent)
         editor.setRange(-1000000, 100000000)
         editor.setSpecialValueText(_('Undefined'))
         editor.setSingleStep(1)
     else:
         editor = QDoubleSpinBox(parent)
         editor.setSpecialValueText(_('Undefined'))
         editor.setRange(-1000000., 100000000)
         editor.setDecimals(2)
     return editor
示例#2
0
 def createEditor(self, parent, option, index):
     m = index.model()
     col = m.column_map[index.column()]
     if m.custom_columns[col]['datatype'] == 'int':
         editor = QSpinBox(parent)
         editor.setRange(-1000000, 100000000)
         editor.setSpecialValueText(_('Undefined'))
         editor.setSingleStep(1)
     else:
         editor = QDoubleSpinBox(parent)
         editor.setSpecialValueText(_('Undefined'))
         editor.setRange(-1000000., 100000000)
         editor.setDecimals(2)
     return editor