select 通过setEditText(QString)方法添加到QcomboBox的QString

select QString which is added to QcomboBox by setEditText(QString) method

如何 select 我通过 comboBox->setEditText(someString) 添加到我的 QComboBox 的文本。我希望我的文本在组合框中按 "selecting all the text" 显示。

#include <QLineEdit> .... ui->comboBox->lineEdit()->selectAll();

如果我理解问题。