QGroupBox underlineGroup = new QGroupBox(tr("Underline"));
QHBoxLayout underlineLayout = new QHBoxLayout();
showUnderline = new QRadioButton(tr("Show"));
hideUnderline = new QRadioButton(tr("Hide"));
underlineLayout.addWidget(showUnderline);
underlineLayout.addWidget(hideUnderline);
underlineLayout.setStretch(1, 100);
underlineGroup.setLayout(underlineLayout);
// Bold Button
QGroupBox boldGroup = new QGroupBox(tr("Bold"));