8a54e85914
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2983 542714f4-19e9-0310-aa3c-eee0fc999fb1
113 lines
3.4 KiB
Java
113 lines
3.4 KiB
Java
//
|
|
// $Id: ObjectEditorPanel.java,v 1.5 2004/03/06 14:55:50 mdb Exp $
|
|
|
|
package com.threerings.admin.client;
|
|
|
|
import java.lang.reflect.Field;
|
|
import java.lang.reflect.Modifier;
|
|
|
|
import javax.swing.BorderFactory;
|
|
import javax.swing.JPanel;
|
|
|
|
import com.samskivert.swing.ScrollablePanel;
|
|
import com.samskivert.swing.VGroupLayout;
|
|
import com.samskivert.swing.util.SwingUtil;
|
|
|
|
import com.threerings.presents.dobj.DObject;
|
|
import com.threerings.presents.dobj.ObjectAccessException;
|
|
import com.threerings.presents.dobj.Subscriber;
|
|
import com.threerings.presents.util.PresentsContext;
|
|
import com.threerings.presents.util.SafeSubscriber;
|
|
|
|
import com.threerings.admin.Log;
|
|
import com.threerings.admin.data.ConfigObject;
|
|
|
|
/**
|
|
* Used to edit the distributed object fields of a particular
|
|
* configuration object. When the panel is first shown, it will subscribe
|
|
* to the object and display its fields. It will not automatically
|
|
* unsubscribe when it is hidden, but rather {@link #cleanup} must be
|
|
* called to let it know that it's not going to be shown again soon and it
|
|
* is safe for it to clear out its subscription.
|
|
*
|
|
* @see ConfigEditorPanel
|
|
*/
|
|
public class ObjectEditorPanel extends ScrollablePanel
|
|
implements Subscriber
|
|
{
|
|
/**
|
|
* Creates an object editor panel for the specified configuration
|
|
* object.
|
|
*/
|
|
public ObjectEditorPanel (PresentsContext ctx, String key, int oid)
|
|
{
|
|
super(new VGroupLayout(VGroupLayout.NONE, VGroupLayout.STRETCH,
|
|
5, VGroupLayout.TOP));
|
|
setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
|
|
|
|
// keep this business around
|
|
_ctx = ctx;
|
|
_key = key;
|
|
|
|
// we'll use this to safely subscribe to and unsubscribe from the
|
|
// config object
|
|
_safesub = new SafeSubscriber(oid, this);
|
|
_safesub.subscribe(_ctx.getDObjectManager());
|
|
}
|
|
|
|
// documentation inherited from interface
|
|
public boolean getScrollableTracksViewportWidth ()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* This method must be called to let the object editor panel know that
|
|
* it's OK for it to remove its subscription to its config object.
|
|
*/
|
|
public void cleanup ()
|
|
{
|
|
// clear out our subscription
|
|
_safesub.unsubscribe(_ctx.getDObjectManager());
|
|
_object = null;
|
|
|
|
// clear out our field editors
|
|
removeAll();
|
|
}
|
|
|
|
// documentation inherited from interface
|
|
public void objectAvailable (DObject object)
|
|
{
|
|
// keep this for later
|
|
_object = (ConfigObject)object;
|
|
|
|
// create our field editors
|
|
try {
|
|
Field[] fields = object.getClass().getFields();
|
|
for (int ii = 0; ii < fields.length; ii++) {
|
|
// if the field is anything but a plain old public field,
|
|
// we don't want to edit it
|
|
if (fields[ii].getModifiers() == Modifier.PUBLIC) {
|
|
add(_object.getEditor(_ctx, fields[ii]));
|
|
}
|
|
}
|
|
|
|
} catch (SecurityException se) {
|
|
Log.warning("Unable to introspect DObject!? " + se);
|
|
}
|
|
|
|
SwingUtil.refresh(this);
|
|
}
|
|
|
|
// documentation inherited from interface
|
|
public void requestFailed (int oid, ObjectAccessException cause)
|
|
{
|
|
Log.warning("Unable to subscribe to config object: " + cause);
|
|
}
|
|
|
|
protected PresentsContext _ctx;
|
|
protected String _key;
|
|
protected SafeSubscriber _safesub;
|
|
protected ConfigObject _object;
|
|
}
|