public static interface Proxy.NodeStyle extends Proxy.NodeStyleRO
node.style
- read-write.Modifier and Type | Method and Description |
---|---|
void |
setBackgroundColor(java.awt.Color color) |
void |
setBackgroundColorCode(java.lang.String rgbString) |
void |
setFloating(boolean floating) |
void |
setName(java.lang.String styleName)
Selects a style by name, see menu Styles -> Pre/Userdefined styles for valid style names or use
Proxy.NodeStyleRO.getName() to display the name of a node's style. |
void |
setNodeTextColor(java.awt.Color color)
Deprecated.
since 1.2 - use
setTextColor(Color) instead. |
void |
setStyle(org.freeplane.features.styles.IStyle style) |
void |
setTextColor(java.awt.Color color) |
void |
setTextColorCode(java.lang.String rgbString) |
getBackgroundColor, getBackgroundColorCode, getEdge, getFont, getName, getNodeTextColor, getStyle, getStyleNode, getTextColor, getTextColorCode, isFloating
void setStyle(org.freeplane.features.styles.IStyle style)
void setName(java.lang.String styleName)
Proxy.NodeStyleRO.getName()
to display the name of a node's style.
It's guaranteed that node.style.name = node.style.name
does not change the style.styleName
- can be the name visible in the style menu or its translation key as returned by
Proxy.NodeStyleRO.getName()
. (Names of predefined styles are subject to translation.)
Only translation keys will continue to work if the language setting is changed.java.lang.IllegalArgumentException
- if the style does not exist.void setBackgroundColor(java.awt.Color color)
void setBackgroundColorCode(java.lang.String rgbString)
rgbString
- a HTML color spec like #ff0000 (red) or #222222 (darkgray).void setNodeTextColor(java.awt.Color color)
setTextColor(Color)
instead.void setTextColor(java.awt.Color color)
void setTextColorCode(java.lang.String rgbString)
rgbString
- a HTML color spec like #ff0000 (red) or #222222 (darkgray).void setFloating(boolean floating)
sets
- the floating style for the node (aka "free node"). Should normally only applied to direct
children of the root node.