def sizeHint(self, *args): ans = QStyledItemDelegate.sizeHint(self, *args) return ans + QSize(0, 10)
def sizeHint(self, *args): ans = QStyledItemDelegate.sizeHint(self, *args) ans.setHeight(ans.height() + 4) return ans
def sizeHint(self, option, index): ans = QStyledItemDelegate.sizeHint(self, option, index) top_level = not index.parent().isValid() ans += QSize(0, 20 if top_level else 10) return ans
def sizeHint(self, option, index): ans = QStyledItemDelegate.sizeHint(self, option, index) ans.setHeight(ans.height() + 10) return ans
def sizeHint(self, option, index): option.font = self.rf option.textElideMode = self.em return QStyledItemDelegate.sizeHint(self, option, index)
def sizeHint(self, option, index): ans = QStyledItemDelegate.sizeHint(self, option, index) if not index.parent().isValid(): ans += QSize(0, 6) return ans
def sizeHint(self, *args): return QStyledItemDelegate.sizeHint(self, *args) + QSize(0, 15)