2005-07-16 00:30:23 +00:00
|
|
|
/* BasicTextUI.java --
|
|
|
|
Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
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;
|
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;
|
|
|
|
import javax.swing.plaf.TextUI;
|
|
|
|
import javax.swing.plaf.UIResource;
|
|
|
|
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;
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* @param view the child view which's preference has changed
|
|
|
|
* @param width <code>true</code> if the width preference has changed
|
|
|
|
* @param height <code>true</code> if the height preference has changed
|
|
|
|
*/
|
|
|
|
public void preferenceChanged(View view, boolean width, boolean height)
|
|
|
|
{
|
|
|
|
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)
|
2005-09-23 21:31:04 +00:00
|
|
|
v.setParent(null);
|
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()
|
|
|
|
{
|
|
|
|
if (view != null)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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)
|
2005-11-15 23:20:01 +00:00
|
|
|
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
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
return ((View) view).modelToView(position, a, bias);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 c the text component
|
|
|
|
* @param pos the document position
|
|
|
|
* @param b the bias for <code>pos</code>
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
public int getNextVisualPositionFrom(JTextComponent c, int pos,
|
|
|
|
Position.Bias b, int d,
|
|
|
|
Position.Bias[] biasRet)
|
|
|
|
throws BadLocationException
|
|
|
|
{
|
|
|
|
return view.getNextVisualPositionFrom(c, pos, b, d, biasRet);
|
|
|
|
}
|
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.
|
|
|
|
*/
|
2005-11-15 23:20:01 +00:00
|
|
|
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.
|
|
|
|
*/
|
2005-11-15 23:20:01 +00:00
|
|
|
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)
|
|
|
|
{
|
|
|
|
doc = getEditorKit(textComponent).createDefaultDocument();
|
|
|
|
textComponent.setDocument(doc);
|
|
|
|
}
|
|
|
|
|
|
|
|
textComponent.addPropertyChangeListener(updateHandler);
|
|
|
|
modelChanged();
|
|
|
|
|
|
|
|
installDefaults();
|
|
|
|
installListeners();
|
|
|
|
installKeyboardActions();
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
String prefix = getPropertyPrefix();
|
|
|
|
JTextComponent.KeyBinding[] bindings =
|
2005-11-18 00:59:33 +00:00
|
|
|
(JTextComponent.KeyBinding[]) UIManager.get(prefix + ".keyBindings");
|
2005-07-16 00:30:23 +00:00
|
|
|
if (bindings == null)
|
|
|
|
{
|
|
|
|
bindings = new JTextComponent.KeyBinding[0];
|
2005-11-18 00:59:33 +00:00
|
|
|
// FIXME: Putting something into the defaults map is certainly wrong.
|
|
|
|
// Must be fixed somehow.
|
|
|
|
UIManager.put(prefix + ".keyBindings", bindings);
|
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()
|
|
|
|
{
|
|
|
|
// load any bindings for the older Keymap interface
|
|
|
|
Keymap km = JTextComponent.getKeymap(getKeymapName());
|
|
|
|
if (km == null)
|
|
|
|
km = createKeymap();
|
|
|
|
textComponent.setKeymap(km);
|
|
|
|
|
|
|
|
// load any bindings for the newer InputMap / ActionMap interface
|
|
|
|
SwingUtilities.replaceUIInputMap(textComponent,
|
|
|
|
JComponent.WHEN_FOCUSED,
|
|
|
|
getInputMap(JComponent.WHEN_FOCUSED));
|
|
|
|
SwingUtilities.replaceUIActionMap(textComponent, getActionMap());
|
|
|
|
}
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
* Returns the ActionMap to be installed on the text component.
|
|
|
|
*
|
|
|
|
* @return the ActionMap to be installed on the text component
|
|
|
|
*/
|
|
|
|
// FIXME: The UIDefaults have no entries for .actionMap, so this should
|
|
|
|
// be handled somehow different.
|
2005-07-16 00:30:23 +00:00
|
|
|
ActionMap getActionMap()
|
|
|
|
{
|
|
|
|
String prefix = getPropertyPrefix();
|
2005-11-18 00:59:33 +00:00
|
|
|
ActionMap am = (ActionMap) UIManager.get(prefix + ".actionMap");
|
2005-07-16 00:30:23 +00:00
|
|
|
if (am == null)
|
|
|
|
{
|
|
|
|
am = createActionMap();
|
2005-11-18 00:59:33 +00:00
|
|
|
// FIXME: Putting something in the UIDefaults map is certainly wrong.
|
|
|
|
// However, the whole method seems wrong and must be replaced by
|
|
|
|
// something that is less wrong.
|
|
|
|
UIManager.put(prefix + ".actionMap", am);
|
2005-07-16 00:30:23 +00:00
|
|
|
}
|
|
|
|
return am;
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Creates an ActionMap to be installed on the text component.
|
|
|
|
*
|
|
|
|
* @return an ActionMap to be installed on the text component
|
|
|
|
*/
|
2005-07-16 00:30:23 +00:00
|
|
|
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-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);
|
|
|
|
|
|
|
|
textComponent.removePropertyChangeListener(updateHandler);
|
|
|
|
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
return new Dimension((int) w, (int) h);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
/**
|
|
|
|
* Paints the text component.
|
|
|
|
*
|
|
|
|
* @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)
|
|
|
|
{
|
|
|
|
paintSafely(g);
|
|
|
|
}
|
|
|
|
|
2005-09-23 21:31:04 +00:00
|
|
|
/**
|
|
|
|
* Actually performs the painting.
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
2005-07-16 00:30:23 +00:00
|
|
|
if (highlighter != null
|
|
|
|
&& textComponent.getSelectionStart() != textComponent.getSelectionEnd())
|
|
|
|
highlighter.paint(g);
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
// This method does nothing. All the background filling is done by the
|
|
|
|
// ComponentUI update method. However, the method is called by paint
|
|
|
|
// to provide a way for subclasses to draw something different (e.g.
|
|
|
|
// background images etc) on the background.
|
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)
|
|
|
|
{
|
2005-09-23 21:31:04 +00:00
|
|
|
// TODO: Implement me.
|
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()
|
|
|
|
{
|
2005-11-15 23:20:01 +00:00
|
|
|
JTextComponent textComponent = getComponent();
|
2005-07-16 00:30:23 +00:00
|
|
|
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);
|
|
|
|
view.setParent(rootView);
|
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
|
|
|
}
|