r18530 by jghali - rename a few variable from German to English + some refactoring of cmykfw

scribus-commit scribus-commit at lists.scribus.net
Sun Oct 6 00:31:58 UTC 2013


Author: jghali
Date: Sun Oct  6 00:31:58 2013
New Revision: 18530

URL: http://scribus.net/websvn/listing.php?repname=Scribus&sc=1&rev=18530
Log:
rename a few variable from German to English + some refactoring of cmykfw

Modified:
    trunk/Scribus/scribus/ui/cmykfw.cpp
    trunk/Scribus/scribus/ui/cmykfw.h
    trunk/Scribus/scribus/ui/paintmanager.cpp

Modified: trunk/Scribus/scribus/ui/cmykfw.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=18530&path=/trunk/Scribus/scribus/ui/cmykfw.cpp
==============================================================================
--- trunk/Scribus/scribus/ui/cmykfw.cpp (original)
+++ trunk/Scribus/scribus/ui/cmykfw.cpp Sun Oct  6 00:31:58 2013
@@ -73,10 +73,10 @@
 	if ( ScColorEngine::isOutOfGamut(orig, m_doc) )
 		paintAlert(alertIcon, imageN, 2, 2, false);
 	Farbe = orig;
-	QPixmap image0 = SliderPix(180);
-	QPixmap image1 = SliderPix(300);
-	QPixmap image2 = SliderPix(60);
-	QPixmap image3 = SliderBlack();
+	QPixmap image0 = sliderPix(180);
+	QPixmap image1 = sliderPix(300);
+	QPixmap image2 = sliderPix(60);
+	QPixmap image3 = sliderBlack();
 	CMYKColor cmyk;
 	double ccd, cmd, cyd, ckd;
 	ScColorEngine::getCMYKValues(orig, m_doc, cmyk);
@@ -89,9 +89,9 @@
 	resize( 498, 306 );
 	setWindowTitle( tr( "Edit Color" ) );
 	setWindowIcon(QIcon(loadIcon("AppIcon.png")));
-	CMYKFarbenLayout = new QHBoxLayout( this );
-	CMYKFarbenLayout->setSpacing( 5 );
-	CMYKFarbenLayout->setMargin( 10 );
+	CMYKColorLayout = new QHBoxLayout( this );
+	CMYKColorLayout->setSpacing( 5 );
+	CMYKColorLayout->setMargin( 10 );
 	Layout23 = new QVBoxLayout;
 	Layout23->setSpacing( 5 );
 	Layout23->setMargin( 0 );
@@ -100,11 +100,11 @@
 	TextLabel1->setMinimumSize( QSize( 200, 22 ) );
 	Layout23->addWidget( TextLabel1 );
 
-	Farbname = new QLineEdit( this );
-	Farbname->setMinimumSize( QSize( 200, 22 ) );
-	Farbname->setText( name );
-	TextLabel1->setBuddy( Farbname );
-	Layout23->addWidget( Farbname );
+	ColorName = new QLineEdit( this );
+	ColorName->setMinimumSize( QSize( 200, 22 ) );
+	ColorName->setText( name );
+	TextLabel1->setBuddy( ColorName );
+	Layout23->addWidget( ColorName );
 
 	TextLabel3 = new QLabel( tr( "Color &Model" ), this );
 	TextLabel3->setMinimumSize( QSize( 100, 22 ) );
@@ -175,7 +175,7 @@
 	Cancel = new QPushButton( CommonStrings::tr_Cancel, this );
 	Layout21->addWidget( Cancel );
 	Layout23->addLayout( Layout21 );
-	CMYKFarbenLayout->addLayout( Layout23 );
+	CMYKColorLayout->addLayout( Layout23 );
 
 	Frame4 = new QFrame( this );
 	Frame4->setFrameShape( QFrame::NoFrame );
@@ -343,14 +343,14 @@
 	Frame4Layout->addLayout( Layout2x );
 	QSpacerItem* spacer2 = new QSpacerItem( 2, 2, QSizePolicy::Minimum, QSizePolicy::Expanding );
 	Frame4Layout->addItem( spacer2 );
-	CMYKFarbenLayout->addWidget( Frame4 );
+	CMYKColorLayout->addWidget( Frame4 );
 	int h, s, v;
 	ScColorEngine::getRGBColor(orig, m_doc).getHsv(&h, &s, &v);
 	ColorMap->drawPalette(v);
 	ColorMap->setMark(h, s);
 	Fnam = name;
-	Farbname->selectAll();
-	Farbname->setFocus();
+	ColorName->selectAll();
+	ColorName->setFocus();
 	TabStack->setCurrentIndex(0);
 	setFixedSize(minimumSizeHint());
 	setContextMenuPolicy(Qt::CustomContextMenu);
@@ -358,30 +358,30 @@
 //	Regist->setToolTip( "<qt>" + tr( "Choosing this will enable printing this on all plates. Registration colors are used for printer marks such as crop marks, registration marks and the like. These are not typically used in the layout itself." ) + "</qt>");
 	Separations->setToolTip( "<qt>" + tr( "Choosing this will make this color a spot color, thus creating another spot when creating plates or separations. This is used most often when a logo or other color needs exact representation or cannot be replicated with CMYK inks. Metallic and fluorescent inks are good examples which cannot be easily replicated with CMYK inks." ) + "</qt>");
 	connect( Cancel, SIGNAL( clicked() ), this, SLOT( reject() ) );
-	connect( Cancel_2, SIGNAL( clicked() ), this, SLOT( Verlassen() ) );
+	connect( Cancel_2, SIGNAL( clicked() ), this, SLOT( leave() ) );
 	connect( CyanSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
 	connect( MagentaSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
 	connect( YellowSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
 	connect( BlackSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
-	connect( CyanSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
-	connect( MagentaSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
-	connect( YellowSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
-	connect( BlackSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
+	connect( CyanSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
+	connect( MagentaSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
+	connect( YellowSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
+	connect( BlackSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
 	connect( CyanSL, SIGNAL( valueChanged(int) ), this, SLOT( setColor() ) );
 	connect( MagentaSL, SIGNAL( valueChanged(int) ), this, SLOT( setColor() ) );
 	connect( YellowSL, SIGNAL( valueChanged(int) ), this, SLOT( setColor() ) );
 	connect( BlackSL, SIGNAL( valueChanged(int) ), this, SLOT( setColor() ) );
 	connect( ColorMap, SIGNAL( ColorVal(int, int, bool)), this, SLOT( setColor2(int, int, bool)));
-	connect( ComboBox1, SIGNAL(activated(const QString&)), this, SLOT(SelModel(const QString&)));
-//	connect( Swatches, SIGNAL(activated(int)), this, SLOT(SelSwatch(int)));
-	connect(Swatches, SIGNAL(activated(const QString &)), this, SLOT(SelSwatch()));
-	connect(ColorSwatch, SIGNAL( itemClicked(QListWidgetItem*) ), this, SLOT( SelFromSwatch(QListWidgetItem*) ) );
+	connect( ComboBox1, SIGNAL(activated(const QString&)), this, SLOT(selModel(const QString&)));
+//	connect( Swatches, SIGNAL(activated(int)), this, SLOT(selSwatch(int)));
+	connect(Swatches, SIGNAL(activated(const QString &)), this, SLOT(selSwatch()));
+	connect(ColorSwatch, SIGNAL( itemClicked(QListWidgetItem*) ), this, SLOT( selFromSwatch(QListWidgetItem*) ) );
 	connect(Separations, SIGNAL(clicked()), this, SLOT(setSpot()));
 //	connect(Regist, SIGNAL(clicked()), this, SLOT(setRegist()));
 	connect(this, SIGNAL(customContextMenuRequested (const QPoint &)), this, SLOT(slotRightClick()));
 	layout()->activate();
 	if (!CMYKmode)
-		SelModel ( tr( "RGB" ));
+		selModel ( tr( "RGB" ));
 	isRegistration = Farbe.isRegistrationColor();
 	if (Farbe.isRegistrationColor())
 	{
@@ -411,12 +411,12 @@
 		dynAct = pmen->addAction( tr("Static Color Bars"));
 	else
 		dynAct = pmen->addAction( tr("Dynamic Color Bars"));
-	connect(dynAct, SIGNAL(triggered()), this, SLOT(ToggleSL()));
+	connect(dynAct, SIGNAL(triggered()), this, SLOT(toggleSL()));
 	pmen->exec(QCursor::pos());
 	delete pmen;
 }
 
-void CMYKChoose::SetValueS(int val)
+void CMYKChoose::setValueS(int val)
 {
 	disconnect( CyanSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
 	disconnect( MagentaSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
@@ -437,17 +437,17 @@
 	connect( BlackSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
 }
 
-void CMYKChoose::ToggleSL()
+void CMYKChoose::toggleSL()
 {
 	dynamic = !dynamic;
-	CyanP->setPixmap(SliderPix(CMYKmode ? 180 : 0));
-	MagentaP->setPixmap(SliderPix(CMYKmode? 300 : 120));
-	YellowP->setPixmap(SliderPix(CMYKmode? 60 : 240));
+	CyanP->setPixmap(sliderPix(CMYKmode ? 180 : 0));
+	MagentaP->setPixmap(sliderPix(CMYKmode? 300 : 120));
+	YellowP->setPixmap(sliderPix(CMYKmode? 60 : 240));
 	if (CMYKmode)
-		BlackP->setPixmap(SliderBlack());
-}
-
-QPixmap CMYKChoose::SliderPix(int farbe)
+		BlackP->setPixmap(sliderBlack());
+}
+
+QPixmap CMYKChoose::sliderPix(int farbe)
 {
 	RGBColor rgb;
 	CMYKColor cmyk;
@@ -539,7 +539,7 @@
 	return image0;
 }
 
-QPixmap CMYKChoose::SliderBlack()
+QPixmap CMYKChoose::sliderBlack()
 {
 	QPixmap image0 = QPixmap(255,10);
 	QPainter p;
@@ -563,7 +563,7 @@
 	return image0;
 }
 
-void CMYKChoose::SelSwatch()
+void CMYKChoose::selSwatch()
 {
 	QTreeWidgetItem *c = Swatches->currentItem();
 	if (c == hsvSelector)
@@ -605,26 +605,26 @@
 
 void CMYKChoose::setSpot()
 {
-	disconnect( ComboBox1, SIGNAL(activated(const QString&)), this, SLOT(SelModel(const QString&)));
+	disconnect( ComboBox1, SIGNAL(activated(const QString&)), this, SLOT(selModel(const QString&)));
 	if (Separations->isChecked())
 	{
 		ComboBox1->setCurrentIndex( 0 );
 //		Commented out to allow RGB Spot-Colors
-//		SelModel( tr("CMYK"));
-	}
-	connect( ComboBox1, SIGNAL(activated(const QString&)), this, SLOT(SelModel(const QString&)));
-}
-
-void CMYKChoose::SelModel(const QString& mod)
+//		selModel( tr("CMYK"));
+	}
+	connect( ComboBox1, SIGNAL(activated(const QString&)), this, SLOT(selModel(const QString&)));
+}
+
+void CMYKChoose::selModel(const QString& mod)
 {
 	disconnect( CyanSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
 	disconnect( MagentaSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
 	disconnect( YellowSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
 	disconnect( BlackSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
-	disconnect( CyanSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
-	disconnect( MagentaSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
-	disconnect( YellowSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
-	disconnect( BlackSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
+	disconnect( CyanSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
+	disconnect( MagentaSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
+	disconnect( YellowSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
+	disconnect( BlackSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
 	disconnect( CyanSL, SIGNAL( valueChanged(int) ), this, SLOT( setColor() ) );
 	disconnect( MagentaSL, SIGNAL( valueChanged(int) ), this, SLOT( setColor() ) );
 	disconnect( YellowSL, SIGNAL( valueChanged(int) ), this, SLOT( setColor() ) );
@@ -657,10 +657,10 @@
 		CyanT->setText( tr("C:"));
 		MagentaT->setText( tr("M:"));
 		YellowT->setText( tr("Y:"));
-		CyanP->setPixmap(SliderPix(180));
-		MagentaP->setPixmap(SliderPix(300));
-		YellowP->setPixmap(SliderPix(60));
-		BlackP->setPixmap(SliderBlack());
+		CyanP->setPixmap(sliderPix(180));
+		MagentaP->setPixmap(sliderPix(300));
+		YellowP->setPixmap(sliderPix(60));
+		BlackP->setPixmap(sliderBlack());
 		BlackP->show();
 		BlackSL->show();
 		BlackSp->show();
@@ -696,9 +696,9 @@
 		CyanT->setText( tr("R:"));
 		MagentaT->setText( tr("G:"));
 		YellowT->setText( tr("B:"));
-		CyanP->setPixmap(SliderPix(0));
-		MagentaP->setPixmap(SliderPix(120));
-		YellowP->setPixmap(SliderPix(240));
+		CyanP->setPixmap(sliderPix(0));
+		MagentaP->setPixmap(sliderPix(120));
+		YellowP->setPixmap(sliderPix(240));
 		Layout2x->setSizeConstraint(QLayout::SetFixedSize);
 		BlackP->hide();
 		BlackSL->hide();
@@ -731,10 +731,10 @@
 	connect( MagentaSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
 	connect( YellowSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
 	connect( BlackSp, SIGNAL( valueChanged(double) ), this, SLOT( setValSLiders(double) ) );
-	connect( CyanSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
-	connect( MagentaSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
-	connect( YellowSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
-	connect( BlackSL, SIGNAL( valueChanged(int) ), this, SLOT( SetValueS(int) ) );
+	connect( CyanSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
+	connect( MagentaSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
+	connect( YellowSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
+	connect( BlackSL, SIGNAL( valueChanged(int) ), this, SLOT( setValueS(int) ) );
 	connect( CyanSL, SIGNAL( valueChanged(int) ), this, SLOT( setColor() ) );
 	connect( MagentaSL, SIGNAL( valueChanged(int) ), this, SLOT( setColor() ) );
 	connect( YellowSL, SIGNAL( valueChanged(int) ), this, SLOT( setColor() ) );
@@ -780,10 +780,10 @@
 		tmp.setColor(c, m, y, k);
 		if (dynamic)
 		{
-			CyanP->setPixmap(SliderPix(180));
-			MagentaP->setPixmap(SliderPix(300));
-			YellowP->setPixmap(SliderPix(60));
-			BlackP->setPixmap(SliderBlack());
+			CyanP->setPixmap(sliderPix(180));
+			MagentaP->setPixmap(sliderPix(300));
+			YellowP->setPixmap(sliderPix(60));
+			BlackP->setPixmap(sliderBlack());
 		}
 	}
 	else
@@ -794,9 +794,9 @@
 		BlackComp = 255 - v;
 		if (dynamic)
 		{
-			CyanP->setPixmap(SliderPix(0));
-			MagentaP->setPixmap(SliderPix(120));
-			YellowP->setPixmap(SliderPix(240));
+			CyanP->setPixmap(sliderPix(0));
+			MagentaP->setPixmap(sliderPix(120));
+			YellowP->setPixmap(sliderPix(240));
 		}
 	}
 	imageN.fill(ScColorEngine::getDisplayColor(tmp, m_doc) );
@@ -831,27 +831,27 @@
 		setValues();
 }
 
-void CMYKChoose::SelFromSwatch(QListWidgetItem* c)
-{
-	disconnect( ComboBox1, SIGNAL(activated(const QString&)), this, SLOT(SelModel(const QString&)));
+void CMYKChoose::selFromSwatch(QListWidgetItem* c)
+{
+	disconnect( ComboBox1, SIGNAL(activated(const QString&)), this, SLOT(selModel(const QString&)));
 	ScColor tmp = CurrSwatch[c->text()];
 	if (isRegistration)
 	{
 		if (tmp.getColorModel() != colorModelCMYK)
 			tmp = ScColorEngine::convertToModel(tmp, m_doc, colorModelCMYK);
-		SelModel( tr("CMYK"));
+		selModel( tr("CMYK"));
 	}
 	else
 	{
 		if (tmp.getColorModel() == colorModelCMYK)
 		{
 			ComboBox1->setCurrentIndex( 0 );
-			SelModel( tr("CMYK"));
+			selModel( tr("CMYK"));
 		}
 		else
 		{
 			ComboBox1->setCurrentIndex( 1 );
-			SelModel( tr("RGB"));
+			selModel( tr("RGB"));
 		}
 	}
 	imageN.fill( ScColorEngine::getDisplayColor(tmp, m_doc) );
@@ -861,9 +861,9 @@
 	Farbe = tmp;
 	setValues();
 	Separations->setChecked(tmp.isSpotColor());
-	if ((isNew) && (!Farbname->isModified()))
-		Farbname->setText(c->text());
-	connect( ComboBox1, SIGNAL(activated(const QString&)), this, SLOT(SelModel(const QString&)));
+	if ((isNew) && (!ColorName->isModified()))
+		ColorName->setText(c->text());
+	connect( ComboBox1, SIGNAL(activated(const QString&)), this, SLOT(selModel(const QString&)));
 }
 
 void CMYKChoose::setValues()
@@ -892,10 +892,10 @@
 		BlackSL->setValue(qRound(ck / 2.55));
 		if (dynamic)
 		{
-			CyanP->setPixmap(SliderPix(180));
-			MagentaP->setPixmap(SliderPix(300));
-			YellowP->setPixmap(SliderPix(60));
-			BlackP->setPixmap(SliderBlack());
+			CyanP->setPixmap(sliderPix(180));
+			MagentaP->setPixmap(sliderPix(300));
+			YellowP->setPixmap(sliderPix(60));
+			BlackP->setPixmap(sliderBlack());
 		}
 	}
 	else
@@ -915,9 +915,9 @@
 		BlackComp = 255 - v;
 		if (dynamic)
 		{
-			CyanP->setPixmap(SliderPix(0));
-			MagentaP->setPixmap(SliderPix(120));
-			YellowP->setPixmap(SliderPix(240));
+			CyanP->setPixmap(sliderPix(0));
+			MagentaP->setPixmap(sliderPix(120));
+			YellowP->setPixmap(sliderPix(240));
 		}
 	}
 	CyanSp->blockSignals(false);
@@ -930,30 +930,30 @@
 	BlackSL->blockSignals(false);
 }
 
-void CMYKChoose::Verlassen()
+void CMYKChoose::leave()
 {
 	// if condition 10/21/2004 pv #1191 - just be sure that user cannot create "None" color
-	if (Farbname->text().isEmpty())
+	if (ColorName->text().isEmpty())
 	{
 		QMessageBox::information(this, CommonStrings::trWarning, tr("You cannot create a color without a name.\nPlease give it a name"), 0);
-		Farbname->setFocus();
-		Farbname->selectAll();
+		ColorName->setFocus();
+		ColorName->selectAll();
 		return;
 	}
-	if (Farbname->text() == CommonStrings::None || Farbname->text() == CommonStrings::tr_NoneColor)
-	{
-		QMessageBox::information(this, CommonStrings::trWarning, tr("You cannot create a color named \"%1\".\nIt is a reserved name for transparent color").arg(Farbname->text()), 0);
-		Farbname->setFocus();
-		Farbname->selectAll();
+	if (ColorName->text() == CommonStrings::None || ColorName->text() == CommonStrings::tr_NoneColor)
+	{
+		QMessageBox::information(this, CommonStrings::trWarning, tr("You cannot create a color named \"%1\".\nIt is a reserved name for transparent color").arg(ColorName->text()), 0);
+		ColorName->setFocus();
+		ColorName->selectAll();
 		return;
 	}
-	if ((Fnam != Farbname->text()) || (isNew))
-	{
-		if (EColors->contains(Farbname->text()))
+	if ((Fnam != ColorName->text()) || (isNew))
+	{
+		if (EColors->contains(ColorName->text()))
 		{
 			QMessageBox::information(this, CommonStrings::trWarning, tr("The name of the color already exists.\nPlease choose another one."), CommonStrings::tr_OK, 0, 0, 0, QMessageBox::Ok);
-			Farbname->selectAll();
-			Farbname->setFocus();
+			ColorName->selectAll();
+			ColorName->setFocus();
 			return;
 		}
 		else

Modified: trunk/Scribus/scribus/ui/cmykfw.h
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=18530&path=/trunk/Scribus/scribus/ui/cmykfw.h
==============================================================================
--- trunk/Scribus/scribus/ui/cmykfw.h (original)
+++ trunk/Scribus/scribus/ui/cmykfw.h Sun Oct  6 00:31:58 2013
@@ -42,7 +42,7 @@
 	CMYKChoose( QWidget* parent, ScribusDoc* doc, ScColor orig, QString name, ColorList *Colors, bool newCol );
 	~CMYKChoose() {};
 	QLabel* TextLabel1;
-	QLineEdit* Farbname;
+	QLineEdit* ColorName;
 	QLabel* TextLabel3;
 	ScComboBox* ComboBox1;
 	QCheckBox* Separations;
@@ -92,21 +92,19 @@
 public slots:
 	void slotRightClick();
 	void setValSLiders(double value);
-	void SetValueS(int val);
-	void ToggleSL();
-	QPixmap SliderPix(int farbe);
-	QPixmap SliderBlack();
-	void SelSwatch();
+	void setValueS(int val);
+	void toggleSL();
+	void selSwatch();
 	void setSpot();
-	void SelModel(const QString& mod);
+	void selModel(const QString& mod);
 	void setColor();
 	void setColor2(int h, int s, bool ende);
-	void SelFromSwatch(QListWidgetItem* c);
+	void selFromSwatch(QListWidgetItem* c);
 	void setValues();
-	void Verlassen();
+	void leave();
 
 protected:
-	QHBoxLayout* CMYKFarbenLayout;
+	QHBoxLayout* CMYKColorLayout;
 	QVBoxLayout* Layout23;
 	QGridLayout* Layout2;
 	QGridLayout* Layout2x;
@@ -125,6 +123,9 @@
 	QTreeWidgetItem *userSwatches;
 	QTreeWidgetItem *hsvSelector;
 	QStringList customColSet;
+	
+	QPixmap sliderPix(int farbe);
+	QPixmap sliderBlack();
 };
 
 #endif // CMYKFARBEN_H

Modified: trunk/Scribus/scribus/ui/paintmanager.cpp
URL: http://scribus.net/websvn/diff.php?repname=Scribus&rev=18530&path=/trunk/Scribus/scribus/ui/paintmanager.cpp
==============================================================================
--- trunk/Scribus/scribus/ui/paintmanager.cpp (original)
+++ trunk/Scribus/scribus/ui/paintmanager.cpp Sun Oct  6 00:31:58 2013
@@ -466,8 +466,8 @@
 			if (dia->exec())
 			{
 				dia->Farbe.setSpotColor(dia->Separations->isChecked());
-				m_colorList.insert(dia->Farbname->text(), dia->Farbe);
-				QTreeWidgetItem *lg = updateColorList(dia->Farbname->text());
+				m_colorList.insert(dia->ColorName->text(), dia->Farbe);
+				QTreeWidgetItem *lg = updateColorList(dia->ColorName->text());
 				if (lg != 0)
 				{
 					dataTree->expandItem(lg->parent());
@@ -551,16 +551,16 @@
 			{
 				dia->Farbe.setSpotColor(dia->Separations->isChecked());
 				dia->Farbe.setRegistrationColor(tmpColor.isRegistrationColor());
-				m_colorList[dia->Farbname->text()] = dia->Farbe;
-				if (it->text(0) != dia->Farbname->text())
-				{
-					replaceColorMap.insert(it->text(0), dia->Farbname->text());
+				m_colorList[dia->ColorName->text()] = dia->Farbe;
+				if (it->text(0) != dia->ColorName->text())
+				{
+					replaceColorMap.insert(it->text(0), dia->ColorName->text());
 					m_colorList.remove(it->text(0));
 				}
-				updateGradientColors(dia->Farbname->text(), it->text(0));
+				updateGradientColors(dia->ColorName->text(), it->text(0));
 				updateGradientList();
 				updatePatternList();
-				QTreeWidgetItem *lg = updateColorList(dia->Farbname->text());
+				QTreeWidgetItem *lg = updateColorList(dia->ColorName->text());
 				if (lg != 0)
 				{
 					dataTree->expandItem(lg->parent());
@@ -671,16 +671,16 @@
 			{
 				dia->Farbe.setSpotColor(dia->Separations->isChecked());
 				dia->Farbe.setRegistrationColor(tmpColor.isRegistrationColor());
-				m_colorList[dia->Farbname->text()] = dia->Farbe;
-				if (nam != dia->Farbname->text())
-				{
-					replaceColorMap.insert(nam, dia->Farbname->text());
+				m_colorList[dia->ColorName->text()] = dia->Farbe;
+				if (nam != dia->ColorName->text())
+				{
+					replaceColorMap.insert(nam, dia->ColorName->text());
 					m_colorList.remove(nam);
 				}
-				updateGradientColors(dia->Farbname->text(), nam);
+				updateGradientColors(dia->ColorName->text(), nam);
 				updateGradientList();
 				updatePatternList();
-				QTreeWidgetItem *lg = updateColorList(dia->Farbname->text());
+				QTreeWidgetItem *lg = updateColorList(dia->ColorName->text());
 				if (lg != 0)
 				{
 					dataTree->expandItem(lg->parent());




More information about the scribus-commit mailing list