gcc/libjava/javax/swing/plaf/basic/BasicViewportUI.java
Michael Koch 9c6637c8d9 2004-03-19 Michael Koch <konqueror@gmx.de>
* java/awt/image/AffineTransformOp.java
	(AffineTransformOp): Made public.
	* javax/swing/JComponent.java
	(listenerList): Made protected.
	(accessibleContext): Likewise.
	* javax/swing/JList.java
	(valueChanged): Dont use internal fields of ListSelectionEvent.
	* javax/swing/JViewport.java
	(getView): Dont use internal fields of Component.
	(addImpl): Likewise.
	* javax/swing/Timer.java
	(isRunning): Made public.
	(start): Likewise.
	(stop): Likewise.
	* javax/swing/UIDefaults.java
	(getInt): Made public.
	* javax/swing/plaf/basic/BasicListUI.java
	(mousePressed): Dont use internal fields of MouseEvent.
	(propertyChanged): Dont use internal fields of PropertyChangeEvent.
	* javax/swing/plaf/basic/BasicScrollBarUI.java
	(arrowIcon): Made static.
	* javax/swing/plaf/basic/BasicViewportUI.java
	(stateChanged): Dont use internal field on ChangeEvent.
	* javax/swing/text/JTextComponent.java
	(getUI): Call UIManager.getUI().
	(updateUI): Use getUI().

From-SVN: r79699
2004-03-19 20:42:39 +00:00

147 lines
4 KiB
Java

/* BasicViewportUI.java
Copyright (C) 2002, 2004 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., 59 Temple Place, Suite 330, Boston, MA
02111-1307 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;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.image.ImageObserver;
import javax.swing.JComponent;
import javax.swing.JViewport;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.ViewportUI;
public class BasicViewportUI extends ViewportUI
{
ChangeListener changeListener;
Image backingStoreImage;
int backingStoreWidth = -1;
int backingStoreHeight = -1;
class ChangeHandler implements ChangeListener
{
public void stateChanged(ChangeEvent event)
{
JViewport v = (JViewport) event.getSource();
v.repaint();
}
}
void installDefaults(JComponent c)
{
}
void uninstallDefaults(JComponent c)
{
}
void installListeners(JComponent c)
{
((JViewport)c).addChangeListener(changeListener);
}
void uninstallListeners(JComponent c)
{
((JViewport)c).removeChangeListener(changeListener);
}
public BasicViewportUI()
{
changeListener = new ChangeHandler();
}
public static ComponentUI createUI(JComponent c)
{
return new BasicViewportUI();
}
public void installUI(JComponent c)
{
super.installUI(c);
installListeners(c);
}
public void uninstallUI(JComponent c)
{
uninstallListeners(c);
}
public Dimension getPreferredSize(JComponent c)
{
// FIXME: integrate with Scrollable
Dimension d = new Dimension(100,100);
return d;
}
public void paint(Graphics g, JComponent c)
{
JViewport v = (JViewport)c;
Component view = v.getView();
if (view == null)
return;
Point pos = v.getViewPosition();
Rectangle viewBounds = view.getBounds();
if (backingStoreImage == null
|| backingStoreWidth != viewBounds.width
|| backingStoreHeight != viewBounds.height)
{
backingStoreImage = v.createImage(viewBounds.width, viewBounds.height);
backingStoreWidth = viewBounds.width;
backingStoreHeight = viewBounds.height;
}
Graphics g2 = backingStoreImage.getGraphics();
view.paint(g2);
g2 = null;
g.drawImage(backingStoreImage,
-pos.x, -pos.y,
(ImageObserver)null);
}
}