- Scilab Help
- Modules manager
- tbx_build_blocks
- tbx_build_cleaner
- tbx_build_gateway
- tbx_build_gateway_clean
- tbx_build_gateway_loader
- tbx_build_help
- tbx_build_help_loader
- tbx_build_loader
- tbx_build_localization
- tbx_build_macros
- tbx_build_pal_loader
- tbx_build_src
- tbx_builder_gateway
- tbx_builder_gateway_lang
- tbx_builder_help
- tbx_builder_help_lang
- tbx_builder_macros
- tbx_builder_src
- tbx_builder_src_lang
- tbx_generate_pofile
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
tbx_build_pal_loader
Generate a loader_pal.sce script for loading Xcos palette module(toolbox compilation process)
Calling Sequence
tbx_build_pal_loader(palette_name, block_names , module_path [, script_path])
Arguments
- palette_name
a character string, the name of the palette.
- block_names
Block interface function list (in a string vector) ; all name should have a corresponding interface function macro (on the macros subdirectory).
- module_path
a character string, the path of the directory containing the module.
- script_path
an optional character string that can be used to specify the location of the created loader_pal.sce script file. If not given the script file will be created in the module_path+"/macros" directory.
Generaly the loader_pal.sce script file is created in the directory which contains the block interface functions files. The script_path argument can be used to handle modules that define several palettes.
Examples
//The recommended buildmacros.sce file function buildMacrosAndBlocks() script_path = get_absolute_file_path("buildmacros.sce"); module_path = part(script_path,1:length(script_path)-length("macros")) tbx_build_macros(NAME, script_path); interface_functions = //to be defined tbx_build_blocks(module_path, interface_functions); tbx_build_pal_loader(TITLE,interface_functions,module_path,script_path) endfunction buildMacrosAndBlocks() clear buildMacrosAndBlocks;
Report an issue | ||
<< tbx_build_macros | Modules manager | tbx_build_src >> |