package javax.swing.plaf.basic;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.plaf.*;
import javax.swing.event.*;
import java.beans.*;
import sun.swing.DefaultLookup;
import sun.swing.UIAction;
public class BasicInternalFrameUI extends InternalFrameUI
{
protected JInternalFrame frame;
private Handler handler;
protected MouseInputAdapter borderListener;
protected PropertyChangeListener propertyChangeListener;
protected LayoutManager internalFrameLayout;
protected ComponentListener componentListener;
protected MouseInputListener glassPaneDispatcher;
private InternalFrameListener internalFrameListener;
protected JComponent northPane;
protected JComponent southPane;
protected JComponent westPane;
protected JComponent eastPane;
protected BasicInternalFrameTitlePane titlePane;
private static DesktopManager sharedDesktopManager;
private boolean componentListenerAdded = false;
private Rectangle parentBounds;
private boolean dragging = false;
private boolean resizing = false;
@Deprecated
protected KeyStroke ;
private boolean keyBindingRegistered = false;
private boolean keyBindingActive = false;
public static ComponentUI createUI(JComponent b) {
return new BasicInternalFrameUI((JInternalFrame)b);
}
public BasicInternalFrameUI(JInternalFrame b) {
LookAndFeel laf = UIManager.getLookAndFeel();
if (laf instanceof BasicLookAndFeel) {
((BasicLookAndFeel)laf).installAWTEventListener();
}
}
public void installUI(JComponent c) {
frame = (JInternalFrame)c;
installDefaults();
installListeners();
installComponents();
installKeyboardActions();
LookAndFeel.installProperty(frame, "opaque", Boolean.TRUE);
}
public void uninstallUI(JComponent c) {
if(c != frame)
throw new IllegalComponentStateException(
this + " was asked to deinstall() "
+ c + " when it only knows about "
+ frame + ".");
uninstallKeyboardActions();
uninstallComponents();
uninstallListeners();
uninstallDefaults();
updateFrameCursor();
handler = null;
frame = null;
}
protected void installDefaults(){
Icon frameIcon = frame.getFrameIcon();
if (frameIcon == null || frameIcon instanceof UIResource) {
frame.setFrameIcon(UIManager.getIcon("InternalFrame.icon"));
}
Container contentPane = frame.getContentPane();
if (contentPane != null) {
Color bg = contentPane.getBackground();
if (bg instanceof UIResource)
contentPane.setBackground(null);
}
frame.setLayout(internalFrameLayout = createLayoutManager());
frame.setBackground(UIManager.getLookAndFeelDefaults().getColor("control"));
LookAndFeel.installBorder(frame, "InternalFrame.border");
}
protected void installKeyboardActions(){
createInternalFrameListener();
if (internalFrameListener != null) {
frame.addInternalFrameListener(internalFrameListener);
}
LazyActionMap.installLazyActionMap(frame, BasicInternalFrameUI.class,
"InternalFrame.actionMap");
}
static void loadActionMap(LazyActionMap map) {
map.put(new UIAction("showSystemMenu") {
public void actionPerformed(ActionEvent evt) {
JInternalFrame iFrame = (JInternalFrame)evt.getSource();
if (iFrame.getUI() instanceof BasicInternalFrameUI) {
JComponent comp = ((BasicInternalFrameUI)
iFrame.getUI()).getNorthPane();
if (comp instanceof BasicInternalFrameTitlePane) {
((BasicInternalFrameTitlePane)comp).
showSystemMenu();
}
}
}
public boolean isEnabled(Object sender){
if (sender instanceof JInternalFrame) {
JInternalFrame iFrame = (JInternalFrame)sender;
if (iFrame.getUI() instanceof BasicInternalFrameUI) {
return ((BasicInternalFrameUI)iFrame.getUI()).
isKeyBindingActive();
}
}
return false;
}
});
BasicLookAndFeel.installAudioActionMap(map);
}
protected void installComponents(){
setNorthPane(createNorthPane(frame));
setSouthPane(createSouthPane(frame));
setEastPane(createEastPane(frame));
setWestPane(createWestPane(frame));
}
protected void installListeners() {
borderListener = createBorderListener(frame);
propertyChangeListener = createPropertyChangeListener();
frame.addPropertyChangeListener(propertyChangeListener);
installMouseHandlers(frame);
glassPaneDispatcher = createGlassPaneDispatcher();
if (glassPaneDispatcher != null) {
frame.getGlassPane().addMouseListener(glassPaneDispatcher);
frame.getGlassPane().addMouseMotionListener(glassPaneDispatcher);
}
componentListener = createComponentListener();
if (frame.getParent() != null) {
parentBounds = frame.getParent().getBounds();
}
if ((frame.getParent() != null) && !componentListenerAdded) {
frame.getParent().addComponentListener(componentListener);
componentListenerAdded = true;
}
}
private WindowFocusListener getWindowFocusListener(){
return getHandler();
}
private void cancelResize() {
if (resizing) {
if (borderListener instanceof BorderListener) {
((BorderListener)borderListener).finishMouseReleased();
}
}
}
private Handler getHandler() {
if (handler == null) {
handler = new Handler();
}
return handler;
}
InputMap getInputMap(int condition) {
if (condition == JComponent.WHEN_IN_FOCUSED_WINDOW) {
return createInputMap(condition);
}
return null;
}
InputMap createInputMap(int condition) {
if (condition == JComponent.WHEN_IN_FOCUSED_WINDOW) {
Object[] bindings = (Object[])DefaultLookup.get(
frame, this, "InternalFrame.windowBindings");
if (bindings != null) {
return LookAndFeel.makeComponentInputMap(frame, bindings);
}
}
return null;
}
protected void uninstallDefaults() {
Icon frameIcon = frame.getFrameIcon();
if (frameIcon instanceof UIResource) {
frame.setFrameIcon(null);
}
internalFrameLayout = null;
frame.setLayout(null);
LookAndFeel.uninstallBorder(frame);
}
protected void uninstallComponents(){
setNorthPane(null);
setSouthPane(null);
setEastPane(null);
setWestPane(null);
if(titlePane != null) {
titlePane.uninstallDefaults();
}
titlePane = null;
}
protected void uninstallListeners() {
if ((frame.getParent() != null) && componentListenerAdded) {
frame.getParent().removeComponentListener(componentListener);
componentListenerAdded = false;
}
componentListener = null;
if (glassPaneDispatcher != null) {
frame.getGlassPane().removeMouseListener(glassPaneDispatcher);
frame.getGlassPane().removeMouseMotionListener(glassPaneDispatcher);
glassPaneDispatcher = null;
}
deinstallMouseHandlers(frame);
frame.removePropertyChangeListener(propertyChangeListener);
propertyChangeListener = null;
borderListener = null;
}
protected void uninstallKeyboardActions(){
if (internalFrameListener != null) {
frame.removeInternalFrameListener(internalFrameListener);
}
internalFrameListener = null;
SwingUtilities.replaceUIInputMap(frame, JComponent.
WHEN_IN_FOCUSED_WINDOW, null);
SwingUtilities.replaceUIActionMap(frame, null);
}
void updateFrameCursor() {
if (resizing) {
return;
}
Cursor s = frame.getLastCursor();
if (s == null) {
s = Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR);
}
frame.setCursor(s);
}
protected LayoutManager createLayoutManager(){
return getHandler();
}
protected PropertyChangeListener createPropertyChangeListener(){
return getHandler();
}
public Dimension getPreferredSize(JComponent x) {
if(frame == x)
return frame.getLayout().preferredLayoutSize(x);
return new Dimension(100, 100);
}
public Dimension getMinimumSize(JComponent x) {
if(frame == x) {
return frame.getLayout().minimumLayoutSize(x);
}
return new Dimension(0, 0);
}
public Dimension getMaximumSize(JComponent x) {
return new Dimension(Integer.MAX_VALUE, Integer.MAX_VALUE);
}
protected void replacePane(JComponent currentPane, JComponent newPane) {
if(currentPane != null) {
deinstallMouseHandlers(currentPane);
frame.remove(currentPane);
}
if(newPane != null) {
frame.add(newPane);
installMouseHandlers(newPane);
}
}
protected void deinstallMouseHandlers(JComponent c) {
c.removeMouseListener(borderListener);
c.removeMouseMotionListener(borderListener);
}
protected void installMouseHandlers(JComponent c) {
c.addMouseListener(borderListener);
c.addMouseMotionListener(borderListener);
}
protected JComponent createNorthPane(JInternalFrame w) {
titlePane = new BasicInternalFrameTitlePane(w);
return titlePane;
}
protected JComponent createSouthPane(JInternalFrame w) {
return null;
}
protected JComponent createWestPane(JInternalFrame w) {
return null;
}
protected JComponent createEastPane(JInternalFrame w) {
return null;
}
protected MouseInputAdapter createBorderListener(JInternalFrame w) {
return new BorderListener();
}
protected void createInternalFrameListener(){
internalFrameListener = getHandler();
}
protected final boolean isKeyBindingRegistered(){
return keyBindingRegistered;
}
protected final void setKeyBindingRegistered(boolean b){
keyBindingRegistered = b;
}
public final boolean isKeyBindingActive(){
return keyBindingActive;
}
protected final void setKeyBindingActive(boolean b){
keyBindingActive = b;
}
protected void (){
InputMap map = getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
SwingUtilities.replaceUIInputMap(frame,
JComponent.WHEN_IN_FOCUSED_WINDOW, map);
}
protected void (){
}
public JComponent getNorthPane() {
return northPane;
}
public void setNorthPane(JComponent c) {
if (northPane != null &&
northPane instanceof BasicInternalFrameTitlePane) {
((BasicInternalFrameTitlePane)northPane).uninstallListeners();
}
replacePane(northPane, c);
northPane = c;
if (c instanceof BasicInternalFrameTitlePane) {
titlePane = (BasicInternalFrameTitlePane)c;
}
}
public JComponent getSouthPane() {
return southPane;
}
public void setSouthPane(JComponent c) {
southPane = c;
}
public JComponent getWestPane() {
return westPane;
}
public void setWestPane(JComponent c) {
westPane = c;
}
public JComponent getEastPane() {
return eastPane;
}
public void setEastPane(JComponent c) {
eastPane = c;
}
public class InternalFramePropertyChangeListener implements
PropertyChangeListener {
public void propertyChange(PropertyChangeEvent evt) {
getHandler().propertyChange(evt);
}
}
public class InternalFrameLayout implements LayoutManager {
public void addLayoutComponent(String name, Component c) {
getHandler().addLayoutComponent(name, c);
}
public void removeLayoutComponent(Component c) {
getHandler().removeLayoutComponent(c);
}
public Dimension preferredLayoutSize(Container c) {
return getHandler().preferredLayoutSize(c);
}
public Dimension minimumLayoutSize(Container c) {
return getHandler().minimumLayoutSize(c);
}
public void layoutContainer(Container c) {
getHandler().layoutContainer(c);
}
}
protected DesktopManager getDesktopManager() {
if(frame.getDesktopPane() != null
&& frame.getDesktopPane().getDesktopManager() != null)
return frame.getDesktopPane().getDesktopManager();
if(sharedDesktopManager == null)
sharedDesktopManager = createDesktopManager();
return sharedDesktopManager;
}
protected DesktopManager createDesktopManager(){
return new DefaultDesktopManager();
}
protected void closeFrame(JInternalFrame f) {
BasicLookAndFeel.playSound(frame,"InternalFrame.closeSound");
getDesktopManager().closeFrame(f);
}
protected void maximizeFrame(JInternalFrame f) {
BasicLookAndFeel.playSound(frame,"InternalFrame.maximizeSound");
getDesktopManager().maximizeFrame(f);
}
protected void minimizeFrame(JInternalFrame f) {
if ( ! f.isIcon() ) {
BasicLookAndFeel.playSound(frame,"InternalFrame.restoreDownSound");
}
getDesktopManager().minimizeFrame(f);
}
protected void iconifyFrame(JInternalFrame f) {
BasicLookAndFeel.playSound(frame, "InternalFrame.minimizeSound");
getDesktopManager().iconifyFrame(f);
}
protected void deiconifyFrame(JInternalFrame f) {
if ( ! f.isMaximum() ) {
BasicLookAndFeel.playSound(frame, "InternalFrame.restoreUpSound");
}
getDesktopManager().deiconifyFrame(f);
}
protected void activateFrame(JInternalFrame f) {
getDesktopManager().activateFrame(f);
}
protected void deactivateFrame(JInternalFrame f) {
getDesktopManager().deactivateFrame(f);
}
protected class BorderListener extends MouseInputAdapter implements SwingConstants
{
int _x, _y;
int __x, __y;
Rectangle startingBounds;
int resizeDir;
protected final int RESIZE_NONE = 0;
private boolean discardRelease = false;
int resizeCornerSize = 16;
public void mouseClicked(MouseEvent e) {
if(e.getClickCount() > 1 && e.getSource() == getNorthPane()) {
if(frame.isIconifiable() && frame.isIcon()) {
try { frame.setIcon(false); } catch (PropertyVetoException e2) { }
} else if(frame.isMaximizable()) {
if(!frame.isMaximum())
try { frame.setMaximum(true); } catch (PropertyVetoException e2) { }
else
try { frame.setMaximum(false); } catch (PropertyVetoException e3) { }
}
}
}
void finishMouseReleased() {
if (discardRelease) {
discardRelease = false;
return;
}
if (resizeDir == RESIZE_NONE) {
getDesktopManager().endDraggingFrame(frame);
dragging = false;
} else {
Window windowAncestor =
SwingUtilities.getWindowAncestor(frame);
if (windowAncestor != null) {
windowAncestor.removeWindowFocusListener(
getWindowFocusListener());
}
Container c = frame.getTopLevelAncestor();
if (c instanceof RootPaneContainer) {
Component glassPane = ((RootPaneContainer)c).getGlassPane();
glassPane.setCursor(Cursor.getPredefinedCursor(
Cursor.DEFAULT_CURSOR));
glassPane.setVisible(false);
}
getDesktopManager().endResizingFrame(frame);
resizing = false;
updateFrameCursor();
}
_x = 0;
_y = 0;
__x = 0;
__y = 0;
startingBounds = null;
resizeDir = RESIZE_NONE;
discardRelease = true;
}
public void mouseReleased(MouseEvent e) {
finishMouseReleased();
}
public void mousePressed(MouseEvent e) {
Point p = SwingUtilities.convertPoint((Component)e.getSource(),
e.getX(), e.getY(), null);
__x = e.getX();
__y = e.getY();
_x = p.x;
_y = p.y;
startingBounds = frame.getBounds();
resizeDir = RESIZE_NONE;
discardRelease = false;
try { frame.setSelected(true); }
catch (PropertyVetoException e1) { }
Insets i = frame.getInsets();
Point ep = new Point(__x, __y);
if (e.getSource() == getNorthPane()) {
Point np = getNorthPane().getLocation();
ep.x += np.x;
ep.y += np.y;
}
if (e.getSource() == getNorthPane()) {
if (ep.x > i.left && ep.y > i.top && ep.x < frame.getWidth() - i.right) {
getDesktopManager().beginDraggingFrame(frame);
dragging = true;
return;
}
}
if (!frame.isResizable()) {
return;
}
if (e.getSource() == frame || e.getSource() == getNorthPane()) {
if (ep.x <= i.left) {
if (ep.y < resizeCornerSize + i.top) {
resizeDir = NORTH_WEST;
} else if (ep.y > frame.getHeight()
- resizeCornerSize - i.bottom) {
resizeDir = SOUTH_WEST;
} else {
resizeDir = WEST;
}
} else if (ep.x >= frame.getWidth() - i.right) {
if (ep.y < resizeCornerSize + i.top) {
resizeDir = NORTH_EAST;
} else if (ep.y > frame.getHeight()
- resizeCornerSize - i.bottom) {
resizeDir = SOUTH_EAST;
} else {
resizeDir = EAST;
}
} else if (ep.y <= i.top) {
if (ep.x < resizeCornerSize + i.left) {
resizeDir = NORTH_WEST;
} else if (ep.x > frame.getWidth()
- resizeCornerSize - i.right) {
resizeDir = NORTH_EAST;
} else {
resizeDir = NORTH;
}
} else if (ep.y >= frame.getHeight() - i.bottom) {
if (ep.x < resizeCornerSize + i.left) {
resizeDir = SOUTH_WEST;
} else if (ep.x > frame.getWidth()
- resizeCornerSize - i.right) {
resizeDir = SOUTH_EAST;
} else {
resizeDir = SOUTH;
}
} else {
discardRelease = true;
return;
}
Cursor s = Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR);
switch (resizeDir) {
case SOUTH:
s = Cursor.getPredefinedCursor(Cursor.S_RESIZE_CURSOR);
break;
case NORTH:
s = Cursor.getPredefinedCursor(Cursor.N_RESIZE_CURSOR);
break;
case WEST:
s = Cursor.getPredefinedCursor(Cursor.W_RESIZE_CURSOR);
break;
case EAST:
s = Cursor.getPredefinedCursor(Cursor.E_RESIZE_CURSOR);
break;
case SOUTH_EAST:
s = Cursor.getPredefinedCursor(Cursor.SE_RESIZE_CURSOR);
break;
case SOUTH_WEST:
s = Cursor.getPredefinedCursor(Cursor.SW_RESIZE_CURSOR);
break;
case NORTH_WEST:
s = Cursor.getPredefinedCursor(Cursor.NW_RESIZE_CURSOR);
break;
case NORTH_EAST:
s = Cursor.getPredefinedCursor(Cursor.NE_RESIZE_CURSOR);
break;
}
Container c = frame.getTopLevelAncestor();
if (c instanceof RootPaneContainer) {
Component glassPane = ((RootPaneContainer)c).getGlassPane();
glassPane.setVisible(true);
glassPane.setCursor(s);
}
getDesktopManager().beginResizingFrame(frame, resizeDir);
resizing = true;
Window windowAncestor = SwingUtilities.getWindowAncestor(frame);
if (windowAncestor != null) {
windowAncestor.addWindowFocusListener(
getWindowFocusListener());
}
return;
}
}
public void mouseDragged(MouseEvent e) {
if ( startingBounds == null ) {
return;
}
Point p = SwingUtilities.convertPoint((Component)e.getSource(),
e.getX(), e.getY(), null);
int deltaX = _x - p.x;
int deltaY = _y - p.y;
Dimension min = frame.getMinimumSize();
Dimension max = frame.getMaximumSize();
int newX, newY, newW, newH;
Insets i = frame.getInsets();
if (dragging) {
if (frame.isMaximum() || ((e.getModifiers() &
InputEvent.BUTTON1_MASK) !=
InputEvent.BUTTON1_MASK)) {
return;
}
int pWidth, pHeight;
Dimension s = frame.getParent().getSize();
pWidth = s.width;
pHeight = s.height;
newX = startingBounds.x - deltaX;
newY = startingBounds.y - deltaY;
if(newX + i.left <= -__x)
newX = -__x - i.left + 1;
if(newY + i.top <= -__y)
newY = -__y - i.top + 1;
if(newX + __x + i.right >= pWidth)
newX = pWidth - __x - i.right - 1;
if(newY + __y + i.bottom >= pHeight)
newY = pHeight - __y - i.bottom - 1;
getDesktopManager().dragFrame(frame, newX, newY);
return;
}
if(!frame.isResizable()) {
return;
}
newX = frame.getX();
newY = frame.getY();
newW = frame.getWidth();
newH = frame.getHeight();
parentBounds = frame.getParent().getBounds();
switch(resizeDir) {
case RESIZE_NONE:
return;
case NORTH:
if(startingBounds.height + deltaY < min.height)
deltaY = -(startingBounds.height - min.height);
else if(startingBounds.height + deltaY > max.height)
deltaY = max.height - startingBounds.height;
if (startingBounds.y - deltaY < 0) {deltaY = startingBounds.y;}
newX = startingBounds.x;
newY = startingBounds.y - deltaY;
newW = startingBounds.width;
newH = startingBounds.height + deltaY;
break;
case NORTH_EAST:
if(startingBounds.height + deltaY < min.height)
deltaY = -(startingBounds.height - min.height);
else if(startingBounds.height + deltaY > max.height)
deltaY = max.height - startingBounds.height;
if (startingBounds.y - deltaY < 0) {deltaY = startingBounds.y;}
if(startingBounds.width - deltaX < min.width)
deltaX = startingBounds.width - min.width;
else if(startingBounds.width - deltaX > max.width)
deltaX = -(max.width - startingBounds.width);
if (startingBounds.x + startingBounds.width - deltaX >
parentBounds.width) {
deltaX = startingBounds.x + startingBounds.width -
parentBounds.width;
}
newX = startingBounds.x;
newY = startingBounds.y - deltaY;
newW = startingBounds.width - deltaX;
newH = startingBounds.height + deltaY;
break;
case EAST:
if(startingBounds.width - deltaX < min.width)
deltaX = startingBounds.width - min.width;
else if(startingBounds.width - deltaX > max.width)
deltaX = -(max.width - startingBounds.width);
if (startingBounds.x + startingBounds.width - deltaX >
parentBounds.width) {
deltaX = startingBounds.x + startingBounds.width -
parentBounds.width;
}
newW = startingBounds.width - deltaX;
newH = startingBounds.height;
break;
case SOUTH_EAST:
if(startingBounds.width - deltaX < min.width)
deltaX = startingBounds.width - min.width;
else if(startingBounds.width - deltaX > max.width)
deltaX = -(max.width - startingBounds.width);
if (startingBounds.x + startingBounds.width - deltaX >
parentBounds.width) {
deltaX = startingBounds.x + startingBounds.width -
parentBounds.width;
}
if(startingBounds.height - deltaY < min.height)
deltaY = startingBounds.height - min.height;
else if(startingBounds.height - deltaY > max.height)
deltaY = -(max.height - startingBounds.height);
if (startingBounds.y + startingBounds.height - deltaY >
parentBounds.height) {
deltaY = startingBounds.y + startingBounds.height -
parentBounds.height ;
}
newW = startingBounds.width - deltaX;
newH = startingBounds.height - deltaY;
break;
case SOUTH:
if(startingBounds.height - deltaY < min.height)
deltaY = startingBounds.height - min.height;
else if(startingBounds.height - deltaY > max.height)
deltaY = -(max.height - startingBounds.height);
if (startingBounds.y + startingBounds.height - deltaY >
parentBounds.height) {
deltaY = startingBounds.y + startingBounds.height -
parentBounds.height ;
}
newW = startingBounds.width;
newH = startingBounds.height - deltaY;
break;
case SOUTH_WEST:
if(startingBounds.height - deltaY < min.height)
deltaY = startingBounds.height - min.height;
else if(startingBounds.height - deltaY > max.height)
deltaY = -(max.height - startingBounds.height);
if (startingBounds.y + startingBounds.height - deltaY >
parentBounds.height) {
deltaY = startingBounds.y + startingBounds.height -
parentBounds.height ;
}
if(startingBounds.width + deltaX < min.width)
deltaX = -(startingBounds.width - min.width);
else if(startingBounds.width + deltaX > max.width)
deltaX = max.width - startingBounds.width;
if (startingBounds.x - deltaX < 0) {
deltaX = startingBounds.x;
}
newX = startingBounds.x - deltaX;
newY = startingBounds.y;
newW = startingBounds.width + deltaX;
newH = startingBounds.height - deltaY;
break;
case WEST:
if(startingBounds.width + deltaX < min.width)
deltaX = -(startingBounds.width - min.width);
else if(startingBounds.width + deltaX > max.width)
deltaX = max.width - startingBounds.width;
if (startingBounds.x - deltaX < 0) {
deltaX = startingBounds.x;
}
newX = startingBounds.x - deltaX;
newY = startingBounds.y;
newW = startingBounds.width + deltaX;
newH = startingBounds.height;
break;
case NORTH_WEST:
if(startingBounds.width + deltaX < min.width)
deltaX = -(startingBounds.width - min.width);
else if(startingBounds.width + deltaX > max.width)
deltaX = max.width - startingBounds.width;
if (startingBounds.x - deltaX < 0) {
deltaX = startingBounds.x;
}
if(startingBounds.height + deltaY < min.height)
deltaY = -(startingBounds.height - min.height);
else if(startingBounds.height + deltaY > max.height)
deltaY = max.height - startingBounds.height;
if (startingBounds.y - deltaY < 0) {deltaY = startingBounds.y;}
newX = startingBounds.x - deltaX;
newY = startingBounds.y - deltaY;
newW = startingBounds.width + deltaX;
newH = startingBounds.height + deltaY;
break;
default:
return;
}
getDesktopManager().resizeFrame(frame, newX, newY, newW, newH);
}
public void mouseMoved(MouseEvent e) {
if(!frame.isResizable())
return;
if (e.getSource() == frame || e.getSource() == getNorthPane()) {
Insets i = frame.getInsets();
Point ep = new Point(e.getX(), e.getY());
if (e.getSource() == getNorthPane()) {
Point np = getNorthPane().getLocation();
ep.x += np.x;
ep.y += np.y;
}
if(ep.x <= i.left) {
if(ep.y < resizeCornerSize + i.top)
frame.setCursor(Cursor.getPredefinedCursor(Cursor.NW_RESIZE_CURSOR));
else if(ep.y > frame.getHeight() - resizeCornerSize - i.bottom)
frame.setCursor(Cursor.getPredefinedCursor(Cursor.SW_RESIZE_CURSOR));
else
frame.setCursor(Cursor.getPredefinedCursor(Cursor.W_RESIZE_CURSOR));
} else if(ep.x >= frame.getWidth() - i.right) {
if(e.getY() < resizeCornerSize + i.top)
frame.setCursor(Cursor.getPredefinedCursor(Cursor.NE_RESIZE_CURSOR));
else if(ep.y > frame.getHeight() - resizeCornerSize - i.bottom)
frame.setCursor(Cursor.getPredefinedCursor(Cursor.SE_RESIZE_CURSOR));
else
frame.setCursor(Cursor.getPredefinedCursor(Cursor.E_RESIZE_CURSOR));
} else if(ep.y <= i.top) {
if(ep.x < resizeCornerSize + i.left)
frame.setCursor(Cursor.getPredefinedCursor(Cursor.NW_RESIZE_CURSOR));
else if(ep.x > frame.getWidth() - resizeCornerSize - i.right)
frame.setCursor(Cursor.getPredefinedCursor(Cursor.NE_RESIZE_CURSOR));
else
frame.setCursor(Cursor.getPredefinedCursor(Cursor.N_RESIZE_CURSOR));
} else if(ep.y >= frame.getHeight() - i.bottom) {
if(ep.x < resizeCornerSize + i.left)
frame.setCursor(Cursor.getPredefinedCursor(Cursor.SW_RESIZE_CURSOR));
else if(ep.x > frame.getWidth() - resizeCornerSize - i.right)
frame.setCursor(Cursor.getPredefinedCursor(Cursor.SE_RESIZE_CURSOR));
else
frame.setCursor(Cursor.getPredefinedCursor(Cursor.S_RESIZE_CURSOR));
}
else
updateFrameCursor();
return;
}
updateFrameCursor();
}
public void mouseEntered(MouseEvent e) {
updateFrameCursor();
}
public void mouseExited(MouseEvent e) {
updateFrameCursor();
}
}
protected class ComponentHandler implements ComponentListener {
public void componentResized(ComponentEvent e) {
getHandler().componentResized(e);
}
public void componentMoved(ComponentEvent e) {
getHandler().componentMoved(e);
}
public void componentShown(ComponentEvent e) {
getHandler().componentShown(e);
}
public void componentHidden(ComponentEvent e) {
getHandler().componentHidden(e);
}
}
protected ComponentListener createComponentListener() {
return getHandler();
}
protected class GlassPaneDispatcher implements MouseInputListener {
public void mousePressed(MouseEvent e) {
getHandler().mousePressed(e);
}
public void mouseEntered(MouseEvent e) {
getHandler().mouseEntered(e);
}
public void mouseMoved(MouseEvent e) {
getHandler().mouseMoved(e);
}
public void mouseExited(MouseEvent e) {
getHandler().mouseExited(e);
}
public void mouseClicked(MouseEvent e) {
getHandler().mouseClicked(e);
}
public void mouseReleased(MouseEvent e) {
getHandler().mouseReleased(e);
}
public void mouseDragged(MouseEvent e) {
getHandler().mouseDragged(e);
}
}
protected MouseInputListener createGlassPaneDispatcher() {
return null;
}
protected class BasicInternalFrameListener implements InternalFrameListener
{
public void internalFrameClosing(InternalFrameEvent e) {
getHandler().internalFrameClosing(e);
}
public void internalFrameClosed(InternalFrameEvent e) {
getHandler().internalFrameClosed(e);
}
public void internalFrameOpened(InternalFrameEvent e) {
getHandler().internalFrameOpened(e);
}
public void internalFrameIconified(InternalFrameEvent e) {
getHandler().internalFrameIconified(e);
}
public void internalFrameDeiconified(InternalFrameEvent e) {
getHandler().internalFrameDeiconified(e);
}
public void internalFrameActivated(InternalFrameEvent e) {
getHandler().internalFrameActivated(e);
}
public void internalFrameDeactivated(InternalFrameEvent e) {
getHandler().internalFrameDeactivated(e);
}
}
private class Handler implements ComponentListener, InternalFrameListener,
LayoutManager, MouseInputListener, PropertyChangeListener,
WindowFocusListener, SwingConstants {
public void windowGainedFocus(WindowEvent e) {
}
public void windowLostFocus(WindowEvent e) {
cancelResize();
}
public void componentResized(ComponentEvent e) {
Rectangle parentNewBounds = ((Component) e.getSource()).getBounds();
JInternalFrame.JDesktopIcon icon = null;
if (frame != null) {
icon = frame.getDesktopIcon();
if (frame.isMaximum()) {
frame.setBounds(0, 0, parentNewBounds.width,
parentNewBounds.height);
}
}
if (icon != null) {
Rectangle iconBounds = icon.getBounds();
int y = iconBounds.y +
(parentNewBounds.height - parentBounds.height);
icon.setBounds(iconBounds.x, y,
iconBounds.width, iconBounds.height);
}
if (!parentBounds.equals(parentNewBounds)) {
parentBounds = parentNewBounds;
}
if (frame != null) frame.validate();
}
public void componentMoved(ComponentEvent e) {}
public void componentShown(ComponentEvent e) {}
public void componentHidden(ComponentEvent e) {}
public void internalFrameClosed(InternalFrameEvent e) {
frame.removeInternalFrameListener(getHandler());
}
public void internalFrameActivated(InternalFrameEvent e) {
if (!isKeyBindingRegistered()){
setKeyBindingRegistered(true);
setupMenuOpenKey();
setupMenuCloseKey();
}
if (isKeyBindingRegistered())
setKeyBindingActive(true);
}
public void internalFrameDeactivated(InternalFrameEvent e) {
setKeyBindingActive(false);
}
public void internalFrameClosing(InternalFrameEvent e) { }
public void internalFrameOpened(InternalFrameEvent e) { }
public void internalFrameIconified(InternalFrameEvent e) { }
public void internalFrameDeiconified(InternalFrameEvent e) { }
public void addLayoutComponent(String name, Component c) {}
public void removeLayoutComponent(Component c) {}
public Dimension preferredLayoutSize(Container c) {
Dimension result;
Insets i = frame.getInsets();
result = new Dimension(frame.getRootPane().getPreferredSize());
result.width += i.left + i.right;
result.height += i.top + i.bottom;
if(getNorthPane() != null) {
Dimension d = getNorthPane().getPreferredSize();
result.width = Math.max(d.width, result.width);
result.height += d.height;
}
if(getSouthPane() != null) {
Dimension d = getSouthPane().getPreferredSize();
result.width = Math.max(d.width, result.width);
result.height += d.height;
}
if(getEastPane() != null) {
Dimension d = getEastPane().getPreferredSize();
result.width += d.width;
result.height = Math.max(d.height, result.height);
}
if(getWestPane() != null) {
Dimension d = getWestPane().getPreferredSize();
result.width += d.width;
result.height = Math.max(d.height, result.height);
}
return result;
}
public Dimension minimumLayoutSize(Container c) {
Dimension result = new Dimension();
if (getNorthPane() != null &&
getNorthPane() instanceof BasicInternalFrameTitlePane) {
result = new Dimension(getNorthPane().getMinimumSize());
}
Insets i = frame.getInsets();
result.width += i.left + i.right;
result.height += i.top + i.bottom;
return result;
}
public void layoutContainer(Container c) {
Insets i = frame.getInsets();
int cx, cy, cw, ch;
cx = i.left;
cy = i.top;
cw = frame.getWidth() - i.left - i.right;
ch = frame.getHeight() - i.top - i.bottom;
if(getNorthPane() != null) {
Dimension size = getNorthPane().getPreferredSize();
if (DefaultLookup.getBoolean(frame, BasicInternalFrameUI.this,
"InternalFrame.layoutTitlePaneAtOrigin", false)) {
cy = 0;
ch += i.top;
getNorthPane().setBounds(0, 0, frame.getWidth(),
size.height);
}
else {
getNorthPane().setBounds(cx, cy, cw, size.height);
}
cy += size.height;
ch -= size.height;
}
if(getSouthPane() != null) {
Dimension size = getSouthPane().getPreferredSize();
getSouthPane().setBounds(cx, frame.getHeight()
- i.bottom - size.height,
cw, size.height);
ch -= size.height;
}
if(getWestPane() != null) {
Dimension size = getWestPane().getPreferredSize();
getWestPane().setBounds(cx, cy, size.width, ch);
cw -= size.width;
cx += size.width;
}
if(getEastPane() != null) {
Dimension size = getEastPane().getPreferredSize();
getEastPane().setBounds(cw - size.width, cy, size.width, ch);
cw -= size.width;
}
if(frame.getRootPane() != null) {
frame.getRootPane().setBounds(cx, cy, cw, ch);
}
}
public void mousePressed(MouseEvent e) { }
public void mouseEntered(MouseEvent e) { }
public void mouseMoved(MouseEvent e) { }
public void mouseExited(MouseEvent e) { }
public void mouseClicked(MouseEvent e) { }
public void mouseReleased(MouseEvent e) { }
public void mouseDragged(MouseEvent e) { }
public void propertyChange(PropertyChangeEvent evt) {
String prop = evt.getPropertyName();
JInternalFrame f = (JInternalFrame)evt.getSource();
Object newValue = evt.getNewValue();
Object oldValue = evt.getOldValue();
if (JInternalFrame.IS_CLOSED_PROPERTY == prop) {
if (newValue == Boolean.TRUE) {
cancelResize();
if ((frame.getParent() != null) && componentListenerAdded) {
frame.getParent().removeComponentListener(componentListener);
}
closeFrame(f);
}
} else if (JInternalFrame.IS_MAXIMUM_PROPERTY == prop) {
if(newValue == Boolean.TRUE) {
maximizeFrame(f);
} else {
minimizeFrame(f);
}
} else if(JInternalFrame.IS_ICON_PROPERTY == prop) {
if (newValue == Boolean.TRUE) {
iconifyFrame(f);
} else {
deiconifyFrame(f);
}
} else if (JInternalFrame.IS_SELECTED_PROPERTY == prop) {
if (newValue == Boolean.TRUE && oldValue == Boolean.FALSE) {
activateFrame(f);
} else if (newValue == Boolean.FALSE &&
oldValue == Boolean.TRUE) {
deactivateFrame(f);
}
} else if (prop == "ancestor") {
if (newValue == null) {
cancelResize();
}
if (frame.getParent() != null) {
parentBounds = f.getParent().getBounds();
} else {
parentBounds = null;
}
if ((frame.getParent() != null) && !componentListenerAdded) {
f.getParent().addComponentListener(componentListener);
componentListenerAdded = true;
}
} else if (JInternalFrame.TITLE_PROPERTY == prop ||
prop == "closable" || prop == "iconable" ||
prop == "maximizable") {
Dimension dim = frame.getMinimumSize();
Dimension frame_dim = frame.getSize();
if (dim.width > frame_dim.width) {
frame.setSize(dim.width, frame_dim.height);
}
}
}
}
}