Package org.freeplane.core.resources.components

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


  }

  private void addFontNameControl(final List<IPropertyControl> controls) {
    mSetNodeFontName = new BooleanProperty(StyleEditorPanel.SET_RESOURCE);
    controls.add(mSetNodeFontName);
    mNodeFontName = new FontProperty(StyleEditorPanel.NODE_FONT_NAME);
    controls.add(mNodeFontName);
    final FontNameChangeListener listener = new FontNameChangeListener(mSetNodeFontName, mNodeFontName);
    mSetNodeFontName.addPropertyChangeListener(listener);
    mNodeFontName.addPropertyChangeListener(listener);
    mNodeFontName.fireOnMouseClick();
View Full Code Here

TOP

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

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.