alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 * QuickNotepadOptionPane.java
 * part of the QuickNotepad plugin for the jEdit text editor
 * Copyright (C) 2001 John Gellene
 * jgellene@nyc.rr.com
 *
 * 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 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * $Id: QuickNotepadOptionPane.java,v 1.3 2001/11/11 12:26:20 jgellene Exp $
 */

import java.io.File;
import java.io.IOException;
import java.awt.Font;
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.JFileChooser;

import org.gjt.sp.jedit.jEdit;
import org.gjt.sp.jedit.GUIUtilities;
import org.gjt.sp.jedit.AbstractOptionPane;
import org.gjt.sp.jedit.gui.FontSelector;


public class QuickNotepadOptionPane extends AbstractOptionPane
			implements ActionListener
{
	private JCheckBox showPath;
	private JTextField pathName;
	private FontSelector font;

	public QuickNotepadOptionPane()
	{
		super(QuickNotepadPlugin.NAME);
	}

	public void _init()
	{
		showPath = new JCheckBox(jEdit.getProperty(
			QuickNotepadPlugin.OPTION_PREFIX + "show-filepath.title"),
			jEdit.getProperty(QuickNotepadPlugin.OPTION_PREFIX +
				"show-filepath").equals("true"));
		addComponent(showPath);

		pathName = new JTextField(jEdit.getProperty(
			QuickNotepadPlugin.OPTION_PREFIX + "filepath"));
		JButton pickPath = new JButton(jEdit.getProperty(
			QuickNotepadPlugin.OPTION_PREFIX + "choose-file"));
		pickPath.addActionListener(this);

		JPanel pathPanel = new JPanel(new BorderLayout(0, 0));
		pathPanel.add(pathName, BorderLayout.CENTER);
		pathPanel.add(pickPath, BorderLayout.EAST);

		addComponent(jEdit.getProperty(
			QuickNotepadPlugin.OPTION_PREFIX + "file"),
			pathPanel);

		font = new FontSelector(makeFont());
		addComponent(jEdit.getProperty(
			QuickNotepadPlugin.OPTION_PREFIX + "choose-font"),
			font);
	}

	public void _save()
	{
		jEdit.setProperty(QuickNotepadPlugin.OPTION_PREFIX + "filepath",
			pathName.getText());
		Font _font = font.getFont();
		jEdit.setProperty(QuickNotepadPlugin.OPTION_PREFIX + "font",
			_font.getFamily());
		jEdit.setProperty(QuickNotepadPlugin.OPTION_PREFIX + "fontsize",
			String.valueOf(_font.getSize()));
		jEdit.setProperty(QuickNotepadPlugin.OPTION_PREFIX + "fontstyle",
			String.valueOf(_font.getStyle()));
		jEdit.setProperty(QuickNotepadPlugin.OPTION_PREFIX + "show-filepath",
			String.valueOf(showPath.isSelected()));
	}
	// end AbstractOptionPane implementation

	// begin ActionListener implementation
	public void actionPerformed(ActionEvent evt)
	{
		String[] paths = GUIUtilities.showVFSFileDialog(null,
			null,JFileChooser.OPEN_DIALOG,false);
		if(paths != null)
		{
			pathName.setText(paths[0]);
		}
	}

	// helper method to get Font from plugin properties
	static public Font makeFont()
	{
		int style, size;
		String family = jEdit.getProperty(
			QuickNotepadPlugin.OPTION_PREFIX + "font");
		try
		{
			size = Integer.parseInt(jEdit.getProperty(
				QuickNotepadPlugin.OPTION_PREFIX + "fontsize"));
		}
		catch(NumberFormatException nf)
		{
			size = 14;
		}
		try
		{
			style = Integer.parseInt(jEdit.getProperty(
				QuickNotepadPlugin.OPTION_PREFIX + "fontstyle"));
		}
		catch(NumberFormatException nf)
		{
			style = Font.PLAIN;
		}
		return new Font(family, style, size);
	}

}

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.