/* 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 java.awt.Dialog; import java.awt.Frame; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowEvent; import java.awt.event.WindowListener; import javax.swing.JDialog; import com.swabunga.spell.event.SpellCheckEvent; /** * Implementation of a spell check dialog. * * @author Jason Height (jheight@chariot.net.au) */ 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(); } @Override public void actionPerformed(ActionEvent e) { hide(); } @Override public void windowOpened(WindowEvent e) { } /** Cancel the event if the Dialog Close button is pressed */ @Override public void windowClosing(WindowEvent e) { if (event != null) { event.cancel(); } } @Override public void windowClosed(WindowEvent e) { } @Override public void windowIconified(WindowEvent e) { } @Override public void windowDeiconified(WindowEvent e) { } @Override public void windowActivated(WindowEvent e) { } @Override public void windowDeactivated(WindowEvent e) { } }