summaryrefslogtreecommitdiffstats
path: root/krita/ui/kis_custom_image_widget.cc
diff options
context:
space:
mode:
Diffstat (limited to 'krita/ui/kis_custom_image_widget.cc')
-rw-r--r--krita/ui/kis_custom_image_widget.cc110
1 files changed, 0 insertions, 110 deletions
diff --git a/krita/ui/kis_custom_image_widget.cc b/krita/ui/kis_custom_image_widget.cc
deleted file mode 100644
index 0b77da9f..00000000
--- a/krita/ui/kis_custom_image_widget.cc
+++ /dev/null
@@ -1,110 +0,0 @@
-/* This file is part of the KOffice project
- * Copyright (C) 2005 Thomas Zander <[email protected]>
- * Copyright (C) 2005 Casper Boemann <[email protected]>
- *
- * 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; version 2.
-
- * 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 <kis_custom_image_widget.h>
-#include <kis_doc.h>
-#include <kis_meta_registry.h>
-#include "kis_colorspace_factory_registry.h"
-#include "kis_profile.h"
-#include "kis_colorspace.h"
-#include "kis_id.h"
-#include "kis_cmb_idlist.h"
-#include "squeezedcombobox.h"
-#include "kis_color.h"
-#include "kis_image.h"
-#include "kis_layer.h"
-
-#include <kcolorcombo.h>
-
-#include <kdebug.h>
-#include <tqpushbutton.h>
-#include <tqslider.h>
-#include <tqtextedit.h>
-#include <KoUnitWidgets.h>
-#include <tqlabel.h>
-
-KisCustomImageWidget::KisCustomImageWidget(TQWidget *tqparent, KisDoc *doc, TQ_INT32 defWidth, TQ_INT32 defHeight, double resolution, TQString defColorSpaceName, TQString imageName)
- : WdgNewImage(tqparent) {
- m_doc = doc;
-
- txtName->setText(imageName);
-
- intWidth->setValue(defWidth);
- intHeight->setValue(defHeight);
- doubleResolution->setValue(resolution);
-
- cmbColorSpaces->setIDList(KisMetaRegistry::instance()->csRegistry()->listKeys());
- cmbColorSpaces->setCurrentText(defColorSpaceName);
-
- connect(cmbColorSpaces, TQT_SIGNAL(activated(const KisID &)),
- this, TQT_SLOT(fillCmbProfiles(const KisID &)));
- connect (m_createButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT (buttonClicked()) );
- m_createButton -> setDefault(true);
-
- fillCmbProfiles(cmbColorSpaces->currentItem());
- lblResolution->hide();
- doubleResolution->hide();
-}
-
-void KisCustomImageWidget::buttonClicked() {
- KisColorSpace * cs = KisMetaRegistry::instance()->csRegistry()->getColorSpace(cmbColorSpaces->currentItem(), cmbProfile->currentText());
-
- TQColor qc(cmbColor->color());
-
- m_doc->newImage(txtName->text(), (TQ_INT32)intWidth->value(), (TQ_INT32)intHeight->value(), cs, KisColor(qc, cs), txtDescription->text(), doubleResolution->value());
- KisImageSP img = m_doc->currentImage();
- if (img) {
- KisLayerSP layer = img->activeLayer();
- if (layer) {
- layer->setOpacity(backgroundOpacity());
- }
- }
- emit documentSelected();
-}
-
-TQ_UINT8 KisCustomImageWidget::backgroundOpacity() const
-{
- TQ_INT32 opacity = sliderOpacity->value();
-
- if (!opacity)
- return 0;
-
- return (opacity * 255) / 100;
-}
-
-void KisCustomImageWidget::fillCmbProfiles(const KisID & s)
-{
- 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 ) {
- cmbProfile->insertItem((*it)->productName());
- }
- cmbProfile->setCurrentText(csf->defaultProfile());
-}
-
-#include "kis_custom_image_widget.moc"