我正在用PyQt编写一个程序。我使用QTableView来显示数据
问题是当我触发单元格的编辑(例如按F2)时,默认情况下单元格中的文本全部被选中(突出显示)。这不方便,因为我想修改文本而不是全部重写。
所以我想知道是否有任何改变行为的功能?
谢谢
答案 0 :(得分:4)
不确定是否有更简单的方法,但您可以编写自己的项目委托,创建QLineEdit。使用模型的数据更新编辑器时,取消选择文本,并可能将光标移动到开头。代表就是这样的(我现在没有Qt安装,所以我无法测试,但这个想法应该有效):
QWidget * MyDelegate::createEditor(QWidget *parent,
const QStyleOptionViewItem & option,
const QModelIndex & index) const
{
// Just creates a plain line edit.
QLineEdit *editor = new QLineEdit(parent);
return editor;
}
void MyDelegate::setEditorData(QWidget *editor,
const QModelIndex &index) const
{
// Fetch current data from model.
QString value = index.model()->data(index, Qt::EditRole).toString();
// Set line edit text to current data.
QLineEdit * lineEdit = static_cast<QLineEdit*>(editor);
lineEdit->setText(value);
// Deselect text.
lineEdit->deselect();
// Move the cursor to the beginning.
lineEdit->setCursorPosition(0);
}
void MyDelegate::setModelData(QWidget *editor,
QAbstractItemModel *model,
const QModelIndex &index) const
{
// Set the model data with the text in line edit.
QLineEdit * lineEdit = static_cast<QLineEdit*>(editor);
QString value = lineEdit.text();
model->setData(index, value, Qt::EditRole);
}
如果您之前在Qt文档中没有使用过代理,那么有一个有用的example。
答案 1 :(得分:1)
您需要实现委托,以便覆盖用于对该字段进行编辑的窗口小部件,以使用自定义编辑器窗口小部件。
QTableView默认使用QTextEdit,您可以尝试对其进行子类化并改变它的行为。我最好的猜测是你需要在编辑器小部件上操作焦点策略,可能是focusInEvent [1],以便在它获得焦点时改变它的行为。