| 410 | } |
| 411 | |
| 412 | void ListViewDelegate::setEditorData(QWidget* editor, const QModelIndex& index) const |
| 413 | { |
| 414 | auto text = index.data(Qt::EditRole).toString(); |
| 415 | QTextEdit * realeditor = qobject_cast<NoReturnTextEdit *>(editor); |
| 416 | realeditor->setAlignment(Qt::AlignHCenter | Qt::AlignTop); |
| 417 | realeditor->append(text); |
| 418 | realeditor->selectAll(); |
| 419 | realeditor->document()->clearUndoRedoStacks(); |
| 420 | } |
| 421 | |
| 422 | void ListViewDelegate::setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const |
| 423 | { |