summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_dlg_apply_profile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/ui/kis_dlg_apply_profile.cpp')
-rw-r--r--chalk/ui/kis_dlg_apply_profile.cpp96
1 files changed, 96 insertions, 0 deletions
diff --git a/chalk/ui/kis_dlg_apply_profile.cpp b/chalk/ui/kis_dlg_apply_profile.cpp
new file mode 100644
index 000000000..fcdfbd099
--- /dev/null
+++ b/chalk/ui/kis_dlg_apply_profile.cpp
@@ -0,0 +1,96 @@
+/*
+ * Copyright (c) 2004 Boudewijn Rempt <boud@valdyas.org>
+ *
+ * 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 <tqcombobox.h>
+#include <tdelocale.h>
+#include <tqbuttongroup.h>
+
+#include "kis_factory.h"
+#include "kis_colorspace_factory_registry.h"
+#include "kis_types.h"
+#include "kis_profile.h"
+#include "kis_colorspace.h"
+#include "kis_dlg_apply_profile.h"
+#include "kis_config.h"
+#include "kis_id.h"
+#include <kis_meta_registry.h>
+#include "kis_cmb_idlist.h"
+#include "squeezedcombobox.h"
+#include "wdgapplyprofile.h"
+
+// XXX: Hardcode RGBA name. This should be a constant, somewhere.
+KisDlgApplyProfile::KisDlgApplyProfile(TQWidget *parent, const char *name)
+ : super(parent, name, true, "", Ok | Cancel)
+{
+
+ setCaption(i18n("Apply Image Profile to Clipboard Data"));
+ m_page = new WdgApplyProfile(this);
+
+ setMainWidget(m_page);
+ resize(m_page->sizeHint());
+
+ // XXX: This is BAD! (bsar)
+ fillCmbProfiles(KisID("RGBA", ""));
+ KisConfig cfg;
+ m_page->grpRenderIntent->setButton(cfg.renderIntent());
+
+}
+
+KisDlgApplyProfile::~KisDlgApplyProfile()
+{
+ delete m_page;
+}
+
+
+KisProfile * KisDlgApplyProfile::profile() const
+{
+ TQString profileName;
+
+ profileName = m_page->cmbProfile->currentText();
+
+ return KisMetaRegistry::instance()->csRegistry()->getProfileByName(profileName);
+}
+
+int KisDlgApplyProfile::renderIntent() const
+{
+ return m_page->grpRenderIntent->selectedId();
+}
+
+
+// XXX: Copy & paste from kis_custom_image_widget -- refactor to separate class
+void KisDlgApplyProfile::fillCmbProfiles(const KisID & s)
+{
+ m_page->cmbProfile->clear();
+
+ if (!KisMetaRegistry::instance()->csRegistry()->exists(s)) {
+ return;
+ }
+
+ KisColorSpaceFactory * csf = KisMetaRegistry::instance()->csRegistry()->get(s);
+ if (csf == 0) return;
+
+ TQValueVector<KisProfile *> profileList = KisMetaRegistry::instance()->csRegistry()->profilesFor( csf );
+ TQValueVector<KisProfile *> ::iterator it;
+ for ( it = profileList.begin(); it != profileList.end(); ++it ) {
+ m_page->cmbProfile->insertItem((*it)->productName());
+ }
+ m_page->cmbProfile->setCurrentText(csf->defaultProfile());
+}
+
+#include "kis_dlg_apply_profile.moc"
+