/* * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab * Copyright (C) 2011 - DIGITEO - Vincent COUVERT * * 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.1-en.txt * */ extern "C" { #include "GetUicontrol.h" } int GetConsoleShowHiddenHandles(void* _pvCtx, int iObjUID) { int iShowHiddenHandles = 0; int *piShowHiddenHandles = &iShowHiddenHandles; getGraphicObjectProperty(iObjUID, __GO_SHOWHIDDENHANDLES__, jni_bool, (void **)&piShowHiddenHandles); if (piShowHiddenHandles == NULL) { Scierror(999, const_cast < char *>(_("'%s' property does not exist for this handle.\n")), "ShowHiddenHandles"); return FALSE; } if (iShowHiddenHandles == TRUE) { return sciReturnString(_pvCtx, "on"); } else { return sciReturnString(_pvCtx, "off"); } } int GetConsoleShowHiddenProperties(void* _pvCtx, int iObjUID) { int iShowHiddenProperties = 0; int *piShowHiddenProperties = &iShowHiddenProperties; getGraphicObjectProperty(iObjUID, __GO_SHOWHIDDENPROPERTIES__, jni_bool, (void **)&piShowHiddenProperties); if (piShowHiddenProperties == NULL) { Scierror(999, const_cast < char *>(_("'%s' property does not exist for this handle.\n")), "ShowHiddenProperties"); return FALSE; } if (iShowHiddenProperties == TRUE) { return sciReturnString(_pvCtx, "on"); } else { return sciReturnString(_pvCtx, "off"); } } int GetConsoleUseDeprecatedLF(void* _pvCtx, int iObjUID) { int iUseDeprecatedLF = 0; int *piUseDeprecatedLF = &iUseDeprecatedLF; getGraphicObjectProperty(iObjUID, __GO_USEDEPRECATEDLF__, jni_bool, (void **)&piUseDeprecatedLF); if (piUseDeprecatedLF == NULL) { Scierror(999, const_cast < char *>(_("'%s' property does not exist for this handle.\n")), "UseDeprecatedSkin"); return FALSE; } if (iUseDeprecatedLF == TRUE) { return sciReturnString(_pvCtx, "on"); } else { return sciReturnString(_pvCtx, "off"); } }