diff options
Diffstat (limited to 'grc/blocks/variable.xml')
-rw-r--r-- | grc/blocks/variable.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/grc/blocks/variable.xml b/grc/blocks/variable.xml new file mode 100644 index 000000000..afee0f5d4 --- /dev/null +++ b/grc/blocks/variable.xml @@ -0,0 +1,23 @@ +<?xml version="1.0"?> +<!-- +################################################### +##Variable block: a grc variable with key, value +################################################### + --> +<block> + <name>Variable</name> + <key>variable</key> + <var_make>self.$(id) = $(id) = $value</var_make> + <make></make> + <callback>self.set_$(id)($value)</callback> + <param> + <name>Value</name> + <key>value</key> + <value>0</value> + <type>raw</type> + </param> + <doc> +This block maps a value to a unique variable. \ +This variable block has no graphical representation. + </doc> +</block> |