Re-organize and simplify now.

This commit is contained in:
Richard Kimberly Heck 2018-10-15 22:52:53 -04:00
parent ae65fb2c98
commit 35fac4ab51

View File

@ -237,19 +237,22 @@ void LayoutItemDelegate::drawDisplay(QPainter * painter, QStyleOptionViewItem co
QSize LayoutItemDelegate::sizeHint(QStyleOptionViewItem const & opt, QSize LayoutItemDelegate::sizeHint(QStyleOptionViewItem const & opt,
QModelIndex const & index) const QModelIndex const & index) const
{ {
QSortFilterProxyModel const * model =
static_cast<QSortFilterProxyModel const *>(index.model());
QSize size = QItemDelegate::sizeHint(opt, index); QSize size = QItemDelegate::sizeHint(opt, index);
if (!lyxrc.group_layouts)
return size;
// Add space for the category headers here? // Add space for the category headers.
// Not for the standard layout though. QSortFilterProxyModel const * const model =
QString stdCat = category(*model->sourceModel(), 0); static_cast<QSortFilterProxyModel const *>(index.model());
QString cat = category(*index.model(), index.row()); QString const stdCat = category(*model->sourceModel(), 0);
if (lyxrc.group_layouts && stdCat != cat QString const cat = category(*index.model(), index.row());
&& (index.row() == 0 || cat != category(*index.model(), index.row() - 1))) {
// There is no header for the stuff at the top.
if (stdCat == cat)
return size;
if (index.row() == 0 || cat != category(*index.model(), index.row() - 1))
size.setHeight(size.height() + headerHeight(opt)); size.setHeight(size.height() + headerHeight(opt));
}
return size; return size;
} }