Home | History | Annotate | Download | only in QtTestBrowser

Lines Matching defs:combo

873     QComboBox* combo = new QComboBox(dialog);
874 combo->setSizeAdjustPolicy(QComboBox::AdjustToMinimumContentsLength);
875 combo->setEditable(true);
876 combo->insertItems(0, items);
877 layout->addWidget(combo);
879 int index = combo->findText(page()->userAgentForUrl(QUrl()));
880 combo->setCurrentIndex(index);
890 if (dialog->exec() && !combo->currentText().isEmpty()) {
891 page()->setUserAgent(combo->currentText());
892 if (!items.contains(combo->currentText()))
893 settings.setValue("CustomUserAgent", combo->currentText());