Moved SafeScrollPane to com.samskivert.swing
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1561 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,15 +1,15 @@
|
|||||||
//
|
//
|
||||||
// $Id: ConfigEditorPanel.java,v 1.1 2002/06/07 06:22:24 mdb Exp $
|
// $Id: ConfigEditorPanel.java,v 1.2 2002/07/09 17:49:12 ray Exp $
|
||||||
|
|
||||||
package com.threerings.admin.client;
|
package com.threerings.admin.client;
|
||||||
|
|
||||||
import javax.swing.JTabbedPane;
|
import javax.swing.JTabbedPane;
|
||||||
import javax.swing.event.AncestorEvent;
|
import javax.swing.event.AncestorEvent;
|
||||||
|
|
||||||
|
import com.samskivert.swing.SafeScrollPane;
|
||||||
import com.samskivert.swing.event.AncestorAdapter;
|
import com.samskivert.swing.event.AncestorAdapter;
|
||||||
import com.samskivert.util.StringUtil;
|
import com.samskivert.util.StringUtil;
|
||||||
|
|
||||||
import com.threerings.media.SafeScrollPane;
|
|
||||||
import com.threerings.presents.util.PresentsContext;
|
import com.threerings.presents.util.PresentsContext;
|
||||||
|
|
||||||
import com.threerings.admin.Log;
|
import com.threerings.admin.Log;
|
||||||
|
|||||||
@@ -1,27 +0,0 @@
|
|||||||
//
|
|
||||||
// $Id: SafeScrollPane.java,v 1.1 2002/04/23 01:16:27 mdb Exp $
|
|
||||||
|
|
||||||
package com.threerings.media;
|
|
||||||
|
|
||||||
import java.awt.Component;
|
|
||||||
|
|
||||||
import javax.swing.JScrollPane;
|
|
||||||
import javax.swing.JViewport;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A scroll pane that is safe to use in frame managed views.
|
|
||||||
*/
|
|
||||||
public class SafeScrollPane extends JScrollPane
|
|
||||||
{
|
|
||||||
public SafeScrollPane (Component view)
|
|
||||||
{
|
|
||||||
super(view);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected JViewport createViewport ()
|
|
||||||
{
|
|
||||||
JViewport vp = new JViewport();
|
|
||||||
vp.setScrollMode(JViewport.SIMPLE_SCROLL_MODE);
|
|
||||||
return vp;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user