本文整理汇总了C++中QTextBrowser::setTabChangesFocus方法的典型用法代码示例。如果您正苦于以下问题:C++ QTextBrowser::setTabChangesFocus方法的具体用法?C++ QTextBrowser::setTabChangesFocus怎么用?C++ QTextBrowser::setTabChangesFocus使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QTextBrowser
的用法示例。
在下文中一共展示了QTextBrowser::setTabChangesFocus方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: QDialog
AboutDialog::AboutDialog(QWidget *parent)
: QDialog(parent)
{
setWindowTitle(tr("Bluecherry Client - About"));
setFixedSize(500, 400);
setModal(true);
QGridLayout *layout = new QGridLayout(this);
QLabel *logo = new QLabel;
logo->setPixmap(QPixmap(QLatin1String(":/images/logo.png"))
.scaled(130, 130, Qt::KeepAspectRatio, Qt::SmoothTransformation));
logo->setAlignment(Qt::AlignLeft | Qt::AlignVCenter);
layout->addWidget(logo, 0, 0);
QLabel *text = new QLabel;
text->setText(tr("Bluecherry DVR Client<br>Version %1").arg(QApplication::applicationVersion()));
text->setAlignment(Qt::AlignHCenter | Qt::AlignTop);
QFont font = text->font();
font.setPixelSize(15);
text->setFont(font);
layout->addWidget(text, 0, 1);
layout->setColumnStretch(1, 1);
QTextBrowser *license = new QTextBrowser;
license->setHtml(getLicenseText());
license->setStyleSheet(QLatin1String("font-size: 12px"));
license->setReadOnly(true);
license->setOpenExternalLinks(true);
license->setTabChangesFocus(true);
layout->addWidget(license, 1, 0, 1, 2);
font = QFont();
font.setStyleHint(QFont::SansSerif);
font.setPixelSize(13);
license->setFont(font);
}