2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2010-2010 - DIGITEO - Bruno JOFRET
5 * This file must be used under the terms of the CeCILL.
6 * This source file is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at
9 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
13 #ifndef __CREATEGRAPHICOBJECT_H__
14 #define __CREATEGRAPHICOBJECT_H__
16 #include "dynlib_graphic_objects.h"
19 ** Ask Controller to create a graphic object
20 ** of the given _sType.
22 GRAPHIC_OBJECTS_IMPEXP char *createGraphicObject(int _iType);
25 ** Ask Controller to clone a graphic object
26 ** referenced the given _sId.
28 GRAPHIC_OBJECTS_IMPEXP char *cloneGraphicObject(char const* _sId);
31 ** Ask Controller to create a data object
32 ** referenced by the given _sId and of the given _sType
34 GRAPHIC_OBJECTS_IMPEXP char const* createDataObject(char const* _sId, int _iType);
37 ** Ask Controller to create a figure menubar
38 ** referenced by the given _sFigureId and of the given _sType
40 GRAPHIC_OBJECTS_IMPEXP void buildFigureMenuBar(char const* _sFigureId);
42 GRAPHIC_OBJECTS_IMPEXP char * constructRectangles(char * pparentsubwinUID, double x, double y, double height, double width, int foreground, int background, int isfilled, int isline);
44 #endif /* !__CREATEGRAPHICOBJECT_H__ */