summaryrefslogtreecommitdiff
path: root/modules/xcos/macros/xcosPal.sci
diff options
context:
space:
mode:
authorShashank2017-05-29 12:40:26 +0530
committerShashank2017-05-29 12:40:26 +0530
commit0345245e860375a32c9a437c4a9d9cae807134e9 (patch)
treead51ecbfa7bcd3cc5f09834f1bb8c08feaa526a4 /modules/xcos/macros/xcosPal.sci
downloadscilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.tar.gz
scilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.tar.bz2
scilab_for_xcos_on_cloud-0345245e860375a32c9a437c4a9d9cae807134e9.zip
CMSCOPE changed
Diffstat (limited to 'modules/xcos/macros/xcosPal.sci')
-rwxr-xr-xmodules/xcos/macros/xcosPal.sci117
1 files changed, 117 insertions, 0 deletions
diff --git a/modules/xcos/macros/xcosPal.sci b/modules/xcos/macros/xcosPal.sci
new file mode 100755
index 000000000..cdce8fabf
--- /dev/null
+++ b/modules/xcos/macros/xcosPal.sci
@@ -0,0 +1,117 @@
+//
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) DIGITEO - 2010-2010 - Clément DAVID
+//
+// 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
+//
+//
+
+function pal = xcosPal(name, scs_m)
+ // Instanciate a new Xcos palette on Scilab.
+ //
+ // Calling Sequence
+ // pal = xcosPal();
+ // pal = xcosPal(name);
+ // pal = xcosPal(scs_m);
+ // pal = xcosPal([], scs_m);
+ // pal = xcosPal(name, scs_m);
+ //
+ // Parameters
+ // name: string; the optional palette name
+ // scs_m: diagram mlist; the optional source diagram
+ // pal: palette tlist; the palette instance
+ //
+ // Description
+ // Instanciate a new palette diagram.
+ //
+ // The optional name argument can be used to set a name to the palette. The optional scs_m argument can be used to import diagrams as palettes.
+ //
+ // Examples
+ // loadXcosLibs();
+ //
+ // // from scratch
+ // pal = xcosPal("My sum palette");
+ // pal = xcosPalAddBlock(pal, "SUM_f");
+ // pal = xcosPalAddBlock(pal, "BIGSOM_f");
+ // xcosPalAdd(pal);
+ //
+ // // from an old palette
+ // exec(SCI + "/modules/scicos/palettes/Integer.cosf", -1);
+ // pal = xcosPal(scs_m);
+ // xcosPalAdd(pal);
+ //
+ // See also
+ // xcosPal
+ // xcosPalAddBlock
+ //
+ // Authors
+ // Clément DAVID
+
+
+ [lhs,rhs] = argn(0);
+
+ if rhs > 2 then
+ error(msprintf(gettext("%s: Wrong number of input arguments: %d to %d expected.\n"), "xcosPal", 0, 2));
+ end
+
+ if exists("name", "l") == 0 then
+ name = "New palette";
+ elseif isempty(name) then
+ name = "New palette";
+ elseif typeof(name) == "diagram" then
+ scs_m = name;
+ name = "New palette";
+ end
+ // loading the scicos_diagram macro
+ if exists("scicos_diagram", "a") == 0 then loadXcosLibs(), end
+ if exists("scs_m", "l") == 0 then scs_m = scicos_diagram(), end
+
+ if typeof(name) <> "string" then
+ error(msprintf(gettext("%s: Wrong type for input argument ""%s"": string type expected.\n"), "xcosPal","name"));
+ end
+
+ if typeof(scs_m) <> "diagram" then
+ error(msprintf(gettext("%s: Wrong type for input argument ""%s"": diagram type expected.\n"), "xcosPal","scs_m"));
+ end
+
+ // default instance
+ pal = tlist(["palette", "name", "blockNames", "icons", "style"],..
+ [], [], [], []);
+
+ // find palette name
+ if ~isempty(scs_m.objs) then
+ name = scs_m.props.title(1);
+ end
+
+ // getting a block name list
+ varsToLoad = [];
+ for block = scs_m.objs
+ if typeof(block)=="Block" & block.gui == "PAL_f" then
+ // customize palette name
+ name = block.model.rpar.props.title(1);
+
+ // Add PAL_f children blocks
+ children = block.model.rpar.objs;
+ for jBlock = 1:size(children)
+ varsToLoad($+1) = children(jBlock).gui;
+ end
+ elseif typeof(block)=="Block" then
+ // old scicos palettes doesn't have a PAL_f block but directly
+ // the reference instances instead.
+ varsToLoad($+1) = block.gui
+ end
+ end
+
+ // set name
+ pal.name = name;
+
+ // add block instance by interfunction (will generate a new reference instance).
+ for index = 1:size(varsToLoad, "*")
+ pal = xcosPalAddBlock(pal, varsToLoad(index));
+ end
+endfunction
+