
com.swabunga.spell.swing.JSpellDialog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jazzy-swing Show documentation
Show all versions of jazzy-swing Show documentation
Library for integrating the Jazzy spell checker into a Java Swing application.
The newest version!
/*
Jazzy - a Java library for Spell Checking
Copyright (C) 2001 Mindaugas Idzelis
Full text of license can be found in LICENSE.txt
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package com.swabunga.spell.swing;
import com.swabunga.spell.event.SpellCheckEvent;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;
/** Implementation of a spell check dialog.
*
* @author Jason Height ([email protected])
*/
public class JSpellDialog extends JDialog implements ActionListener, WindowListener {
private JSpellForm form = new JSpellForm();
private SpellCheckEvent event = null;
public JSpellDialog(Frame owner, String title, boolean modal) {
super(owner, title, modal);
initialiseDialog();
}
public JSpellDialog(Dialog owner, String title, boolean modal) {
super(owner, title, modal);
initialiseDialog();
}
private void initialiseDialog() {
getContentPane().add(form);
form.addActionListener(this);
addWindowListener(this);
//setDefaultCloseOperation(JDialog.HIDE_ON_CLOSE);
pack();
}
public void show(SpellCheckEvent e) {
// System.out.println("Show");
this.event = e;
form.setSpellEvent(e);
show();
}
public void actionPerformed(ActionEvent e) {
hide();
}
public void windowOpened(WindowEvent e) {
}
/** Cancel the event if the Dialog Close button is pressed*/
public void windowClosing(WindowEvent e) {
if (event != null)
event.cancel();
}
public void windowClosed(WindowEvent e) {
}
public void windowIconified(WindowEvent e) {
}
public void windowDeiconified(WindowEvent e) {
}
public void windowActivated(WindowEvent e) {
}
public void windowDeactivated(WindowEvent e) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy