Russian Qt Forum

Qt => Model-View (MV) => Тема начата: unkeep от Октябрь 23, 2013, 18:07



Название: ошибка в примере qt? (StarDelegate)
Отправлено: unkeep от Октябрь 23, 2013, 18:07
вот тут:
Код
C++ (Qt)
QWidget *StarDelegate::createEditor(QWidget *parent,
                                    const QStyleOptionViewItem &option,
                                    const QModelIndex &index) const
 
{
    if (index.data().canConvert<StarRating>()) {
        StarEditor *editor = new StarEditor(parent);
        connect(editor, SIGNAL(editingFinished()),
                this, SLOT(commitAndCloseEditor()));
        return editor;
    } else {
        return QStyledItemDelegate::createEditor(parent, option, index);
    }
}


если закомментить
Код
C++ (Qt)
connect(editor, SIGNAL(editingFinished()),
                this, SLOT(commitAndCloseEditor()));
то всё равно после завершения редактирования модель сабмитится и editor удаляется. почему так?


Название: Re: ошибка в примере qt? (StarDelegate)
Отправлено: unkeep от Октябрь 28, 2013, 14:21
как сделать так, чтобы editor не закрывался, если setData возвращает false??