2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2007 - INRIA - Jean-Baptiste Silvy
4 * Copyright (C) 2012 - Scilab Enterprises - Bruno JOFRET
6 * This file must be used under the terms of the CeCILL.
7 * This source file is licensed as described in the file COPYING, which
8 * you should have received as part of this distribution. The terms
9 * are also available at
10 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
14 #include "JavaInteraction.h"
15 #include "getScilabJavaVM.h"
18 #include "CallRenderer.hxx"
20 void startInteractiveZoom(char *pstObjUID)
22 org_scilab_modules_renderer::CallRenderer::startInteractiveZoom(getScilabJavaVM(), pstObjUID);
25 /*---------------------------------------------------------------------------------*/
26 double *javaClickRubberBox(char *pstObjUID, double *initialRect, int iRectSize)
28 return org_scilab_modules_renderer::CallRenderer::clickRubberBox(getScilabJavaVM(), pstObjUID, initialRect, iRectSize);
31 /*---------------------------------------------------------------------------------*/
32 double *javaDragRubberBox(char *pstObjUID)
34 return org_scilab_modules_renderer::CallRenderer::dragRubberBox(getScilabJavaVM(), pstObjUID);
36 /*---------------------------------------------------------------------------------*/