1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
/*
* @(#)ResizableDialog.java
*
* Copyright 2002 - 2005 JIDE Software Inc. All rights reserved.
*/
package com.jidesoft.swing;
import com.jidesoft.utils.PortingUtils;
import javax.swing.*;
import javax.swing.border.Border;
import java.awt.*;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import java.awt.event.KeyEvent;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
/**
* A resizable undecorated dialog.
*/
public class ResizableDialog extends JDialog implements ResizableSupport {
private ResizablePanel _resizablePanel;
private boolean _routingKeyStrokes;
public ResizableDialog() throws HeadlessException {
initComponents();
}
public ResizableDialog(Frame owner) throws HeadlessException {
super(owner);
initComponents();
}
public ResizableDialog(Frame owner, boolean modal) throws HeadlessException {
super(owner, modal);
initComponents();
}
public ResizableDialog(Frame owner, String title) throws HeadlessException {
super(owner, title);
initComponents();
}
public ResizableDialog(Frame owner, String title, boolean modal) throws HeadlessException {
super(owner, title, modal);
initComponents();
}
public ResizableDialog(Frame owner, String title, boolean modal, GraphicsConfiguration gc) {
super(owner, title, modal, gc);
initComponents();
}
public ResizableDialog(Dialog owner) throws HeadlessException {
super(owner);
initComponents();
}
public ResizableDialog(Dialog owner, boolean modal) throws HeadlessException {
super(owner, modal);
initComponents();
}
public ResizableDialog(Dialog owner, String title) throws HeadlessException {
super(owner, title);
initComponents();
}
public ResizableDialog(Dialog owner, String title, boolean modal) throws HeadlessException {
super(owner, title, modal);
initComponents();
}
public ResizableDialog(Dialog owner, String title, boolean modal, GraphicsConfiguration gc) throws HeadlessException {
super(owner, title, modal, gc);
initComponents();
}
/**
* Initializes the resizable window.
*/
protected void initComponents() {
setModal(false);
setUndecorated(true);
_resizablePanel = new ResizablePanel() {
@Override
protected Resizable createResizable() {
return new Resizable(this) {
@Override
public void resizing(int resizeDir, int newX, int newY, int newW, int newH) {
Container container = ResizableDialog.this.getContentPane();
PortingUtils.setPreferredSize(container, new Dimension(newW, newH));
if (ResizableDialog.this.isUndecorated()) {
ResizableDialog.this.setBounds(newX, newY, newW, newH);
}
ResizableDialog.this.resizing();
}
@Override
public void beginResizing(int resizeCorner) {
super.beginResizing(resizeCorner);
ResizableDialog.this.beginResizing();
}
@Override
public void endResizing(int resizeCorner) {
super.endResizing(resizeCorner);
ResizableDialog.this.endResizing();
}
@Override
public boolean isTopLevel() {
return true;
}
};
}
@Override
protected boolean processKeyBinding(KeyStroke ks, KeyEvent e, int condition, boolean pressed) {
boolean processed = super.processKeyBinding(ks, e, condition, pressed);
if (processed || e.isConsumed() || !isRoutingKeyStrokes())
return processed;
// check if the root pane of the source component has any registered action
if (e.getSource() instanceof JComponent) {
JRootPane rootPane = ((JComponent) e.getSource()).getRootPane();
Class componentClass = rootPane.getClass();
while (componentClass != JComponent.class && componentClass != null) {
componentClass = componentClass.getSuperclass();
}
try {
if (componentClass != null) {
Method m = componentClass.getDeclaredMethod("processKeyBinding", new Class[]{KeyStroke.class, KeyEvent.class, int.class, boolean.class});
m.setAccessible(true);
processed = (Boolean) m.invoke(rootPane, ks, e, JComponent.WHEN_IN_FOCUSED_WINDOW, pressed);
}
}
catch (NoSuchMethodException e1) {
e1.printStackTrace();
}
catch (InvocationTargetException e1) {
e1.printStackTrace();
}
catch (IllegalAccessException e1) {
e1.printStackTrace();
}
}
if (processed || e.isConsumed()) {
return processed;
}
Component routingParent = getRoutingComponent();
if (routingParent == null) {
return false;
}
KeyboardFocusManager.getCurrentKeyboardFocusManager().redispatchEvent(
routingParent, e);
return (e.isConsumed());
}
};
setContentPane(_resizablePanel);
// make sure the content pane resized along with the window.
addComponentListener(new ComponentAdapter() {
@Override
public void componentResized(ComponentEvent e) {
_resizablePanel.setSize(getSize());
}
});
}
protected void beginResizing() {
}
protected void resizing() {
}
protected void endResizing() {
}
/**
* Sets the border of the resizable window. Do not pass in an empty border. Otherwise the window won't be
* resizable.
*
* @param border the border.
*/
public void setBorder(Border border) {
_resizablePanel.setBorder(border);
}
/**
* Gets the border of the resizable window. By default, <code>UIManagerLookup.getBorder("Resizable.resizeBorder")</code>
* will be used.
*
* @return the border.
*/
public Border getBorder() {
return _resizablePanel.getBorder();
}
/**
* Gets the underlying Resizable.
*
* @return the Resizable.
*/
public Resizable getResizable() {
return _resizablePanel.getResizable();
}
public Component getRoutingComponent() {
return getOwner();
}
public void setRoutingKeyStrokes(boolean routingKeyStrokes) {
_routingKeyStrokes = routingKeyStrokes;
}
public boolean isRoutingKeyStrokes() {
return _routingKeyStrokes;
}
}
|