Package org.freeplane.plugin.script

Source Code of org.freeplane.plugin.script.ScriptEditorProperty

/*
*  Freeplane - mind map editor
*  Copyright (C) 2008 Joerg Mueller, Daniel Polansky, Christian Foltin, Dimitry Polivaev
*
*  This file is modified by Dimitry Polivaev in 2008.
*
*  This program is free software: you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation, either version 2 of the License, or
*  (at your option) any later version.
*
*  This program is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
*  You should have received a copy of the GNU General Public License
*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.freeplane.plugin.script;

import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JPopupMenu;

import org.freeplane.core.resources.components.IPropertyControl;
import org.freeplane.core.resources.components.PropertyBean;
import org.freeplane.features.mode.Controller;
import org.freeplane.features.script.IScriptEditorStarter;

import com.jgoodies.forms.builder.DefaultFormBuilder;

class ScriptEditorProperty extends PropertyBean implements IPropertyControl, ActionListener {
  JButton mButton;
  final JPopupMenu menu = new JPopupMenu();
//   final private ModeController mMindMapController;
  String script;

  /**
   */
  public ScriptEditorProperty(final String name) {
    super(name);
    mButton = new JButton();
    mButton.addActionListener(this);
    script = "";
  }

  public void actionPerformed(final ActionEvent arg0) {
    final IScriptEditorStarter plugin = (IScriptEditorStarter) Controller
        .getCurrentModeController().getExtension(
            IScriptEditorStarter.class);
    if (plugin != null) {
      final IScriptEditorStarter starter = plugin;
      final String resultScript = starter.startEditor(script);
      if (resultScript != null) {
        script = resultScript;
        firePropertyChangeEvent();
      }
    }
  }

  @Override
  public String getValue() {
    return script;
  }

  public void layout(final DefaultFormBuilder builder) {
    layout(builder, mButton);
  }

  public void setEnabled(final boolean pEnabled) {
    mButton.setEnabled(pEnabled);
  }

  /**
   */
  private void setScriptValue(final String result) {
    if (result == null) {
      script = "";
    }
    else {
      script = result;
    }
    mButton.setText(script);
  }

  @Override
  public void setValue(final String value) {
    setScriptValue(value);
  }

  @Override
    protected Component[] getComponents() {
      return new Component[]{mButton};
    }
}
TOP

Related Classes of org.freeplane.plugin.script.ScriptEditorProperty

TOP
Copyright © 2018 www.massapi.com. 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.