如何从QCombobox中获取所选的VALUE?


86

在Qt,我可以得到selected textQComboBox使用 combobox->currentText()方法。我如何获得selected value

我寻求帮助,但是找不到currentData()我希望找到的方法。我只能找到combobox->currentIndex()

除此以外,还有其他更聪明的方法combobox->itemData(combobox->currentIndex())吗?

更新:从Qt 5开始不再需要此currentData()方法。已添加一种方法http://doc.qt.io/qt-5/qcombobox.html#currentData-prop

Answers:


85

似乎需要combobox->itemData(combobox->currentIndex())获取QComboBox的当前数据。

如果您使用自己的派生自QComboBox的类,则可以添加一个currentData()函数。


2
谢谢。我只是在程序中使用了这个技巧。
Brian Stinar 2010年

1
@Patrice Bernassola但是类型'QVariant'的开关操作combobox->itemData(combobox->currentIndex())是非法的!为什么呢
野兽

如果未选择任何选项,则此方法无效currentIndex = -1。如果QComboBox为空,它将从最后一个索引返回数据或引发错误。
约翰逊

25

这可以得到当前索引的文本:

QString cb = cbChoice ->currentText();

1
这有什么帮助?currentTextOP已经意识到的是...
空加瓜

22

您可以为所有项目设置QVariant数据,然后在需要时获取值。

对于这种情况,有一个示例代码:

ui.comboBoxSheetSize->addItem("128 m", QVariant(128));
ui.comboBoxSheetSize->addItem("256 m", QVariant(256));
ui.comboBoxSheetSize->addItem("512 m", QVariant(512));
ui.comboBoxSheetSize->addItem("1024 m", QVariant(1024));

...

void Page::onComboSheetSizeChanged( int index )
{
 int value = ui.comboBoxSheetSize->itemData(index).toInt();
}

顺便说一句,我想我误解了你的问题。我认为您获取数据的方式足够聪明?




3

这是我在QT 4.7中的确定代码:

 //add combobox list 
    QString val;
   ui->startPage->clear();
    val = "http://www.work4blue.com";
    ui->startPage->addItem(tr("Navigation page"),QVariant::fromValue(val));
    val = "https://www.google.com";
    ui->startPage->addItem("www.google.com",QVariant::fromValue(val));
    val = "www.twitter.com";
    ui->startPage->addItem("www.twitter.com",QVariant::fromValue(val));
    val = "https://www.youtube.com";
    ui->startPage->addItem("www.youtube.com",QVariant::fromValue(val));

   // get current value
    qDebug() << "current value"<< 
       ui->startPage->itemData(ui->startPage->currentIndex()).toString();

1

我很惊讶没有激活信号并且遇到同样的问题。我通过制作QComboBox的子类来解决它。我认为最好避免直接访问该对象并调用其函数,因为这意味着更紧密的耦合并且违反了Qt的哲学。因此,这是我为我开设的课程。

class SmartComboBox : public QComboBox {

    Q_OBJECT

private slots:

    void triggerVariantActivated(int index);

public:

    SmartComboBox(QWidget *parent);

signals:

    void activated(const QVariant &);

};

并执行

void SmartComboBox::triggerVariantActivated(int index)
{
    activated(itemData(index));
}

SmartComboBox::SmartComboBox(QWidget *parent)
:QComboBox(parent)
{
    connect(this, SIGNAL(activated(int)), this, SLOT(triggerVariantActivated(int)));
}

0

我有问题,

QString str = m_UI->myComboBox->currentText();

解决了这个。



0

我做了这个

QDir path("/home/user/");
QStringList _dirs = path.entryList(QDir::Dirs);
std::cout << "_dirs_count = " << _dirs.count() << std::endl;
ui->cmbbox->addItem(Files);
ui->cmbbox->show();

您将看到,名为_dirs的QStringList的结构类似于数组,您可以通过索引访问其成员,该索引最多可以包含_dirs.count()返回的值。



-1

我知道我来晚了,但是对于那些仍然有此问题的人来说,可以轻松解决。我使用Qt 5.3,它工作正常。无需创建函数或全部。

int valueComboBox;
valueComboBox = comboBox->currentIndex();

而且有效!希望能帮助到你 !


指数与价值不一样
Vladp '16

-4

我确认最简单的方法是这样做:

uiAnalyseAssets::AnalyseAssets(QWidget *parent)
: QWidget(parent)
{
ui.comboBox->addItem("text1");
ui.comboBox->addItem("text2");

...
}

void mainFunction::yourFunction( int index )
{
 int value = ui.comboBox->currentText();
}

7
等一下-不QComboBox::currentText()返回QString吗?您如何达到明智的目标int?而您想对参数做int index什么?
克里斯蒂安·塞弗林
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.