Script incubator
A collection of scripts that might need a review before adding them to the "official" Scripts collection.
Feel free to add your own scripts to this page. If you give script a name using wiki text like
<groovy name="yourScriptName"> your script </groovy>
an extra download button is created for it, and it can be downloaded directly from this page.
Contents
Pair of scripts to increase/decrease the node-width (can be used with shortcuts!)
Since freeplane 1.5.x we can adjust the node-width with ALT+mouse-wheel, but there is currently no way to make it with keyboard shortcuts.
So these scripts aim at increasing/decreasing the node-width (the same way that ALT-mout-wheel would do), but by being scripts they will have a menu entry in "Tools/Scripts/Node Width_Increase" and "Tools/Scripts/Node Width_Decrease", making possible to create a shortcut to these menu entries, and so, to adjust the node-width with keyboard shortcuts.
How to install the scripts
- Download the 2 scripts from http://freeplane.sourceforge.net/wiki/index.php/Script_incubator and put them inside the directory "<freeplane-user-dir>/scripts" (you can open "<freeplane-user-dir>" clicking in "Tools/Open user directory")
- Restart Freeplane - Verify that the 2 new scripts appear in these 2 new menu-entries "Tools/Scripts/Node Width_Increase" and "Tools/Scripts/Node Width_Decrease"
- [optional] Assign a shortcut-key to each of the 2 menu-entries (hold CTRL while clicking a menu-entry)
Hope it helps :)
<groovy name="NodeWidth_Increase">
// @ExecutionModes({ON_SELECTED_NODE})
// zipizap, Feb2016 // Trying to solve this thread discussion [1] // Inspired by this node-width sample code [2] // Dedicated to the great and friendly freeplane community :) // UPDATE: 2016/08/16 - added improvements made by Ken Hill (see [3]) // // // [1] https://sourceforge.net/p/freeplane/discussion/758437/thread/8f1d0faa/ // [2] https://sourceforge.net/p/freeplane/discussion/758437/thread/108a5c74/#2d6a // [3] https://sourceforge.net/p/freeplane/discussion/758437/thread/8f1d0faa/#bf45
def incr = 20
node.style.minNodeWidth += incr // node.style.maxNodeWidth = node.style.minNodeWidth </groovy>
<groovy name="NodeWidth_Decrease"> // @ExecutionModes({ON_SELECTED_NODE})
// zipizap, Feb2016 // Trying to solve this thread discussion [1] // Inspired by this node-width sample code [2] // Dedicated to the great and friendly freeplane community :) // UPDATE: 2016/08/16 - added improvements made by Ken Hill (see [3]) // // // [1] https://sourceforge.net/p/freeplane/discussion/758437/thread/8f1d0faa/ // [2] https://sourceforge.net/p/freeplane/discussion/758437/thread/108a5c74/#2d6a // [3] https://sourceforge.net/p/freeplane/discussion/758437/thread/8f1d0faa/#bf45
def incr = 20
if(node.style.minNodeWidth > incr){ // keeps from going into negative range node.style.minNodeWidth -= incr node.style.maxNodeWidth = node.style.minNodeWidth } else{ node.style.minNodeWidth = incr node.style.maxNodeWidth = node.style.minNodeWidth } </groovy>
Author: User:zipizap
Scripts to save/restore the folding of the current map, with 2 restore-points
Trying to help out with this request, to save different folding states [1] - see the thread for more info
[1] https://sourceforge.net/p/freeplane/discussion/758437/thread/10318019/?limit=25#879e
Use the save script to save the current folding of the map, and then later use the restore script to restore the saved-folding.
The folding-states are saved into the maps (.mm) file, and so are persistent across map loading. That is: you can save a folding state today, and next week when you open the same map restore the folding state
There are 2 pairs of files - save/restore_S0 and save/restore_S1 - that enable 2 restore-points.
If you need more restore points, then create more pairs of files (save/restore_S2, save/restore_S3, ...) where you will only need to change the last 2 lines of code save_restore_closure(...,"S9")
How to install the scripts
- Download the scripts from http://freeplane.sourceforge.net/wiki/index.php/Script_incubator and put them inside the directory "<freeplane-user-dir>/scripts" (you can open "<freeplane-user-dir>" clicking in "Tools/Open user directory")
- Restart Freeplane - Verify that the new scripts appear inside menu "Tools/Scripts"
- [optional] Assign a shortcut-key to each of the scripts new menu-entries (hold CTRL while clicking a menu-entry)
Hope it helps :)
<groovy name="save_folds_S0">
// USAGE: save_restore_closure("save"|"restore", "S0"|"S1"|"S2")
Closure save_restore_closure =
{ String save_or_restore, String folding_state_name -> // The save_or_restore variable should be given on of these two values: "save" or "restore" // The folding_state_name variable can be given any name without spaces or special characters. Ex: "S0" or "S1" or "S2"
if ( save_or_restore == "save" ) { // save folding
// get foldings def folded_nodes_ids_ary = c.findAll().findAll { it.isFolded() }.collect { it.id } // Array of Strings // [ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ] //folded_nodes_ids_ary.each { N(it).style.backgroundColorCode = '#0000FF' }
String stringified_ary_xml_escaped = htmlUtils.toXMLEscapedText( folded_nodes_ids_ary.inspect() ) // String xml-escaped (ready to be stored in XML file) // "[ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]" // save to map stringified_ary_xml_escaped node.map.storage[folding_state_name]=stringified_ary_xml_escaped } else { // restore folding
// load from map stringified_ary_xml_escaped def result_convertible = node.map.storage[folding_state_name] // Convertible (see org.freeplane.plugin.script.proxy.Convertible, use result_convertible.string to get String) // or null
if (result_convertible == null) { return }
String stringified_ary_xml_escaped = result_convertible.string String stringified_ary = htmlUtils.toXMLUnescapedText( stringified_ary_xml_escaped ) // String // "[ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]" def folded_nodes_ids_ary = Eval.me(stringified_ary) // Array of Strings // [ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]
// restore foldings c.findAll().each { n -> n.setFolded( folded_nodes_ids_ary.contains(n.id) ? true : false ) } } }
// USAGE: save_restore_closure("save"|"restore", "S0"|"S1"|"S2") save_restore_closure("save", "S0") //save_restore_closure("restore", "S0")
</groovy>
<groovy name="restore_folds_S0"> // USAGE: save_restore_closure("save"|"restore", "S0"|"S1"|"S2") Closure save_restore_closure =
{ String save_or_restore, String folding_state_name -> // The save_or_restore variable should be given on of these two values: "save" or "restore" // The folding_state_name variable can be given any name without spaces or special characters. Ex: "S0" or "S1" or "S2"
if ( save_or_restore == "save" ) { // save folding
// get foldings def folded_nodes_ids_ary = c.findAll().findAll { it.isFolded() }.collect { it.id } // Array of Strings // [ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ] //folded_nodes_ids_ary.each { N(it).style.backgroundColorCode = '#0000FF' }
String stringified_ary_xml_escaped = htmlUtils.toXMLEscapedText( folded_nodes_ids_ary.inspect() ) // String xml-escaped (ready to be stored in XML file) // "[ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]" // save to map stringified_ary_xml_escaped node.map.storage[folding_state_name]=stringified_ary_xml_escaped } else { // restore folding
// load from map stringified_ary_xml_escaped def result_convertible = node.map.storage[folding_state_name] // Convertible (see org.freeplane.plugin.script.proxy.Convertible, use result_convertible.string to get String) // or null
if (result_convertible == null) { return }
String stringified_ary_xml_escaped = result_convertible.string String stringified_ary = htmlUtils.toXMLUnescapedText( stringified_ary_xml_escaped ) // String // "[ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]" def folded_nodes_ids_ary = Eval.me(stringified_ary) // Array of Strings // [ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]
// restore foldings c.findAll().each { n -> n.setFolded( folded_nodes_ids_ary.contains(n.id) ? true : false ) } } }
// USAGE: save_restore_closure("save"|"restore", "S0"|"S1"|"S2") //save_restore_closure("save", "S0") save_restore_closure("restore", "S0")
</groovy>
<groovy name="save_folds_S1"> // USAGE: save_restore_closure("save"|"restore", "S0"|"S1"|"S2") Closure save_restore_closure =
{ String save_or_restore, String folding_state_name -> // The save_or_restore variable should be given on of these two values: "save" or "restore" // The folding_state_name variable can be given any name without spaces or special characters. Ex: "S0" or "S1" or "S2"
if ( save_or_restore == "save" ) { // save folding
// get foldings def folded_nodes_ids_ary = c.findAll().findAll { it.isFolded() }.collect { it.id } // Array of Strings // [ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ] //folded_nodes_ids_ary.each { N(it).style.backgroundColorCode = '#0000FF' }
String stringified_ary_xml_escaped = htmlUtils.toXMLEscapedText( folded_nodes_ids_ary.inspect() ) // String xml-escaped (ready to be stored in XML file) // "[ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]" // save to map stringified_ary_xml_escaped node.map.storage[folding_state_name]=stringified_ary_xml_escaped } else { // restore folding
// load from map stringified_ary_xml_escaped def result_convertible = node.map.storage[folding_state_name] // Convertible (see org.freeplane.plugin.script.proxy.Convertible, use result_convertible.string to get String) // or null
if (result_convertible == null) { return }
String stringified_ary_xml_escaped = result_convertible.string String stringified_ary = htmlUtils.toXMLUnescapedText( stringified_ary_xml_escaped ) // String // "[ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]" def folded_nodes_ids_ary = Eval.me(stringified_ary) // Array of Strings // [ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]
// restore foldings c.findAll().each { n -> n.setFolded( folded_nodes_ids_ary.contains(n.id) ? true : false ) } } }
// USAGE: save_restore_closure("save"|"restore", "S0"|"S1"|"S2") save_restore_closure("save", "S1") //save_restore_closure("restore", "S1")
</groovy>
<groovy name="restore_folds_S1"> // USAGE: save_restore_closure("save"|"restore", "S0"|"S1"|"S2") Closure save_restore_closure =
{ String save_or_restore, String folding_state_name -> // The save_or_restore variable should be given on of these two values: "save" or "restore" // The folding_state_name variable can be given any name without spaces or special characters. Ex: "S0" or "S1" or "S2"
if ( save_or_restore == "save" ) { // save folding
// get foldings def folded_nodes_ids_ary = c.findAll().findAll { it.isFolded() }.collect { it.id } // Array of Strings // [ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ] //folded_nodes_ids_ary.each { N(it).style.backgroundColorCode = '#0000FF' }
String stringified_ary_xml_escaped = htmlUtils.toXMLEscapedText( folded_nodes_ids_ary.inspect() ) // String xml-escaped (ready to be stored in XML file) // "[ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]" // save to map stringified_ary_xml_escaped node.map.storage[folding_state_name]=stringified_ary_xml_escaped } else { // restore folding
// load from map stringified_ary_xml_escaped def result_convertible = node.map.storage[folding_state_name] // Convertible (see org.freeplane.plugin.script.proxy.Convertible, use result_convertible.string to get String) // or null
if (result_convertible == null) { return }
String stringified_ary_xml_escaped = result_convertible.string String stringified_ary = htmlUtils.toXMLUnescapedText( stringified_ary_xml_escaped ) // String // "[ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]" def folded_nodes_ids_ary = Eval.me(stringified_ary) // Array of Strings // [ 'ID_xxx1', // 'ID,xxx2', // ... // 'ID_xxxN' // ]
// restore foldings c.findAll().each { n -> n.setFolded( folded_nodes_ids_ary.contains(n.id) ? true : false ) } } }
// USAGE: save_restore_closure("save"|"restore", "S0"|"S1"|"S2") //save_restore_closure("save", "S1") save_restore_closure("restore", "S1")
</groovy>
Author: User:zipizap