|
Jazzy example source code file (JSpellDialog.java)
The Jazzy JSpellDialog.java source code/* 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 (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(); } 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) { } } Other Jazzy examples (source code examples)Here is a short list of links related to this Jazzy JSpellDialog.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 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.