[Kst] extragear/graphics/kst/kst

George Staikos staikos at kde.org
Sun Oct 30 19:20:35 CET 2005


SVN commit 475825 by staikos:

add edit multiple widget


 M  +6 -0      kstwidgets.cpp  


--- trunk/extragear/graphics/kst/kst/kstwidgets.cpp #475824:475825
@@ -4,6 +4,7 @@
 #include "curveappearancewidget.h"
 #include "curveplacementwidget.h"
 #include "datarangewidget.h"
+#include "editmultiplewidget.h"
 #include "fftoptionswidget.h"
 #include "matrixselector.h"
 #include "plotlistbox.h"
@@ -23,6 +24,7 @@
 		QStringList rc;
 		rc += "CurveAppearanceWidget";
 		rc += "CurvePlacementWidget";
+		rc += "EditMultipleWidget";
 		rc += "KstDataRange";
 		rc += "KstFFTOptions";
 		rc += "MatrixSelector";
@@ -51,6 +53,8 @@
 			return "curveappearancewidget.h";
 		if (key == QString::fromLatin1("CurvePlacementWidget"))
 			return "curveplacementwidget.h";
+		if (key == QString::fromLatin1("EditMultipleWidget"))
+			return "editmultiplewidget.h";
 		if (key == QString::fromLatin1("MatrixSelector"))
 			return "matrixselector.h";
 		if (key == QString::fromLatin1("ScalarSelector"))
@@ -78,6 +82,8 @@
 QWidget *KstWidgets::create(const QString &key, QWidget *parent, const char *name) {
 	if (key == QString::fromLatin1("CurveAppearanceWidget"))
 		return new CurveAppearanceWidget(parent, name);
+	if (key == QString::fromLatin1("EditMultipleWidget"))
+		return new EditMultipleWidget(parent, name);
 	if (key == QString::fromLatin1("ScalarSelector"))
 		return new ScalarSelector(parent, name);
 	if (key == QString::fromLatin1("MatrixSelector"))


More information about the Kst mailing list