diff --git a/plugins/paintops/libpaintop/kis_pressure_scatter_option_widget.cpp b/plugins/paintops/libpaintop/kis_pressure_scatter_option_widget.cpp index 044c1bc2ad..3bcf114bfa 100644 --- a/plugins/paintops/libpaintop/kis_pressure_scatter_option_widget.cpp +++ b/plugins/paintops/libpaintop/kis_pressure_scatter_option_widget.cpp @@ -1,84 +1,82 @@ /* * Copyright (c) 2010 Lukáš Tvrdý * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include "kis_pressure_scatter_option.h" #include "kis_pressure_scatter_option_widget.h" KisPressureScatterOptionWidget::KisPressureScatterOptionWidget() : KisCurveOptionWidget(new KisPressureScatterOption(), i18n("0.0"), i18n("1.0")) { - setObjectName("setObjectName("");"); - QWidget* w = new QWidget; m_axisX = new QCheckBox(i18n("Axis X")); m_axisX->setChecked(true); m_axisY = new QCheckBox(i18n("Axis Y")); m_axisY->setChecked(true); QLabel* scatterLbl = new QLabel(i18n("Scatter amount")); QHBoxLayout* hl = new QHBoxLayout; hl->addWidget(scatterLbl); hl->addWidget(m_axisX); hl->addWidget(m_axisY); QVBoxLayout* vl = new QVBoxLayout; vl->setMargin(0); vl->addLayout(hl); vl->addWidget(curveWidget()); w->setLayout(vl); connect(m_axisX, SIGNAL(toggled(bool)), SLOT(xAxisEnabled(bool))); connect(m_axisY, SIGNAL(toggled(bool)), SLOT(yAxisEnabled(bool))); setConfigurationPage(w); xAxisEnabled(m_axisX->isChecked()); yAxisEnabled(m_axisY->isChecked()); } void KisPressureScatterOptionWidget::readOptionSetting(const KisPropertiesConfigurationSP setting) { KisCurveOptionWidget::readOptionSetting(setting); m_axisX->setChecked(static_cast(curveOption())->isAxisXEnabled()); m_axisY->setChecked(static_cast(curveOption())->isAxisYEnabled()); } void KisPressureScatterOptionWidget::xAxisEnabled(bool enable) { static_cast(curveOption())->enableAxisX(enable); emitSettingChanged(); } void KisPressureScatterOptionWidget::yAxisEnabled(bool enable) { static_cast(curveOption())->enableAxisY(enable); emitSettingChanged(); }