/* * dlg_colorspaceconversion.cpp - part of KimageShop^WKrayon^WChalk * * Copyright (c) 2004 Boudewijn Rempt * * 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 #include #include #include #include #include #include #include #include "kis_meta_registry.h" #include #include "kis_profile.h" #include "kis_colorspace.h" #include #include #include #include "wdgconvertcolorspace.h" #include "dlg_colorspaceconversion.h" DlgColorSpaceConversion::DlgColorSpaceConversion( TQWidget * parent, const char * name) : super (parent, name, true, i18n("Image Size"), Ok | Cancel, Ok) { m_page = new WdgConvertColorSpace(this, "colorspace_conversion"); TQ_CHECK_PTR(m_page); setMainWidget(m_page); resize(m_page->sizeHint()); m_page->cmbColorSpaces->setIDList(KisMetaRegistry::instance()->csRegistry()->listKeys()); fillCmbDestProfile(m_page->cmbColorSpaces->currentItem()); connect(m_page->cmbColorSpaces, TQT_SIGNAL(activated(const KisID &)), this, TQT_SLOT(fillCmbDestProfile(const KisID &))); connect(this, TQT_SIGNAL(okClicked()), this, TQT_SLOT(okClicked())); } DlgColorSpaceConversion::~DlgColorSpaceConversion() { delete m_page; } // SLOTS void DlgColorSpaceConversion::okClicked() { accept(); } void DlgColorSpaceConversion::fillCmbDestProfile(const KisID & s) { m_page->cmbDestProfile->clear(); TQValueVector profileList = KisMetaRegistry::instance()->csRegistry()->profilesFor(s); TQValueVector ::iterator it; for ( it = profileList.begin(); it != profileList.end(); ++it ) { m_page->cmbDestProfile->insertItem((*it)->productName()); } } #include "dlg_colorspaceconversion.moc"