package sun.awt.motif;
import sun.awt.EmbeddedFrame;
import java.util.logging.*;
import java.awt.Component;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.Window;
import java.awt.AWTKeyStroke;
import java.awt.Component;
import java.awt.Container;
import sun.awt.SunToolkit;
import java.util.LinkedList;
import java.util.Iterator;
import sun.java2d.SurfaceData;
public class MEmbeddedFramePeer extends MFramePeer {
private static final Logger xembedLog = Logger.getLogger("sun.awt.motif.xembed.MEmbeddedFramePeer");
final static int XEMBED_FOCUS_CURRENT = 0;
final static int XEMBED_FOCUS_FIRST = 1;
final static int XEMBED_FOCUS_LAST = 2;
LinkedList<AWTKeyStroke> strokes = new LinkedList<AWTKeyStroke>();
public MEmbeddedFramePeer(EmbeddedFrame target) {
super(target);
xembedLog.fine("Creating XEmbed-enabled motif embedded frame, frame supports XEmbed:" + supportsXEmbed());
}
void create(MComponentPeer parent) {
NEFcreate(parent, ((MEmbeddedFrame)target).handle);
}
native void NEFcreate(MComponentPeer parent, long handle);
native void pShowImpl();
void pShow() {
pShowImpl();
}
boolean supportsXEmbed() {
EmbeddedFrame frame = (EmbeddedFrame)target;
if (frame != null) {
return frame.supportsXEmbed();
} else {
return false;
}
}
public void setVisible(boolean vis) {
super.setVisible(vis);
xembedLog.fine("Peer made visible");
if (vis && !supportsXEmbed()) {
xembedLog.fine("Synthesizing FocusIn");
synthesizeFocusInOut(true);
}
}
public native void synthesizeFocusInOut(boolean b);
native boolean isXEmbedActive();
native boolean isXEmbedApplicationActive();
native void requestXEmbedFocus();
public boolean requestWindowFocus() {
xembedLog.fine("In requestWindowFocus");
if (isXEmbedActive()) {
if (isXEmbedApplicationActive()) {
xembedLog.fine("Requesting focus from embedding host");
requestXEmbedFocus();
return true;
} else {
xembedLog.fine("Host application is not active");
return false;
}
} else {
xembedLog.fine("Requesting focus from X");
return super.requestWindowFocus();
}
}
void registerAccelerator(AWTKeyStroke stroke) {
}
void unregisterAccelerator(AWTKeyStroke stroke) {
}
void notifyStarted() {
updateDropTarget();
}
native void traverseOut(boolean direction);
void handleFocusIn(int detail) {
xembedLog.log(Level.FINE, "handleFocusIn {0}", new Object[]{Integer.valueOf(detail)});
switch(detail) {
case XEMBED_FOCUS_CURRENT:
break;
case XEMBED_FOCUS_FIRST:
SunToolkit.executeOnEventHandlerThread(target, new Runnable() {
public void run() {
Component comp = ((Container)target).getFocusTraversalPolicy().getFirstComponent((Container)target);
if (comp != null) {
comp.requestFocusInWindow();
}
}});
break;
case XEMBED_FOCUS_LAST:
SunToolkit.executeOnEventHandlerThread(target, new Runnable() {
public void run() {
Component comp = ((Container)target).getFocusTraversalPolicy().getLastComponent((Container)target);
if (comp != null) {
comp.requestFocusInWindow();
}
}});
break;
}
}
public void handleWindowFocusIn() {
super.handleWindowFocusIn();
xembedLog.fine("windowFocusIn");
}
public void handleWindowFocusOut(Window oppositeWindow) {
super.handleWindowFocusOut(oppositeWindow);
xembedLog.fine("windowFocusOut, opposite is null?:" + (oppositeWindow==null));
}
native void pReshapePrivate(int x, int y, int w, int h);
public void setBoundsPrivate(int x, int y, int width, int height)
{
if (disposed)
{
return;
}
paintPending = false;
pReshapePrivate(x, y, width, height);
if ((width != oldWidth) || (height != oldHeight))
{
SurfaceData oldData = surfaceData;
if (oldData != null) {
surfaceData = graphicsConfig.createSurfaceData(this);
oldData.invalidate();
}
oldWidth = width;
oldHeight = height;
}
validateSurface(width, height);
serialNum++;
}
public native Rectangle getBoundsPrivate();
@Override
Rectangle constrainBounds(int x, int y, int width, int height) {
return new Rectangle(x, y, width, height);
}
}