// File: ActionShowContent.java
// Classes: ActionShowContent
// Author: Kedar Patankar

package EDU.neu.ccs.demeter.tools.apstudio.graphedit;

import java.io.IOException;
import java.io.File;

/** Action to show the help topics */

public class ActionShowContent extends Action
{

	public ActionShowContent(Editor e)
	{
		super(e);
	}

	public String name() { return "Show Content dialog"; }

	public void doIt()
	{
		String INSTALL_DIR=_editor.getInstallDir();
		INSTALL_DIR = INSTALL_DIR + "/help/UserManual.html";

			HelpFrame f=new HelpFrame("file:///"+INSTALL_DIR);
			f.setSize(350,400);
			f.setVisible(true);
	}
	
	public void undoIt() { }

} /* end class ActionShowContent */

