+/*
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2004-2006 - INRIA - Fabrice Leray
+ * Copyright (C) 2006 - INRIA - Allan Cornet
+ * Copyright (C) 2006 - INRIA - Jean-Baptiste Silvy
+ * Copyright (C) 2009 - DIGITEO - Pierre Lando
+ * Copyright (C) 2010 - DIGITEO - Manuel Juliachs
+ *
+ * This file must be used under the terms of the CeCILL.
+ * This source file is licensed as described in the file COPYING, which
+ * you should have received as part of this distribution. The terms
+ * are also available at
+ * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
+ *
+ */
+
/*------------------------------------------------------------------------*/
/* file: set_color_map_property.c */
-/* Copyright INRIA 2006 */
-/* Authors : Fabrice Leray, Allan Cornet, Jean-Baptiste Silvy */
/* desc : function to modify in Scilab the color_map field of */
/* a handle */
/*------------------------------------------------------------------------*/
#include "setHandleProperty.h"
#include "SetProperty.h"
#include "getPropertyAssignedValue.h"
-#include "sciprint.h"
+#include "Scierror.h"
+#include "localization.h"
#include "SetPropertyStatus.h"
+#include "setGraphicObjectProperty.h"
+#include "graphicObjectProperties.h"
+
/*------------------------------------------------------------------------*/
-int set_color_map_property( sciPointObj * pobj, int stackPointer, int valueType, int nbRow, int nbCol )
+int set_color_map_property(void* _pvCtx, char* pobjUID, size_t stackPointer, int valueType, int nbRow, int nbCol )
{
- if ( !isParameterDoubleMatrix( valueType ) )
- {
- sciprint(_("Incompatible type for property %s.\n"),"color_map") ;
- return SET_PROPERTY_ERROR ;
- }
+ BOOL status = FALSE;
+
+ if ( !( valueType == sci_matrix ) )
+ {
+ Scierror(999, _("Wrong type for '%s' property: Real matrix expected.\n"), "color_map");
+ return SET_PROPERTY_ERROR ;
+ }
+
+ if (nbCol != 3)
+ {
+ Scierror(999, _("Wrong dimension for '%s' property: The number of columns must be 3.\n"), "color_map");
+ return SET_PROPERTY_ERROR ;
+ }
+
+ status = setGraphicObjectProperty(pobjUID, __GO_COLORMAP__, stk(stackPointer), jni_double_vector, nbRow * nbCol);
- return sciSetColormap( pobj, getDoubleMatrixFromStack( stackPointer), nbRow, nbCol ) ;
+ if (status == TRUE)
+ {
+ return SET_PROPERTY_SUCCEED;
+ }
+ else
+ {
+ Scierror(999, _("'%s' property does not exist for this handle.\n"), "color_map");
+ return SET_PROPERTY_ERROR;
+ }
}
/*------------------------------------------------------------------------*/