2005-07-16 00:30:23 +00:00
|
|
|
/* BasicTextUI.java --
|
2006-03-10 21:46:48 +00:00
|
|
|
Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
2005-07-16 00:30:23 +00:00
|
|
|
|
|
|
|
This file is part of GNU Classpath.
|
|
|
|
|
|
|
|
GNU Classpath 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, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
GNU Classpath 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 GNU Classpath; see the file COPYING. If not, write to the
|
|
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
02110-1301 USA.
|
|
|
|
|
|
|
|
Linking this library statically or dynamically with other modules is
|
|
|
|
making a combined work based on this library. Thus, the terms and
|
|
|
|
conditions of the GNU General Public License cover the whole
|
|
|
|
combination.
|
|
|
|
|
|
|
|
As a special exception, the copyright holders of this library give you
|
|
|
|
permission to link this library with independent modules to produce an
|
|
|
|
executable, regardless of the license terms of these independent
|
|
|
|
modules, and to copy and distribute the resulting executable under
|
|
|
|
terms of your choice, provided that you also meet, for each linked
|
|
|
|
independent module, the terms and conditions of the license of that
|
|
|
|
module. An independent module is a module which is not derived from
|
|
|
|
or based on this library. If you modify this library, you may extend
|
|
|
|
this exception to your version of the library, but you are not
|
|
|
|
obligated to do so. If you do not wish to do so, delete this
|
|
|
|
exception statement from your version. */
|
|
|
|
|
|
|
|
|
|
|
|
package javax.swing.plaf.basic;
|
|
|
|
|
2005-11-15 23:20:01 +00:00
|
|
|
import java.awt.Color;
|
2005-07-16 00:30:23 +00:00
|
|
|
import java.awt.Container;
|
|
|
|
import java.awt.Dimension;
|
|
|
|
import java.awt.Graphics;
|
|
|
|
import java.awt.Insets;
|
|
|
|
import java.awt.Point;
|
|
|
|
import java.awt.Rectangle;
|
|
|
|
import java.awt.Shape;
|
|
|
|
import java.awt.event.FocusEvent;
|
|
|
|
import java.awt.event.FocusListener;
|
|
|
|
import java.beans.PropertyChangeEvent;
|
|
|
|
import java.beans.PropertyChangeListener;
|
|
|
|
|
|
|
|
import javax.swing.Action;
|
|
|
|
import javax.swing.ActionMap;
|
|
|
|
import javax.swing.InputMap;
|
|
|
|
import javax.swing.JComponent;
|
2006-01-17 18:09:40 +00:00
|
|
|
import javax.swing.KeyStroke;
|
2005-11-15 23:20:01 +00:00
|
|
|
import javax.swing.LookAndFeel;
|
|
|
|
import javax.swing.SwingConstants;
|
2005-07-16 00:30:23 +00:00
|
|
|
import javax.swing.SwingUtilities;
|
|
|
|
import javax.swing.UIManager;
|
|
|
|
import javax.swing.event.DocumentEvent;
|
|
|
|
import javax.swing.event.DocumentListener;
|
|
|
|
import javax.swing.plaf.ActionMapUIResource;
|
2006-01-17 18:09:40 +00:00
|
|
|
import javax.swing.plaf.InputMapUIResource;
|
2005-07-16 00:30:23 +00:00
|
|
|
import javax.swing.plaf.TextUI;
|
|
|
|
import javax.swing.plaf.UIResource;
|
2006-03-10 21:46:48 +00:00
|
|
|
import javax.swing.text.AbstractDocument;
|
2005-07-16 00:30:23 +00:00
|
|
|
import javax.swing.text.BadLocationException;
|
|
|
|
import javax.swing.text.Caret;
|
|
|
|
import javax.swing.text.DefaultCaret;
|
|
|
|
import javax.swing.text.DefaultEditorKit;
|
|
|
|
import javax.swing.text.DefaultHighlighter;
|
|
|
|
import javax.swing.text.Document;
|
|
|
|
import javax.swing.text.EditorKit;
|
|
|
|
import javax.swing.text.Element;
|
|
|
|
import javax.swing.text.Highlighter;
|
|
|
|
import javax.swing.text.JTextComponent;
|
|
|
|
import javax.swing.text.Keymap;
|
|
|
|
import javax.swing.text.Position;
|
2006-03-10 21:46:48 +00:00
|
|
|
import javax.swing.text.Utilities;
|
2005-07-16 00:30:23 +00:00
|
|
|
import javax.swing.text.View;
|
|
|
|
import javax.swing.text.ViewFactory;
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* The abstract base class from which the UI classes for Swings text
|
|
|
|
* components are derived. This provides most of the functionality for
|
|
|
|
* the UI classes.
|
|
|
|
*
|
|
|
|
* @author original author unknown
|
|
|
|
* @author Roman Kennke (roman@kennke.org)
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public abstract class BasicTextUI extends TextUI
|
|
|
|
implements ViewFactory
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* A {@link DefaultCaret} that implements {@link UIResource}.
|
|
|
|
*/
|
2005-11-15 23:20:01 +00:00
|
|
|
public static class BasicCaret extends DefaultCaret implements UIResource
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
|
|
|
public BasicCaret()
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
// Nothing to do here.
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* A {@link DefaultHighlighter} that implements {@link UIResource}.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public static class BasicHighlighter extends DefaultHighlighter
|
|
|
|
implements UIResource
|
|
|
|
{
|
|
|
|
public BasicHighlighter()
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
// Nothing to do here.
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
}
|
2005-09-23 21:31:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This view forms the root of the View hierarchy. However, it delegates
|
|
|
|
* most calls to another View which is the real root of the hierarchy.
|
|
|
|
* The purpose is to make sure that all Views in the hierarchy, including
|
|
|
|
* the (real) root have a well-defined parent to which they can delegate
|
|
|
|
* calls like {@link #preferenceChanged}, {@link #getViewFactory} and
|
|
|
|
* {@link #getContainer}.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
private class RootView extends View
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
/** The real root view. */
|
2005-07-16 00:30:23 +00:00
|
|
|
private View view;
|
2005-09-23 21:31:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new RootView.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public RootView()
|
|
|
|
{
|
|
|
|
super(null);
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Returns the ViewFactory for this RootView. If the current EditorKit
|
|
|
|
* provides a ViewFactory, this is used. Otherwise the TextUI itself
|
|
|
|
* is returned as a ViewFactory.
|
|
|
|
*
|
|
|
|
* @return the ViewFactory for this RootView
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public ViewFactory getViewFactory()
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
ViewFactory factory = null;
|
|
|
|
EditorKit editorKit = BasicTextUI.this.getEditorKit(getComponent());
|
|
|
|
factory = editorKit.getViewFactory();
|
|
|
|
if (factory == null)
|
|
|
|
factory = BasicTextUI.this;
|
|
|
|
return factory;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates that the preferences of one of the child view has changed.
|
|
|
|
* This calls revalidate on the text component.
|
|
|
|
*
|
2006-03-10 21:46:48 +00:00
|
|
|
* @param v the child view which's preference has changed
|
2005-09-23 21:31:04 +00:00
|
|
|
* @param width <code>true</code> if the width preference has changed
|
|
|
|
* @param height <code>true</code> if the height preference has changed
|
|
|
|
*/
|
2006-03-10 21:46:48 +00:00
|
|
|
public void preferenceChanged(View v, boolean width, boolean height)
|
2005-09-23 21:31:04 +00:00
|
|
|
{
|
|
|
|
textComponent.revalidate();
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Sets the real root view.
|
|
|
|
*
|
|
|
|
* @param v the root view to set
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public void setView(View v)
|
|
|
|
{
|
|
|
|
if (view != null)
|
2005-09-23 21:31:04 +00:00
|
|
|
view.setParent(null);
|
2005-07-16 00:30:23 +00:00
|
|
|
|
|
|
|
if (v != null)
|
2006-03-10 21:46:48 +00:00
|
|
|
v.setParent(this);
|
2005-07-16 00:30:23 +00:00
|
|
|
|
|
|
|
view = v;
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Returns the real root view, regardless of the index.
|
|
|
|
*
|
|
|
|
* @param index not used here
|
|
|
|
*
|
|
|
|
* @return the real root view, regardless of the index.
|
|
|
|
*/
|
|
|
|
public View getView(int index)
|
|
|
|
{
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns <code>1</code> since the RootView always contains one
|
|
|
|
* child, that is the real root of the View hierarchy.
|
|
|
|
*
|
|
|
|
* @return <code>1</code> since the RootView always contains one
|
|
|
|
* child, that is the real root of the View hierarchy
|
|
|
|
*/
|
|
|
|
public int getViewCount()
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
int count = 0;
|
2005-09-23 21:31:04 +00:00
|
|
|
if (view != null)
|
2006-03-10 21:46:48 +00:00
|
|
|
count = 1;
|
|
|
|
return count;
|
2005-09-23 21:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the <code>Container</code> that contains this view. This
|
|
|
|
* normally will be the text component that is managed by this TextUI.
|
|
|
|
*
|
|
|
|
* @return the <code>Container</code> that contains this view
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public Container getContainer()
|
|
|
|
{
|
|
|
|
return textComponent;
|
|
|
|
}
|
2005-09-23 21:31:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the preferred span along the specified <code>axis</code>.
|
|
|
|
* This is delegated to the real root view.
|
|
|
|
*
|
|
|
|
* @param axis the axis for which the preferred span is queried
|
|
|
|
*
|
|
|
|
* @return the preferred span along the axis
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public float getPreferredSpan(int axis)
|
|
|
|
{
|
|
|
|
if (view != null)
|
|
|
|
return view.getPreferredSpan(axis);
|
|
|
|
|
|
|
|
return Integer.MAX_VALUE;
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Paints the view. This is delegated to the real root view.
|
|
|
|
*
|
|
|
|
* @param g the <code>Graphics</code> context to paint to
|
|
|
|
* @param s the allocation for the View
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public void paint(Graphics g, Shape s)
|
|
|
|
{
|
|
|
|
if (view != null)
|
2006-03-10 21:46:48 +00:00
|
|
|
{
|
|
|
|
Rectangle b = s.getBounds();
|
|
|
|
view.setSize(b.width, b.height);
|
|
|
|
view.paint(g, s);
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps a position in the document into the coordinate space of the View.
|
|
|
|
* The output rectangle usually reflects the font height but has a width
|
|
|
|
* of zero.
|
|
|
|
*
|
|
|
|
* This is delegated to the real root view.
|
|
|
|
*
|
2005-11-15 23:20:01 +00:00
|
|
|
* @param position the position of the character in the model
|
2005-09-23 21:31:04 +00:00
|
|
|
* @param a the area that is occupied by the view
|
2005-11-15 23:20:01 +00:00
|
|
|
* @param bias either {@link Position.Bias#Forward} or
|
|
|
|
* {@link Position.Bias#Backward} depending on the preferred
|
2005-09-23 21:31:04 +00:00
|
|
|
* direction bias. If <code>null</code> this defaults to
|
|
|
|
* <code>Position.Bias.Forward</code>
|
|
|
|
*
|
|
|
|
* @return a rectangle that gives the location of the document position
|
|
|
|
* inside the view coordinate space
|
|
|
|
*
|
|
|
|
* @throws BadLocationException if <code>pos</code> is invalid
|
|
|
|
* @throws IllegalArgumentException if b is not one of the above listed
|
|
|
|
* valid values
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public Shape modelToView(int position, Shape a, Position.Bias bias)
|
|
|
|
throws BadLocationException
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
return view.modelToView(position, a, bias);
|
2005-09-23 21:31:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps coordinates from the <code>View</code>'s space into a position
|
|
|
|
* in the document model.
|
|
|
|
*
|
|
|
|
* @param x the x coordinate in the view space
|
|
|
|
* @param y the y coordinate in the view space
|
|
|
|
* @param a the allocation of this <code>View</code>
|
|
|
|
* @param b the bias to use
|
|
|
|
*
|
|
|
|
* @return the position in the document that corresponds to the screen
|
|
|
|
* coordinates <code>x, y</code>
|
|
|
|
*/
|
|
|
|
public int viewToModel(float x, float y, Shape a, Position.Bias[] b)
|
|
|
|
{
|
|
|
|
return view.viewToModel(x, y, a, b);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notification about text insertions. These are forwarded to the
|
|
|
|
* real root view.
|
|
|
|
*
|
|
|
|
* @param ev the DocumentEvent describing the change
|
|
|
|
* @param shape the current allocation of the view's display
|
|
|
|
* @param vf the ViewFactory to use for creating new Views
|
|
|
|
*/
|
|
|
|
public void insertUpdate(DocumentEvent ev, Shape shape, ViewFactory vf)
|
|
|
|
{
|
|
|
|
view.insertUpdate(ev, shape, vf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notification about text removals. These are forwarded to the
|
|
|
|
* real root view.
|
|
|
|
*
|
|
|
|
* @param ev the DocumentEvent describing the change
|
|
|
|
* @param shape the current allocation of the view's display
|
|
|
|
* @param vf the ViewFactory to use for creating new Views
|
|
|
|
*/
|
|
|
|
public void removeUpdate(DocumentEvent ev, Shape shape, ViewFactory vf)
|
|
|
|
{
|
|
|
|
view.removeUpdate(ev, shape, vf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notification about text changes. These are forwarded to the
|
|
|
|
* real root view.
|
|
|
|
*
|
|
|
|
* @param ev the DocumentEvent describing the change
|
|
|
|
* @param shape the current allocation of the view's display
|
|
|
|
* @param vf the ViewFactory to use for creating new Views
|
|
|
|
*/
|
|
|
|
public void changedUpdate(DocumentEvent ev, Shape shape, ViewFactory vf)
|
|
|
|
{
|
|
|
|
view.changedUpdate(ev, shape, vf);
|
|
|
|
}
|
2005-11-15 23:20:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the document position that is (visually) nearest to the given
|
|
|
|
* document position <code>pos</code> in the given direction <code>d</code>.
|
|
|
|
*
|
|
|
|
* @param pos the document position
|
|
|
|
* @param b the bias for <code>pos</code>
|
2006-01-17 18:09:40 +00:00
|
|
|
* @param a the allocation for the view
|
2005-11-15 23:20:01 +00:00
|
|
|
* @param d the direction, must be either {@link SwingConstants#NORTH},
|
|
|
|
* {@link SwingConstants#SOUTH}, {@link SwingConstants#WEST} or
|
|
|
|
* {@link SwingConstants#EAST}
|
|
|
|
* @param biasRet an array of {@link Position.Bias} that can hold at least
|
|
|
|
* one element, which is filled with the bias of the return position
|
|
|
|
* on method exit
|
|
|
|
*
|
|
|
|
* @return the document position that is (visually) nearest to the given
|
|
|
|
* document position <code>pos</code> in the given direction
|
|
|
|
* <code>d</code>
|
|
|
|
*
|
|
|
|
* @throws BadLocationException if <code>pos</code> is not a valid offset in
|
|
|
|
* the document model
|
|
|
|
*/
|
2006-01-17 18:09:40 +00:00
|
|
|
public int getNextVisualPositionFrom(int pos, Position.Bias b, Shape a,
|
|
|
|
int d, Position.Bias[] biasRet)
|
2005-11-15 23:20:01 +00:00
|
|
|
throws BadLocationException
|
|
|
|
{
|
2006-01-17 18:09:40 +00:00
|
|
|
return view.getNextVisualPositionFrom(pos, b, a, d, biasRet);
|
2005-11-15 23:20:01 +00:00
|
|
|
}
|
2006-03-10 21:46:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the startOffset of this view, which is always the beginning
|
|
|
|
* of the document.
|
|
|
|
*
|
|
|
|
* @return the startOffset of this view
|
|
|
|
*/
|
|
|
|
public int getStartOffset()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the endOffset of this view, which is always the end
|
|
|
|
* of the document.
|
|
|
|
*
|
|
|
|
* @return the endOffset of this view
|
|
|
|
*/
|
|
|
|
public int getEndOffset()
|
|
|
|
{
|
|
|
|
return getDocument().getLength();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the document associated with this view.
|
|
|
|
*
|
|
|
|
* @return the document associated with this view
|
|
|
|
*/
|
|
|
|
public Document getDocument()
|
|
|
|
{
|
|
|
|
return textComponent.getDocument();
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Receives notifications when properties of the text component change.
|
|
|
|
*/
|
2006-03-10 21:46:48 +00:00
|
|
|
private class PropertyChangeHandler implements PropertyChangeListener
|
2005-07-16 00:30:23 +00:00
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Notifies when a property of the text component changes.
|
|
|
|
*
|
|
|
|
* @param event the PropertyChangeEvent describing the change
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public void propertyChange(PropertyChangeEvent event)
|
|
|
|
{
|
|
|
|
if (event.getPropertyName().equals("document"))
|
2005-11-15 23:20:01 +00:00
|
|
|
{
|
2005-07-16 00:30:23 +00:00
|
|
|
// Document changed.
|
2005-11-15 23:20:01 +00:00
|
|
|
modelChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicTextUI.this.propertyChange(event);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Listens for changes on the underlying model and forwards notifications
|
|
|
|
* to the View. This also updates the caret position of the text component.
|
|
|
|
*
|
|
|
|
* TODO: Maybe this should somehow be handled through EditorKits
|
|
|
|
*/
|
|
|
|
class DocumentHandler implements DocumentListener
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Notification about a document change event.
|
|
|
|
*
|
|
|
|
* @param ev the DocumentEvent describing the change
|
|
|
|
*/
|
|
|
|
public void changedUpdate(DocumentEvent ev)
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
rootView.changedUpdate(ev, getVisibleEditorRect(),
|
2005-09-23 21:31:04 +00:00
|
|
|
rootView.getViewFactory());
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
2005-11-15 23:20:01 +00:00
|
|
|
|
2005-07-16 00:30:23 +00:00
|
|
|
/**
|
|
|
|
* Notification about a document insert event.
|
|
|
|
*
|
|
|
|
* @param ev the DocumentEvent describing the insertion
|
|
|
|
*/
|
|
|
|
public void insertUpdate(DocumentEvent ev)
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
rootView.insertUpdate(ev, getVisibleEditorRect(),
|
2005-09-23 21:31:04 +00:00
|
|
|
rootView.getViewFactory());
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notification about a document removal event.
|
|
|
|
*
|
|
|
|
* @param ev the DocumentEvent describing the removal
|
|
|
|
*/
|
|
|
|
public void removeUpdate(DocumentEvent ev)
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
rootView.removeUpdate(ev, getVisibleEditorRect(),
|
2005-09-23 21:31:04 +00:00
|
|
|
rootView.getViewFactory());
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* The EditorKit used by this TextUI.
|
|
|
|
*/
|
|
|
|
// FIXME: should probably be non-static.
|
2005-07-16 00:30:23 +00:00
|
|
|
static EditorKit kit = new DefaultEditorKit();
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* The root view.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
RootView rootView = new RootView();
|
2005-09-23 21:31:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The text component that we handle.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
JTextComponent textComponent;
|
2005-09-23 21:31:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Receives notification when the model changes.
|
|
|
|
*/
|
2006-03-10 21:46:48 +00:00
|
|
|
private PropertyChangeHandler updateHandler = new PropertyChangeHandler();
|
2005-07-16 00:30:23 +00:00
|
|
|
|
|
|
|
/** The DocumentEvent handler. */
|
|
|
|
DocumentHandler documentHandler = new DocumentHandler();
|
|
|
|
|
2005-11-15 23:20:01 +00:00
|
|
|
/**
|
|
|
|
* The standard background color. This is the color which is used to paint
|
|
|
|
* text in enabled text components.
|
|
|
|
*/
|
|
|
|
Color background;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The inactive background color. This is the color which is used to paint
|
|
|
|
* text in disabled text components.
|
|
|
|
*/
|
|
|
|
Color inactiveBackground;
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Creates a new <code>BasicTextUI</code> instance.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public BasicTextUI()
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
// Nothing to do here.
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Creates a {@link Caret} that should be installed into the text component.
|
|
|
|
*
|
|
|
|
* @return a caret that should be installed into the text component
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected Caret createCaret()
|
|
|
|
{
|
|
|
|
return new BasicCaret();
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Creates a {@link Highlighter} that should be installed into the text
|
|
|
|
* component.
|
|
|
|
*
|
|
|
|
* @return a <code>Highlighter</code> for the text component
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected Highlighter createHighlighter()
|
|
|
|
{
|
|
|
|
return new BasicHighlighter();
|
|
|
|
}
|
2005-09-23 21:31:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The text component that is managed by this UI.
|
|
|
|
*
|
|
|
|
* @return the text component that is managed by this UI
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected final JTextComponent getComponent()
|
|
|
|
{
|
|
|
|
return textComponent;
|
|
|
|
}
|
2005-09-23 21:31:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Installs this UI on the text component.
|
|
|
|
*
|
|
|
|
* @param c the text component on which to install the UI
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public void installUI(final JComponent c)
|
|
|
|
{
|
|
|
|
super.installUI(c);
|
|
|
|
c.setOpaque(true);
|
|
|
|
|
|
|
|
textComponent = (JTextComponent) c;
|
|
|
|
Document doc = textComponent.getDocument();
|
|
|
|
if (doc == null)
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
doc = getEditorKit(textComponent).createDefaultDocument();
|
|
|
|
textComponent.setDocument(doc);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
installDefaults();
|
|
|
|
installListeners();
|
|
|
|
installKeyboardActions();
|
2006-03-10 21:46:48 +00:00
|
|
|
|
|
|
|
// We need to trigger this so that the view hierarchy gets initialized.
|
|
|
|
modelChanged();
|
|
|
|
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Installs UI defaults on the text components.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected void installDefaults()
|
|
|
|
{
|
|
|
|
Caret caret = textComponent.getCaret();
|
|
|
|
if (caret == null)
|
|
|
|
{
|
|
|
|
caret = createCaret();
|
|
|
|
textComponent.setCaret(caret);
|
|
|
|
}
|
|
|
|
|
|
|
|
Highlighter highlighter = textComponent.getHighlighter();
|
|
|
|
if (highlighter == null)
|
|
|
|
textComponent.setHighlighter(createHighlighter());
|
|
|
|
|
|
|
|
String prefix = getPropertyPrefix();
|
2005-11-15 23:20:01 +00:00
|
|
|
LookAndFeel.installColorsAndFont(textComponent, prefix + ".background",
|
|
|
|
prefix + ".foreground", prefix + ".font");
|
|
|
|
LookAndFeel.installBorder(textComponent, prefix + ".border");
|
|
|
|
textComponent.setMargin(UIManager.getInsets(prefix + ".margin"));
|
|
|
|
|
|
|
|
caret.setBlinkRate(UIManager.getInt(prefix + ".caretBlinkRate"));
|
|
|
|
|
|
|
|
// Fetch the colors for enabled/disabled text components.
|
|
|
|
background = UIManager.getColor(prefix + ".background");
|
|
|
|
inactiveBackground = UIManager.getColor(prefix + ".inactiveBackground");
|
|
|
|
textComponent.setDisabledTextColor
|
|
|
|
(UIManager.getColor(prefix + ".inactiveForeground"));
|
|
|
|
textComponent.setSelectedTextColor(UIManager.getColor(prefix + ".selectionForeground"));
|
|
|
|
textComponent.setSelectionColor(UIManager.getColor(prefix + ".selectionBackground"));
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* This FocusListener triggers repaints on focus shift.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
private FocusListener focuslistener = new FocusListener() {
|
|
|
|
public void focusGained(FocusEvent e)
|
|
|
|
{
|
|
|
|
textComponent.repaint();
|
|
|
|
}
|
|
|
|
public void focusLost(FocusEvent e)
|
|
|
|
{
|
|
|
|
textComponent.repaint();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Install all listeners on the text component.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected void installListeners()
|
|
|
|
{
|
|
|
|
textComponent.addFocusListener(focuslistener);
|
2006-03-10 21:46:48 +00:00
|
|
|
textComponent.addPropertyChangeListener(updateHandler);
|
2005-07-16 00:30:23 +00:00
|
|
|
installDocumentListeners();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Installs the document listeners on the textComponent's model.
|
|
|
|
*/
|
|
|
|
private void installDocumentListeners()
|
|
|
|
{
|
|
|
|
Document doc = textComponent.getDocument();
|
|
|
|
if (doc != null)
|
|
|
|
doc.addDocumentListener(documentHandler);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the name of the keymap for this type of TextUI.
|
|
|
|
*
|
|
|
|
* This is implemented so that the classname of this TextUI
|
|
|
|
* without the package prefix is returned. This way subclasses
|
|
|
|
* don't have to override this method.
|
|
|
|
*
|
|
|
|
* @return the name of the keymap for this TextUI
|
|
|
|
*/
|
|
|
|
protected String getKeymapName()
|
|
|
|
{
|
|
|
|
String fullClassName = getClass().getName();
|
|
|
|
int index = fullClassName.lastIndexOf('.');
|
|
|
|
String className = fullClassName.substring(index + 1);
|
|
|
|
return className;
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Creates the {@link Keymap} that is installed on the text component.
|
|
|
|
*
|
|
|
|
* @return the {@link Keymap} that is installed on the text component
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected Keymap createKeymap()
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
// FIXME: It seems to me that this method implementation is wrong. It seems
|
|
|
|
// to fetch the focusInputMap and transform it to the KeyBinding/Keymap
|
|
|
|
// implemenation. I would think that it should be done the other way,
|
|
|
|
// fetching the keybindings (from prefix + ".bindings") and transform
|
|
|
|
// it to the newer InputMap/ActionMap implementation.
|
2006-01-17 18:09:40 +00:00
|
|
|
JTextComponent.KeyBinding[] bindings = null;
|
2005-07-16 00:30:23 +00:00
|
|
|
String prefix = getPropertyPrefix();
|
2006-01-17 18:09:40 +00:00
|
|
|
InputMapUIResource m = (InputMapUIResource) UIManager.get(prefix + ".focusInputMap");
|
|
|
|
if (m != null)
|
|
|
|
{
|
|
|
|
KeyStroke[] keys = m.keys();
|
|
|
|
int len = keys.length;
|
|
|
|
bindings = new JTextComponent.KeyBinding[len];
|
|
|
|
for (int i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
KeyStroke curr = keys[i];
|
|
|
|
bindings[i] = new JTextComponent.KeyBinding(curr,
|
|
|
|
(String) m.get(curr));
|
|
|
|
}
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
if (bindings == null)
|
2006-03-10 21:46:48 +00:00
|
|
|
bindings = new JTextComponent.KeyBinding[0];
|
2005-07-16 00:30:23 +00:00
|
|
|
|
|
|
|
Keymap km = JTextComponent.addKeymap(getKeymapName(),
|
|
|
|
JTextComponent.getKeymap(JTextComponent.DEFAULT_KEYMAP));
|
|
|
|
JTextComponent.loadKeymap(km, bindings, textComponent.getActions());
|
|
|
|
return km;
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Installs the keyboard actions on the text components.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected void installKeyboardActions()
|
2006-01-17 18:09:40 +00:00
|
|
|
{
|
|
|
|
// load key bindings for the older interface
|
2005-07-16 00:30:23 +00:00
|
|
|
Keymap km = JTextComponent.getKeymap(getKeymapName());
|
|
|
|
if (km == null)
|
|
|
|
km = createKeymap();
|
|
|
|
textComponent.setKeymap(km);
|
|
|
|
|
|
|
|
// load any bindings for the newer InputMap / ActionMap interface
|
2006-01-17 18:09:40 +00:00
|
|
|
SwingUtilities.replaceUIInputMap(textComponent, JComponent.WHEN_FOCUSED,
|
2005-07-16 00:30:23 +00:00
|
|
|
getInputMap(JComponent.WHEN_FOCUSED));
|
2006-01-17 18:09:40 +00:00
|
|
|
SwingUtilities.replaceUIActionMap(textComponent, createActionMap());
|
|
|
|
|
|
|
|
ActionMap parentActionMap = new ActionMapUIResource();
|
|
|
|
Action[] actions = textComponent.getActions();
|
|
|
|
for (int j = 0; j < actions.length; j++)
|
|
|
|
{
|
|
|
|
Action currAction = actions[j];
|
|
|
|
parentActionMap.put(currAction.getValue(Action.NAME), currAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
SwingUtilities.replaceUIActionMap(textComponent, parentActionMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an ActionMap to be installed on the text component.
|
|
|
|
*
|
|
|
|
* @return an ActionMap to be installed on the text component
|
|
|
|
*/
|
|
|
|
ActionMap createActionMap()
|
|
|
|
{
|
|
|
|
Action[] actions = textComponent.getActions();
|
|
|
|
ActionMap am = new ActionMapUIResource();
|
|
|
|
for (int i = 0; i < actions.length; ++i)
|
|
|
|
{
|
|
|
|
String name = (String) actions[i].getValue(Action.NAME);
|
|
|
|
if (name != null)
|
|
|
|
am.put(name, actions[i]);
|
|
|
|
}
|
|
|
|
return am;
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Gets the input map for the specified <code>condition</code>.
|
|
|
|
*
|
|
|
|
* @param condition the condition for the InputMap
|
|
|
|
*
|
|
|
|
* @return the InputMap for the specified condition
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
InputMap getInputMap(int condition)
|
|
|
|
{
|
|
|
|
String prefix = getPropertyPrefix();
|
|
|
|
switch (condition)
|
|
|
|
{
|
|
|
|
case JComponent.WHEN_IN_FOCUSED_WINDOW:
|
|
|
|
// FIXME: is this the right string? nobody seems to use it.
|
2005-11-18 00:59:33 +00:00
|
|
|
return (InputMap) UIManager.get(prefix + ".windowInputMap");
|
2005-07-16 00:30:23 +00:00
|
|
|
case JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT:
|
2005-11-18 00:59:33 +00:00
|
|
|
return (InputMap) UIManager.get(prefix + ".ancestorInputMap");
|
2005-07-16 00:30:23 +00:00
|
|
|
default:
|
|
|
|
case JComponent.WHEN_FOCUSED:
|
2005-11-18 00:59:33 +00:00
|
|
|
return (InputMap) UIManager.get(prefix + ".focusInputMap");
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Uninstalls this TextUI from the text component.
|
|
|
|
*
|
|
|
|
* @param component the text component to uninstall the UI from
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public void uninstallUI(final JComponent component)
|
|
|
|
{
|
|
|
|
super.uninstallUI(component);
|
|
|
|
rootView.setView(null);
|
|
|
|
|
|
|
|
uninstallDefaults();
|
|
|
|
uninstallListeners();
|
|
|
|
uninstallKeyboardActions();
|
|
|
|
|
|
|
|
textComponent = null;
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Uninstalls all default properties that have previously been installed by
|
|
|
|
* this UI.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected void uninstallDefaults()
|
|
|
|
{
|
|
|
|
// Do nothing here.
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Uninstalls all listeners that have previously been installed by
|
|
|
|
* this UI.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected void uninstallListeners()
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
textComponent.removePropertyChangeListener(updateHandler);
|
2005-07-16 00:30:23 +00:00
|
|
|
textComponent.removeFocusListener(focuslistener);
|
2005-11-15 23:20:01 +00:00
|
|
|
textComponent.getDocument().removeDocumentListener(documentHandler);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Uninstalls all keyboard actions that have previously been installed by
|
|
|
|
* this UI.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected void uninstallKeyboardActions()
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
// FIXME: Uninstall keyboard actions here.
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
2005-09-23 21:31:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the property prefix by which the text component's UIDefaults
|
|
|
|
* are looked up.
|
|
|
|
*
|
|
|
|
* @return the property prefix by which the text component's UIDefaults
|
|
|
|
* are looked up
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected abstract String getPropertyPrefix();
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Returns the preferred size of the text component.
|
|
|
|
*
|
|
|
|
* @param c not used here
|
|
|
|
*
|
|
|
|
* @return the preferred size of the text component
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public Dimension getPreferredSize(JComponent c)
|
|
|
|
{
|
|
|
|
View v = getRootView(textComponent);
|
|
|
|
|
|
|
|
float w = v.getPreferredSpan(View.X_AXIS);
|
|
|
|
float h = v.getPreferredSpan(View.Y_AXIS);
|
|
|
|
|
2006-03-10 21:46:48 +00:00
|
|
|
Insets i = c.getInsets();
|
|
|
|
return new Dimension((int) w + i.left + i.right,
|
|
|
|
(int) h + i.top + i.bottom);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the maximum size for text components that use this UI.
|
|
|
|
*
|
|
|
|
* This returns (Integer.MAX_VALUE, Integer.MAX_VALUE).
|
|
|
|
*
|
2005-09-23 21:31:04 +00:00
|
|
|
* @param c not used here
|
|
|
|
*
|
2005-07-16 00:30:23 +00:00
|
|
|
* @return the maximum size for text components that use this UI
|
|
|
|
*/
|
|
|
|
public Dimension getMaximumSize(JComponent c)
|
|
|
|
{
|
|
|
|
// Sun's implementation returns Integer.MAX_VALUE here, so do we.
|
|
|
|
return new Dimension(Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
|
}
|
|
|
|
|
2005-11-15 23:20:01 +00:00
|
|
|
/**
|
|
|
|
* Returns the minimum size for text components. This returns the size
|
|
|
|
* of the component's insets.
|
|
|
|
*
|
|
|
|
* @return the minimum size for text components
|
|
|
|
*/
|
|
|
|
public Dimension getMinimumSize(JComponent c)
|
|
|
|
{
|
|
|
|
Insets i = c.getInsets();
|
|
|
|
return new Dimension(i.left + i.right, i.top + i.bottom);
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* Paints the text component. This acquires a read lock on the model and then
|
|
|
|
* calls {@link #paintSafely(Graphics)} in order to actually perform the
|
|
|
|
* painting.
|
2005-09-23 21:31:04 +00:00
|
|
|
*
|
|
|
|
* @param g the <code>Graphics</code> context to paint to
|
|
|
|
* @param c not used here
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public final void paint(Graphics g, JComponent c)
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
Document doc = textComponent.getDocument();
|
|
|
|
if (doc instanceof AbstractDocument)
|
|
|
|
{
|
|
|
|
AbstractDocument aDoc = (AbstractDocument) doc;
|
|
|
|
aDoc.readLock();
|
|
|
|
}
|
|
|
|
|
|
|
|
paintSafely(g);
|
|
|
|
}
|
|
|
|
finally
|
|
|
|
{
|
|
|
|
Document doc = textComponent.getDocument();
|
|
|
|
if (doc instanceof AbstractDocument)
|
|
|
|
{
|
|
|
|
AbstractDocument aDoc = (AbstractDocument) doc;
|
|
|
|
aDoc.readUnlock();
|
|
|
|
}
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
2006-03-10 21:46:48 +00:00
|
|
|
* This paints the text component while beeing sure that the model is not
|
|
|
|
* modified while painting.
|
|
|
|
*
|
|
|
|
* The following is performed in this order:
|
|
|
|
* <ol>
|
|
|
|
* <li>If the text component is opaque, the background is painted by
|
|
|
|
* calling {@link #paintBackground(Graphics)}.</li>
|
|
|
|
* <li>If there is a highlighter, the highlighter is painted.</li>
|
|
|
|
* <li>The view hierarchy is painted.</li>
|
|
|
|
* <li>The Caret is painter.</li>
|
|
|
|
* </ol>
|
2005-09-23 21:31:04 +00:00
|
|
|
*
|
|
|
|
* @param g the <code>Graphics</code> context to paint to
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected void paintSafely(Graphics g)
|
|
|
|
{
|
|
|
|
Caret caret = textComponent.getCaret();
|
|
|
|
Highlighter highlighter = textComponent.getHighlighter();
|
2005-11-15 23:20:01 +00:00
|
|
|
|
2005-07-16 00:30:23 +00:00
|
|
|
if (textComponent.isOpaque())
|
|
|
|
paintBackground(g);
|
2005-11-15 23:20:01 +00:00
|
|
|
|
2006-03-10 21:46:48 +00:00
|
|
|
// Try painting with the highlighter without checking whether there
|
|
|
|
// is a selection because a highlighter can be used to do more than
|
|
|
|
// marking selected text.
|
|
|
|
if (highlighter != null)
|
|
|
|
{
|
|
|
|
// Handle restoring of the color here to prevent
|
|
|
|
// drawing problems when the Highlighter implementor
|
|
|
|
// forgets to restore it.
|
|
|
|
Color oldColor = g.getColor();
|
|
|
|
highlighter.paint(g);
|
|
|
|
g.setColor(oldColor);
|
|
|
|
}
|
|
|
|
|
2005-07-16 00:30:23 +00:00
|
|
|
|
|
|
|
rootView.paint(g, getVisibleEditorRect());
|
|
|
|
|
|
|
|
if (caret != null && textComponent.hasFocus())
|
|
|
|
caret.paint(g);
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Paints the background of the text component.
|
|
|
|
*
|
|
|
|
* @param g the <code>Graphics</code> context to paint to
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected void paintBackground(Graphics g)
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
Color old = g.getColor();
|
|
|
|
g.setColor(textComponent.getBackground());
|
|
|
|
g.fillRect(0, 0, textComponent.getWidth(), textComponent.getHeight());
|
|
|
|
g.setColor(old);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Overridden for better control over background painting. This now simply
|
|
|
|
* calls {@link #paint} and this delegates the background painting to
|
|
|
|
* {@link #paintBackground}.
|
|
|
|
*
|
|
|
|
* @param g the graphics to use
|
|
|
|
* @param c the component to be painted
|
|
|
|
*/
|
|
|
|
public void update(Graphics g, JComponent c)
|
|
|
|
{
|
|
|
|
paint(g, c);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Marks the specified range inside the text component's model as
|
|
|
|
* damaged and queues a repaint request.
|
|
|
|
*
|
|
|
|
* @param t the text component
|
|
|
|
* @param p0 the start location inside the document model of the range that
|
|
|
|
* is damaged
|
|
|
|
* @param p1 the end location inside the document model of the range that
|
|
|
|
* is damaged
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public void damageRange(JTextComponent t, int p0, int p1)
|
|
|
|
{
|
|
|
|
damageRange(t, p0, p1, null, null);
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Marks the specified range inside the text component's model as
|
|
|
|
* damaged and queues a repaint request. This variant of this method
|
|
|
|
* allows a {@link Position.Bias} object to be specified for the start
|
|
|
|
* and end location of the range.
|
|
|
|
*
|
|
|
|
* @param t the text component
|
|
|
|
* @param p0 the start location inside the document model of the range that
|
|
|
|
* is damaged
|
|
|
|
* @param p1 the end location inside the document model of the range that
|
|
|
|
* is damaged
|
|
|
|
* @param firstBias the bias for the start location
|
|
|
|
* @param secondBias the bias for the end location
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public void damageRange(JTextComponent t, int p0, int p1,
|
|
|
|
Position.Bias firstBias, Position.Bias secondBias)
|
|
|
|
{
|
2006-03-10 21:46:48 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
// Limit p0 and p1 to sane values to prevent unfriendly
|
|
|
|
// BadLocationExceptions. This makes it possible for the highlighter
|
|
|
|
// to send us illegal values which can happen when a large number
|
|
|
|
// of selected characters are removed (eg. by pressing delete
|
|
|
|
// or backspace).
|
|
|
|
// The reference implementation does not throw an exception, too.
|
|
|
|
p0 = Math.min(p0, t.getDocument().getLength());
|
|
|
|
p1 = Math.min(p1, t.getDocument().getLength());
|
|
|
|
|
|
|
|
Rectangle l1 = modelToView(t, p0, firstBias);
|
|
|
|
Rectangle l2 = modelToView(t, p1, secondBias);
|
|
|
|
if (l1.y == l2.y)
|
|
|
|
t.repaint(l1.union(l2));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// The two rectangles lie on different lines and we need a
|
|
|
|
// different algorithm to calculate the damaged area:
|
|
|
|
// 1. The line of p0 is damaged from the position of p0
|
|
|
|
// to the right border.
|
|
|
|
// 2. All lines between the ones where p0 and p1 lie on
|
|
|
|
// are completely damaged. Use the allocation area to find
|
|
|
|
// out the bounds.
|
|
|
|
// 3. The final line is damaged from the left bound to the
|
|
|
|
// position of p1.
|
|
|
|
Insets insets = t.getInsets();
|
|
|
|
|
|
|
|
// Damage first line until the end.
|
|
|
|
l1.width = insets.right + t.getWidth() - l1.x;
|
|
|
|
t.repaint(l1);
|
|
|
|
|
|
|
|
// Note: Utilities.getPositionBelow() may return the offset
|
|
|
|
// that was put in. In that case there is no next line and
|
|
|
|
// we should stop searching for one.
|
|
|
|
|
|
|
|
int posBelow = Utilities.getPositionBelow(t, p0, l1.x);
|
|
|
|
if (posBelow < p1 && posBelow != -1 && posBelow != p0)
|
|
|
|
{
|
|
|
|
// Take the rectangle of the offset we just found and grow it
|
|
|
|
// to the maximum width. Retain y because this is our start
|
|
|
|
// height.
|
|
|
|
Rectangle grow = modelToView(t, posBelow);
|
|
|
|
grow.x = insets.left;
|
|
|
|
grow.width = t.getWidth() + insets.right;
|
|
|
|
|
|
|
|
// Find further lines which have to be damaged completely.
|
|
|
|
int nextPosBelow = posBelow;
|
|
|
|
while (nextPosBelow < p1 && nextPosBelow != -1 && posBelow != nextPosBelow)
|
|
|
|
{
|
|
|
|
posBelow = nextPosBelow;
|
|
|
|
nextPosBelow = Utilities.getPositionBelow(t, posBelow, l1.x);
|
|
|
|
}
|
|
|
|
// Now posBelow is an offset on the last line which has to be damaged
|
|
|
|
// completely. (newPosBelow is on the same line as p1)
|
|
|
|
|
|
|
|
// Retrieve the rectangle of posBelow and use its y and height
|
|
|
|
// value to calculate the final height of the multiple line
|
|
|
|
// spanning rectangle.
|
|
|
|
Rectangle end = modelToView(t, posBelow);
|
|
|
|
grow.height = end.y + end.height - grow.y;
|
|
|
|
|
|
|
|
// Mark that area as damage.
|
|
|
|
t.repaint(grow);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Damage last line from its beginning to the position of p1.
|
|
|
|
l2.width += l2.x;
|
|
|
|
l2.x = insets.left;
|
|
|
|
t.repaint(l2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (BadLocationException ex)
|
|
|
|
{
|
|
|
|
AssertionError err = new AssertionError("Unexpected bad location");
|
|
|
|
err.initCause(ex);
|
|
|
|
throw err;
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Returns the {@link EditorKit} used for the text component that is managed
|
|
|
|
* by this UI.
|
|
|
|
*
|
|
|
|
* @param t the text component
|
|
|
|
*
|
|
|
|
* @return the {@link EditorKit} used for the text component that is managed
|
|
|
|
* by this UI
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public EditorKit getEditorKit(JTextComponent t)
|
|
|
|
{
|
|
|
|
return kit;
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Gets the next position inside the document model that is visible on
|
|
|
|
* screen, starting from <code>pos</code>.
|
|
|
|
*
|
|
|
|
* @param t the text component
|
|
|
|
* @param pos the start positionn
|
|
|
|
* @param b the bias for pos
|
|
|
|
* @param direction the search direction
|
|
|
|
* @param biasRet filled by the method to indicate the bias of the return
|
|
|
|
* value
|
|
|
|
*
|
|
|
|
* @return the next position inside the document model that is visible on
|
|
|
|
* screen
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public int getNextVisualPositionFrom(JTextComponent t, int pos,
|
|
|
|
Position.Bias b, int direction,
|
|
|
|
Position.Bias[] biasRet)
|
|
|
|
throws BadLocationException
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
return 0; // TODO: Implement me.
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Returns the root {@link View} of a text component.
|
|
|
|
*
|
|
|
|
* @return the root {@link View} of a text component
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public View getRootView(JTextComponent t)
|
|
|
|
{
|
|
|
|
return rootView;
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Maps a position in the document into the coordinate space of the View.
|
|
|
|
* The output rectangle usually reflects the font height but has a width
|
2005-11-15 23:20:01 +00:00
|
|
|
* of zero. A bias of {@link Position.Bias#Forward} is used in this method.
|
2005-09-23 21:31:04 +00:00
|
|
|
*
|
2005-11-15 23:20:01 +00:00
|
|
|
* @param t the text component
|
2005-09-23 21:31:04 +00:00
|
|
|
* @param pos the position of the character in the model
|
|
|
|
*
|
|
|
|
* @return a rectangle that gives the location of the document position
|
|
|
|
* inside the view coordinate space
|
|
|
|
*
|
|
|
|
* @throws BadLocationException if <code>pos</code> is invalid
|
|
|
|
* @throws IllegalArgumentException if b is not one of the above listed
|
|
|
|
* valid values
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public Rectangle modelToView(JTextComponent t, int pos)
|
|
|
|
throws BadLocationException
|
|
|
|
{
|
|
|
|
return modelToView(t, pos, Position.Bias.Forward);
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Maps a position in the document into the coordinate space of the View.
|
|
|
|
* The output rectangle usually reflects the font height but has a width
|
|
|
|
* of zero.
|
|
|
|
*
|
2005-11-15 23:20:01 +00:00
|
|
|
* @param t the text component
|
2005-09-23 21:31:04 +00:00
|
|
|
* @param pos the position of the character in the model
|
2005-11-15 23:20:01 +00:00
|
|
|
* @param bias either {@link Position.Bias#Forward} or
|
|
|
|
* {@link Position.Bias#Backward} depending on the preferred
|
2005-09-23 21:31:04 +00:00
|
|
|
* direction bias. If <code>null</code> this defaults to
|
|
|
|
* <code>Position.Bias.Forward</code>
|
|
|
|
*
|
|
|
|
* @return a rectangle that gives the location of the document position
|
|
|
|
* inside the view coordinate space
|
|
|
|
*
|
|
|
|
* @throws BadLocationException if <code>pos</code> is invalid
|
|
|
|
* @throws IllegalArgumentException if b is not one of the above listed
|
|
|
|
* valid values
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public Rectangle modelToView(JTextComponent t, int pos, Position.Bias bias)
|
|
|
|
throws BadLocationException
|
|
|
|
{
|
|
|
|
return rootView.modelToView(pos, getVisibleEditorRect(), bias).getBounds();
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Maps a point in the <code>View</code> coordinate space to a position
|
|
|
|
* inside a document model.
|
|
|
|
*
|
|
|
|
* @param t the text component
|
|
|
|
* @param pt the point to be mapped
|
|
|
|
*
|
|
|
|
* @return the position inside the document model that corresponds to
|
|
|
|
* <code>pt</code>
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public int viewToModel(JTextComponent t, Point pt)
|
|
|
|
{
|
|
|
|
return viewToModel(t, pt, null);
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Maps a point in the <code>View</code> coordinate space to a position
|
|
|
|
* inside a document model.
|
|
|
|
*
|
|
|
|
* @param t the text component
|
|
|
|
* @param pt the point to be mapped
|
|
|
|
* @param biasReturn filled in by the method to indicate the bias of the
|
|
|
|
* return value
|
|
|
|
*
|
|
|
|
* @return the position inside the document model that corresponds to
|
|
|
|
* <code>pt</code>
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public int viewToModel(JTextComponent t, Point pt, Position.Bias[] biasReturn)
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
return rootView.viewToModel(pt.x, pt.y, getVisibleEditorRect(), biasReturn);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Creates a {@link View} for the specified {@link Element}.
|
|
|
|
*
|
|
|
|
* @param elem the <code>Element</code> to create a <code>View</code> for
|
|
|
|
*
|
|
|
|
* @see ViewFactory
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public View create(Element elem)
|
|
|
|
{
|
|
|
|
// Subclasses have to implement this to get this functionality.
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Creates a {@link View} for the specified {@link Element}.
|
|
|
|
*
|
|
|
|
* @param elem the <code>Element</code> to create a <code>View</code> for
|
|
|
|
* @param p0 the start offset
|
|
|
|
* @param p1 the end offset
|
|
|
|
*
|
|
|
|
* @see ViewFactory
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
public View create(Element elem, int p0, int p1)
|
|
|
|
{
|
|
|
|
// Subclasses have to implement this to get this functionality.
|
|
|
|
return null;
|
|
|
|
}
|
2005-09-23 21:31:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the allocation to give the root view.
|
|
|
|
*
|
|
|
|
* @return the allocation to give the root view
|
|
|
|
*
|
|
|
|
* @specnote The allocation has nothing to do with visibility. According
|
|
|
|
* to the specs the naming of this method is unfortunate and
|
|
|
|
* has historical reasons
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected Rectangle getVisibleEditorRect()
|
|
|
|
{
|
|
|
|
int width = textComponent.getWidth();
|
|
|
|
int height = textComponent.getHeight();
|
|
|
|
|
|
|
|
if (width <= 0 || height <= 0)
|
2005-11-15 23:20:01 +00:00
|
|
|
return new Rectangle(0, 0, 0, 0);
|
2005-07-16 00:30:23 +00:00
|
|
|
|
|
|
|
Insets insets = textComponent.getInsets();
|
|
|
|
return new Rectangle(insets.left, insets.top,
|
2005-11-15 23:20:01 +00:00
|
|
|
width - insets.left - insets.right,
|
|
|
|
height - insets.top - insets.bottom);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Sets the root view for the text component.
|
|
|
|
*
|
|
|
|
* @param view the <code>View</code> to be set as root view
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected final void setView(View view)
|
|
|
|
{
|
|
|
|
rootView.setView(view);
|
2005-11-15 23:20:01 +00:00
|
|
|
textComponent.revalidate();
|
|
|
|
textComponent.repaint();
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Indicates that the model of a text component has changed. This
|
|
|
|
* triggers a rebuild of the view hierarchy.
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
protected void modelChanged()
|
|
|
|
{
|
|
|
|
if (textComponent == null || rootView == null)
|
|
|
|
return;
|
|
|
|
ViewFactory factory = rootView.getViewFactory();
|
|
|
|
if (factory == null)
|
|
|
|
return;
|
|
|
|
Document doc = textComponent.getDocument();
|
|
|
|
if (doc == null)
|
|
|
|
return;
|
|
|
|
installDocumentListeners();
|
|
|
|
Element elem = doc.getDefaultRootElement();
|
|
|
|
if (elem == null)
|
|
|
|
return;
|
2005-09-23 21:31:04 +00:00
|
|
|
View view = factory.create(elem);
|
|
|
|
setView(view);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
2005-11-15 23:20:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Receives notification whenever one of the text component's bound
|
|
|
|
* properties changes. This default implementation does nothing.
|
|
|
|
* It is a hook that enables subclasses to react to property changes
|
|
|
|
* on the text component.
|
|
|
|
*
|
|
|
|
* @param ev the property change event
|
|
|
|
*/
|
|
|
|
protected void propertyChange(PropertyChangeEvent ev)
|
|
|
|
{
|
|
|
|
// The default implementation does nothing.
|
|
|
|
}
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|