Package org.freeplane.core.resources.components

Examples of org.freeplane.core.resources.components.SeparatorProperty


    mNodeShape.fireOnMouseClick();
  }

  private List<IPropertyControl> getControls() {
    final List<IPropertyControl> controls = new ArrayList<IPropertyControl>();
    controls.add(new SeparatorProperty("OptionPanel.separator.NodeColors"));
    addColorControl(controls);
    addBgColorControl(controls);
    controls.add(new SeparatorProperty("OptionPanel.separator.NodeText"));
    addFormatControl(controls);
    addNodeNumberingControl(controls);
    controls.add(new SeparatorProperty("OptionPanel.separator.NodeShape"));
    addNodeShapeControl(controls);
    addMinNodeWidthControl(controls);
    addMaxNodeWidthControl(controls);
    controls.add(new NextLineProperty());
    controls.add(new SeparatorProperty("OptionPanel.separator.NodeFont"));
    addFontNameControl(controls);
    addFontSizeControl(controls);
    addFontBoldControl(controls);
    addFontItalicControl(controls);
    addFontHyperlinkControl(controls);
    controls.add(new NextLineProperty());
    controls.add(new SeparatorProperty("OptionPanel.separator.EdgeControls"));
    addEdgeWidthControl(controls);
    addEdgeStyleControl(controls);
    addEdgeColorControl(controls);
    controls.add(new NextLineProperty());
    controls.add(new SeparatorProperty("OptionPanel.separator.CloudControls"));
    addCloudColorControl(controls);
    controls.add(new NextLineProperty());
    controls.add(new NextColumnProperty(2));
    addCloudShapeControl(controls);
    return controls;
View Full Code Here

TOP

Related Classes of org.freeplane.core.resources.components.SeparatorProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.