/* * Copyright (c) 2005 Michael Thaler * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "kis_multi_bool_filter_widget.h" #include #include #include #include KisBoolWidgetParam::KisBoolWidgetParam( bool ninitvalue, TQString nlabel, TQString nname) : initvalue(ninitvalue), label(nlabel), name(nname) { } KisMultiBoolFilterWidget::KisMultiBoolFilterWidget(TQWidget * tqparent, const char * name, const char * caption, vKisBoolWidgetParam iwparam) : KisFilterConfigWidget( tqparent, name ) { TQ_INT32 m_nbboolWidgets = iwparam.size(); this->setCaption(caption); TQVBoxLayout *widgetLayout = new TQVBoxLayout(this, m_nbboolWidgets + 1); m_boolWidgets = new TQCheckBox*[ m_nbboolWidgets ]; for( TQ_INT32 i = 0; i < m_nbboolWidgets; ++i) { m_boolWidgets[i] = new TQCheckBox( this, iwparam[i].name.ascii()); m_boolWidgets[i]->setChecked( iwparam[i].initvalue ); m_boolWidgets[i]->setText( iwparam[i].label ); connect(m_boolWidgets[i], TQT_SIGNAL(toggled( bool ) ), TQT_SIGNAL(sigPleaseUpdatePreview())); widgetLayout->add( m_boolWidgets[i]); } // TQSpacerItem * sp = new TQSpacerItem(1, 1); widgetLayout->addStretch(); } void KisMultiBoolFilterWidget::setConfiguration(KisFilterConfiguration * config) { for (int i = 0; i < m_nbboolWidgets; ++i) { double val = config->getBool(m_boolWidgets[i]->name()); m_boolWidgets[i]->setChecked(val); } } #include "kis_multi_bool_filter_widget.moc"