Lines Matching full:dialog
319 QDialog dialog(this);
320 dialog.setWindowTitle("Change User Agent");
321 dialog.resize(size().width() * 0.7, dialog.size().height());
322 QVBoxLayout* layout = new QVBoxLayout(&dialog);
323 dialog.setLayout(layout);
325 QComboBox* combo = new QComboBox(&dialog);
335 , Qt::Horizontal, &dialog);
336 connect(buttonBox, SIGNAL(accepted()), &dialog, SLOT(accept()));
337 connect(buttonBox, SIGNAL(rejected()), &dialog, SLOT(reject()));
340 if (dialog.exec() && !combo->currentText().isEmpty())