43 QWidget *page =
new QWidget;
45 QCheckBox *axisX =
new QCheckBox(i18n(
"Axis X"), page);
46 QCheckBox *axisY =
new QCheckBox(i18n(
"Axis Y"), page);
47 QLabel* scatterLbl =
new QLabel(i18n(
"Scatter amount"), page);
49 QHBoxLayout *hl =
new QHBoxLayout;
50 hl->addWidget(scatterLbl);
54 QVBoxLayout *pageLayout =
new QVBoxLayout(page);
55 pageLayout->setContentsMargins(0, 0, 0, 0);
56 pageLayout->addLayout(hl);
61 connectControl(axisX, &
m_d->model,
"axisX");
62 connectControl(axisY, &
m_d->model,
"axisY");