2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2007 - INRIA - Jean-Baptiste Silvy
4 * Copyright (C) 2008 - INRIA - Vincent Couvert
5 * desc : Interface functions between between SetProperty functions and the C++/Java part of module
7 * This file must be used under the terms of the CeCILL.
8 * This source file is licensed as described in the file COPYING, which
9 * you should have received as part of this distribution. The terms
10 * are also available at
11 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
15 #include "SetJavaProperty.h"
16 #include "GiwsException.hxx"
23 #include "getScilabJavaVM.h"
26 #include "CallRenderer.hxx"
28 using namespace org_scilab_modules_renderer;
30 /*---------------------------------------------------------------------------------*/
31 void sciJavaUpdateSubwinScale(char * pSubwinUID)
33 CallRenderer::updateSubwinScale(getScilabJavaVM(), pSubwinUID);
36 /*---------------------------------------------------------------------------------*/
37 void sciJavaUpdateTextBoundingBox(char * pTextUID)
39 CallRenderer::updateTextBounds(getScilabJavaVM(), pTextUID);
42 /*---------------------------------------------------------------------------------*/