FindDialog::FindDialog(MainWindow *parent) : QDialog(parent) { contentsWidget = new QWidget(this); ui.setupUi(contentsWidget); ui.comboFind->setModel(new CaseSensitiveModel(0, 1, ui.comboFind)); QVBoxLayout *l = new QVBoxLayout(this); l->setMargin(0); l->setSpacing(0); l->addWidget(contentsWidget); lastBrowser = 0; onceFound = false; findExpr.clear(); sb = new QStatusBar(this); l->addWidget(sb); // Move it to another line and change the text, // then lupdate should add this one as a new one, and mark the old one as obsolete. sb->showMessage(tr("Enter the text you want to find.")); connect(ui.findButton, SIGNAL(clicked()), this, SLOT(findButtonClicked())); connect(ui.closeButton, SIGNAL(clicked()), this, SLOT(reject())); }
FindDialog::FindDialog(MainWindow *parent) : QDialog(parent) { contentsWidget = new QWidget(this); ui.setupUi(contentsWidget); ui.comboFind->setModel(new CaseSensitiveModel(0, 1, ui.comboFind)); QVBoxLayout *l = new QVBoxLayout(this); l->setMargin(0); l->setSpacing(0); l->addWidget(contentsWidget); lastBrowser = 0; onceFound = false; findExpr.clear(); sb = new QStatusBar(this); l->addWidget(sb); sb->showMessage(tr("Enter the text you want to find.")); connect(ui.findButton, SIGNAL(clicked()), this, SLOT(findButtonClicked())); connect(ui.closeButton, SIGNAL(clicked()), this, SLOT(reject())); }