Qt Find Dialog with Case-Sensitive, Backward Search, Whole Word, and Regex Options
#include
#include "finddialog.h"
FindDialog::FindDialog(QWidget *parent) : QDialog(parent) { label = new QLabel(tr('Find &what:')); lineEdit = new QLineEdit; label->setBuddy(lineEdit);
caseCheckBox = new QCheckBox(tr('Match &case'));
backwardCheckBox = new QCheckBox(tr('Search &backward'));
wholeWordCheckBox = new QCheckBox(tr('Match &whole word'));
regexCheckBox = new QCheckBox(tr('Use regular &expression'));
findButton = new QPushButton(tr('&Find'));
findButton->setDefault(true);
findButton->setEnabled(false);
closeButton = new QPushButton(tr('Close'));
connect(lineEdit, SIGNAL(textChanged(const QString &)),
this, SLOT(enableFindButton(const QString &)));
connect(findButton, SIGNAL(clicked()),
this, SLOT(findClicked()));
connect(closeButton, SIGNAL(clicked()),
this, SLOT(close()));
QHBoxLayout *topLeftLayout = new QHBoxLayout;
topLeftLayout->addWidget(label);
topLeftLayout->addWidget(lineEdit);
QVBoxLayout *leftLayout = new QVBoxLayout;
leftLayout->addLayout(topLeftLayout);
leftLayout->addWidget(caseCheckBox);
leftLayout->addWidget(backwardCheckBox);
leftLayout->addWidget(wholeWordCheckBox);
leftLayout->addWidget(regexCheckBox);
QVBoxLayout *rightLayout = new QVBoxLayout;
rightLayout->addWidget(findButton);
rightLayout->addWidget(closeButton);
rightLayout->addStretch();
QHBoxLayout *mainLayout = new QHBoxLayout;
mainLayout->addLayout(leftLayout);
mainLayout->addLayout(rightLayout);
setLayout(mainLayout);
setWindowTitle(tr('Find'));
setFixedHeight(sizeHint().height());
}
void FindDialog::findClicked() { // To be implemented }
void FindDialog::enableFindButton(const QString &text) { findButton->setEnabled(!text.isEmpty()); }
原文地址: https://www.cveoy.top/t/topic/gyoQ 著作权归作者所有。请勿转载和采集!