使用我的QT5自定义小部件

时间:2016-02-20 19:54:33

标签: size qt5 qgroupbox

我正在尝试制作一个自定义小部件:用于显示具有名称,值的处理器寄存器,并且可以以八进制/十进制六进制显示。代码显示在底部。当我使用所示代码时(即插入QRadioButtons),我收到了更好的结果:

enter image description here

如果我使用

mainLayout->addWidget(DisplayMode);

相反(我猜这是正确的方法)然后生成的图片是

enter image description here

我误解了什么吗?有什么问题?

RegisterWidget::RegisterWidget(QWidget *parent)
:QFrame (parent)
{
  mValue = 0;
  mName = "";
  setFrameStyle(QFrame::Panel | QFrame::Sunken);    
  QHBoxLayout *mainLayout = new QHBoxLayout(this);
  label = new QLabel(tr("mName"),this);
  label->setText(mName);
  label->setLineWidth(2);   
  QGroupBox *DisplayMode = new QGroupBox("");
  QRadioButton *OctalR = new QRadioButton(this);
  QRadioButton *DecimalR = new QRadioButton(this);
  DecimalR->setChecked(true);    DecimalR->setDown(true);
  QRadioButton *HexaR = new QRadioButton(this);
  QHBoxLayout *hbox = new QHBoxLayout;
  hbox->addWidget(OctalR);
  hbox->addWidget(DecimalR);
  hbox->addWidget(HexaR);
  hbox->addStretch(1);
  DisplayMode->setLayout(hbox);
  mainLayout->addWidget(label);
  Value = new QLCDNumber(this);
  Value->setDigitCount(8);
  Value->setSegmentStyle(QLCDNumber::Flat);
  Value->display(mValue);
  mainLayout->addWidget(Value);
 /* mainLayout->addWidget(DisplayMode);*/ 
  mainLayout->addWidget(OctalR);
  mainLayout->addWidget(DecimalR);
  mainLayout->addWidget(HexaR);
  setLineWidth(3);
  setLayout(mainLayout); 
    connect(OctalR, SIGNAL(clicked()), this, SLOT(setOctal()));
    connect(DecimalR, SIGNAL(clicked()), this, SLOT(setDecimal()));
    connect(HexaR, SIGNAL(clicked()), this, SLOT(setHexa()));
}

1 个答案:

答案 0 :(得分:1)

QLayout::setContentsMargins()mainLayout致电hbox。尝试(3, 3, 3, 3)作为起点和调整的参数。根据文档,布局在大多数平台上的默认边距为11像素。