21 : QDockWidget(i18n(
"Histogram"))
23 QWidget *page =
new QWidget(
this);
26 QHBoxLayout *buttonLayout =
new QHBoxLayout();
28 QToolButton *toggleLogarithm =
new QToolButton(
this);
29 buttonLayout->addWidget(toggleLogarithm);
30 buttonLayout->addItem(
new QSpacerItem(0, 0, QSizePolicy::Expanding));
32 toggleLogarithm->setToolTip(i18nc(
"@info:tooltip",
"Toggle logarithmic histogram."));
33 toggleLogarithm->setCheckable(
true);
44 connect(toggleLogarithm, SIGNAL(toggled(
bool)),
m_histogramWidget, SLOT(enableLogarithmic(
bool)));