mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
34 lines
919 B
C++
34 lines
919 B
C++
#include "completerpopup.hpp"
|
|
|
|
CSVWidget::CompleterPopup::CompleterPopup(QWidget* parent)
|
|
: QListView(parent)
|
|
{
|
|
setEditTriggers(QAbstractItemView::NoEditTriggers);
|
|
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
setSelectionBehavior(QAbstractItemView::SelectRows);
|
|
setSelectionMode(QAbstractItemView::SingleSelection);
|
|
}
|
|
|
|
int CSVWidget::CompleterPopup::sizeHintForRow(int row) const
|
|
{
|
|
if (model() == nullptr)
|
|
{
|
|
return -1;
|
|
}
|
|
if (row < 0 || row >= model()->rowCount())
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
ensurePolished();
|
|
QModelIndex index = model()->index(row, modelColumn());
|
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
QStyleOptionViewItem option;
|
|
initViewItemOption(&option);
|
|
#else
|
|
QStyleOptionViewItem option = viewOptions();
|
|
#endif
|
|
QAbstractItemDelegate* delegate = itemDelegate(index);
|
|
return delegate->sizeHint(option, index).height();
|
|
}
|