forked from teamnwah/openmw-tes3coop
28 lines
792 B
C++
28 lines
792 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() == NULL)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|
||
|
if (row < 0 || row >= model()->rowCount())
|
||
|
{
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
ensurePolished();
|
||
|
QModelIndex index = model()->index(row, modelColumn());
|
||
|
QStyleOptionViewItem option = viewOptions();
|
||
|
QAbstractItemDelegate *delegate = itemDelegate(index);
|
||
|
return delegate->sizeHint(option, index).height();
|
||
|
}
|