List of usage examples for javax.swing.event UndoableEditListener interface-usage
From source file UndoableTextArea.java
class UndoableTextArea extends JTextArea implements UndoableEditListener, FocusListener, KeyListener { private UndoManager m_undoManager; public UndoableTextArea() { this(new String()); }
From source file net.pandoragames.far.ui.swing.component.UndoHistory.java
/**
* An alternative UndoManager. Groups undoes of similar type
* together as to avoid "single character" undos. Slightly more handy
* than <code>javax.swing.undo.CompoundEdit</code>. This mechanism is
* based on the assumption that UndoableEdits are actually instances of
* <code>javax.swing.text.AbstractDocument.DefaultDocumentEvent</code>.
From source file org.executequery.gui.text.TextUndoManager.java
/**
* Undo manager for text components.
*
* @author Takis Diakoumis
* @version $Revision: 1487 $
* @date $Date: 2015-08-23 22:21:42 +1000 (Sun, 23 Aug 2015) $
From source file ca.sqlpower.enterprise.DataSourceCollectionUpdater.java
public abstract class DataSourceCollectionUpdater implements DatabaseListChangeListener, PropertyChangeListener, UndoableEditListener { protected final ProjectLocation projectLocation; /**
From source file net.java.sip.communicator.impl.gui.main.chat.ChatWritePanel.java
/**
* The <tt>ChatWritePanel</tt> is the panel, where user writes her messages.
* It is located at the bottom of the split in the <tt>ChatPanel</tt> and it
* contains an editor, where user writes the text.
*
* @author Yana Stamcheva
From source file org.jcurl.demo.tactics.JCurlShotPlanner.java
/**
* Makes heavy use of the <a
* href="https://appframework.dev.java.net/intro/index.html">Swing Application
* Framework</a>.
*
* @author <a href="mailto:m@jcurl.org">M. Rohrmoser </a>
From source file com.projity.pm.graphic.frames.DocumentFrame.java
/** * */ public class DocumentFrame extends NamedFrame implements SelectionNodeListener, UndoableEditListener, MenuActionConstants, ObjectEvent.Listener, ProjectListener, SavableToWorkspace, ObjectSelectionListener {
From source file com.mindcognition.mindraider.ui.swing.concept.annotation.renderer.AbstractTextAnnotationRenderer.java
class EditorUndoListner implements UndoableEditListener { private UndoManager undoManager; private TextAnnotationToolbar toolbar; public EditorUndoListner(UndoManager undoManager, TextAnnotationToolbar toolbar) {