QGroupBox sourceUrlGroup = new QGroupBox(tr("Source URL"));
QHBoxLayout sourceUrlLayout = new QHBoxLayout();
sourceUrlShow = new QRadioButton(tr("Show"));
sourceUrlHide = new QRadioButton(tr("Hide"));
sourceUrlLayout.addWidget(sourceUrlShow);
sourceUrlLayout.addWidget(sourceUrlHide);
sourceUrlLayout.setStretch(1, 100);
sourceUrlGroup.setLayout(sourceUrlLayout);
// Author Column
QGroupBox authorGroup = new QGroupBox(tr("Author"));