本文整理汇总了C++中QRadioButton::setWhatsThis方法的典型用法代码示例。如果您正苦于以下问题:C++ QRadioButton::setWhatsThis方法的具体用法?C++ QRadioButton::setWhatsThis怎么用?C++ QRadioButton::setWhatsThis使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QRadioButton
的用法示例。
在下文中一共展示了QRadioButton::setWhatsThis方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: QWidget
WQPrintDialogPage::WQPrintDialogPage(QWidget *parent) : QWidget(parent)
{
setWindowTitle(i18n("Vocabulary Options"));
QGridLayout * l = new QGridLayout(this);
l->setSpacing(KDialog::spacingHint());
l->setMargin(KDialog::marginHint());
QSpacerItem * s = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
l->addItem(s, 1, 0, 1, 1);
g = new QGroupBox(i18n("Select Type of Printout"), this );
QVBoxLayout * vboxLayout = new QVBoxLayout(g);
vboxLayout->setSpacing(KDialog::spacingHint());
vboxLayout->setMargin(KDialog::marginHint());
bg = new QButtonGroup(this);
QRadioButton *rb = new QRadioButton(i18n("Vocabulary &list"),g);
rb->setWhatsThis(i18n("Select to print the vocabulary as displayed in the editor"));
vboxLayout->addWidget(rb);
bg->addButton(rb, Prefs::EnumPrintStyle::List);
rb = new QRadioButton(i18n("Vocabulary e&xam"),g);
rb->setWhatsThis(i18n("Select to print the vocabulary as a vocabulary exam"));
vboxLayout->addWidget(rb);
bg->addButton(rb, Prefs::EnumPrintStyle::Exam);
rb = new QRadioButton(i18n("&Flashcards"),g);
rb->setWhatsThis(i18n("Select to print flashcards"));
vboxLayout->addWidget(rb);
bg->addButton(rb, Prefs::EnumPrintStyle::Flashcard);
l->addWidget(g, 0, 0, 1, 1);
}
示例2: addRadio
void KPrefsWidRadios::addRadio( const QString &text, const QString &toolTip,
const QString &whatsThis )
{
QRadioButton *r = new QRadioButton( text, mBox );
if ( !toolTip.isEmpty() ) {
r->setToolTip( toolTip );
}
if ( !whatsThis.isEmpty() ) {
r->setWhatsThis( whatsThis );
}
}