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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
package vtk;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import java.awt.event.InputEvent;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.awt.event.MouseWheelEvent;
import java.awt.event.MouseWheelListener;
import javax.swing.Timer;
/**
* Java AWT component that encapsulate vtkGenericRenderWindowInteractor,
* vtkPlaneWidget, vtkBoxWidget and extends vtkPanel
*
* @see vtkPanel
* @author Kitware
*/
public class vtkCanvas extends vtkPanel implements MouseListener, MouseMotionListener, MouseWheelListener, KeyListener {
private static final long serialVersionUID = 1L;
protected vtkGenericRenderWindowInteractor iren = new vtkGenericRenderWindowInteractor();
protected Timer timer = new Timer(10, new DelayAction());
protected int ctrlPressed = 0;
protected int shiftPressed = 0;
protected vtkPlaneWidget pw = new vtkPlaneWidget();
protected vtkBoxWidget bw = new vtkBoxWidget();
public void Delete() {
iren = null;
pw = null;
bw = null;
super.Delete();
}
public vtkCanvas() {
super();
Initialize();
}
public vtkCanvas(vtkRenderWindow renwin) {
super(renwin);
Initialize();
}
protected void Initialize() {
iren.SetRenderWindow(rw);
iren.TimerEventResetsTimerOff();
iren.AddObserver("CreateTimerEvent", this, "StartTimer");
iren.AddObserver("DestroyTimerEvent", this, "DestroyTimer");
iren.SetSize(200, 200);
iren.ConfigureEvent();
pw.AddObserver("EnableEvent", this, "BeginPlaneInteraction");
bw.AddObserver("EnableEvent", this, "BeginBoxInteraction");
pw.SetKeyPressActivationValue('l');
bw.SetKeyPressActivationValue('b');
pw.SetInteractor(iren);
bw.SetInteractor(iren);
addComponentListener(new ComponentAdapter() {
public void componentResized(ComponentEvent event) {
// The Canvas is being resized, get the new size
int width = getWidth();
int height = getHeight();
setSize(width, height);
}
});
ren.SetBackground(0.0, 0.0, 0.0);
// Setup same interactor style than vtkPanel
vtkInteractorStyleTrackballCamera style = new vtkInteractorStyleTrackballCamera();
iren.SetInteractorStyle(style);
}
public void StartTimer() {
if (timer.isRunning())
timer.stop();
timer.setRepeats(true);
timer.start();
}
public void DestroyTimer() {
if (timer.isRunning())
timer.stop();
}
/**
* Replace by getRenderWindowInteractor()
*/
@Deprecated
public vtkGenericRenderWindowInteractor getIren() {
return this.iren;
}
public vtkGenericRenderWindowInteractor getRenderWindowInteractor() {
return this.iren;
}
public void setInteractorStyle(vtkInteractorStyle style) {
iren.SetInteractorStyle(style);
}
public void addToPlaneWidget(vtkProp3D prop) {
pw.SetProp3D(prop);
pw.PlaceWidget();
}
public void addToBoxWidget(vtkProp3D prop) {
bw.SetProp3D(prop);
bw.PlaceWidget();
}
public void BeginPlaneInteraction() {
System.out.println("Plane widget begin interaction");
}
public void BeginBoxInteraction() {
System.out.println("Box widget begin interaction");
}
public void setSize(int x, int y) {
super.setSize(x, y);
if (windowset == 1) {
Lock();
rw.SetSize(x, y);
iren.SetSize(x, y);
iren.ConfigureEvent();
UnLock();
}
}
public void mouseClicked(MouseEvent e) {
}
public void mousePressed(MouseEvent e) {
if (ren.VisibleActorCount() == 0)
return;
Lock();
rw.SetDesiredUpdateRate(5.0);
lastX = e.getX();
lastY = e.getY();
ctrlPressed = (e.getModifiers() & InputEvent.CTRL_MASK) == InputEvent.CTRL_MASK ? 1 : 0;
shiftPressed = (e.getModifiers() & InputEvent.SHIFT_MASK) == InputEvent.SHIFT_MASK ? 1 : 0;
iren.SetEventInformationFlipY(e.getX(), e.getY(), ctrlPressed, shiftPressed, '0', 0, "0");
if ((e.getModifiers() & InputEvent.BUTTON1_MASK) == InputEvent.BUTTON1_MASK) {
iren.LeftButtonPressEvent();
} else if ((e.getModifiers() & InputEvent.BUTTON2_MASK) == InputEvent.BUTTON2_MASK) {
iren.MiddleButtonPressEvent();
} else if ((e.getModifiers() & InputEvent.BUTTON3_MASK) == InputEvent.BUTTON3_MASK) {
iren.RightButtonPressEvent();
}
UnLock();
}
public void mouseReleased(MouseEvent e) {
rw.SetDesiredUpdateRate(0.01);
ctrlPressed = (e.getModifiers() & InputEvent.CTRL_MASK) == InputEvent.CTRL_MASK ? 1 : 0;
shiftPressed = (e.getModifiers() & InputEvent.SHIFT_MASK) == InputEvent.SHIFT_MASK ? 1 : 0;
iren.SetEventInformationFlipY(e.getX(), e.getY(), ctrlPressed, shiftPressed, '0', 0, "0");
if ((e.getModifiers() & InputEvent.BUTTON1_MASK) == InputEvent.BUTTON1_MASK) {
Lock();
iren.LeftButtonReleaseEvent();
UnLock();
}
if ((e.getModifiers() & InputEvent.BUTTON2_MASK) == InputEvent.BUTTON2_MASK) {
Lock();
iren.MiddleButtonReleaseEvent();
UnLock();
}
if ((e.getModifiers() & InputEvent.BUTTON3_MASK) == InputEvent.BUTTON3_MASK) {
Lock();
iren.RightButtonReleaseEvent();
UnLock();
}
}
public void mouseEntered(MouseEvent e) {
this.requestFocus();
iren.SetEventInformationFlipY(e.getX(), e.getY(), 0, 0, '0', 0, "0");
iren.EnterEvent();
}
public void mouseExited(MouseEvent e) {
iren.SetEventInformationFlipY(e.getX(), e.getY(), 0, 0, '0', 0, "0");
iren.LeaveEvent();
}
public void mouseMoved(MouseEvent e) {
lastX = e.getX();
lastY = e.getY();
ctrlPressed = (e.getModifiers() & InputEvent.CTRL_MASK) == InputEvent.CTRL_MASK ? 1 : 0;
shiftPressed = (e.getModifiers() & InputEvent.SHIFT_MASK) == InputEvent.SHIFT_MASK ? 1 : 0;
iren.SetEventInformationFlipY(e.getX(), e.getY(), ctrlPressed, shiftPressed, '0', 0, "0");
Lock();
iren.MouseMoveEvent();
UnLock();
}
public void mouseDragged(MouseEvent e) {
if (ren.VisibleActorCount() == 0)
return;
ctrlPressed = (e.getModifiers() & InputEvent.CTRL_MASK) == InputEvent.CTRL_MASK ? 1 : 0;
shiftPressed = (e.getModifiers() & InputEvent.SHIFT_MASK) == InputEvent.SHIFT_MASK ? 1 : 0;
iren.SetEventInformationFlipY(e.getX(), e.getY(), ctrlPressed, shiftPressed, '0', 0, "0");
Lock();
iren.MouseMoveEvent();
UnLock();
UpdateLight();
}
public void mouseWheelMoved(MouseWheelEvent e) {
if (ren.VisibleActorCount() == 0)
return;
ctrlPressed = (e.getModifiers() & InputEvent.CTRL_MASK) == InputEvent.CTRL_MASK ? 1 : 0;
shiftPressed = (e.getModifiers() & InputEvent.SHIFT_MASK) == InputEvent.SHIFT_MASK ? 1 : 0;
Lock();
if (e.getWheelRotation() > 0) {
iren.SetEventInformationFlipY(e.getX(), e.getY(), ctrlPressed, shiftPressed, '0', 0, "0");
iren.MouseWheelBackwardEvent();
}
else if (e.getWheelRotation() < 0) {
iren.SetEventInformationFlipY(e.getX(), e.getY(), ctrlPressed, shiftPressed, '0', 0, "0");
iren.MouseWheelForwardEvent();
}
UnLock();
UpdateLight();
}
public void keyTyped(KeyEvent e) {
}
public void keyPressed(KeyEvent e) {
if (ren.VisibleActorCount() == 0)
return;
char keyChar = e.getKeyChar();
ctrlPressed = (e.getModifiers() & InputEvent.CTRL_MASK) == InputEvent.CTRL_MASK ? 1 : 0;
shiftPressed = (e.getModifiers() & InputEvent.SHIFT_MASK) == InputEvent.SHIFT_MASK ? 1 : 0;
iren.SetEventInformationFlipY(lastX, lastY, ctrlPressed, shiftPressed, keyChar, 0, String.valueOf(keyChar));
Lock();
iren.KeyPressEvent();
iren.CharEvent();
UnLock();
}
public void keyReleased(KeyEvent e) {
}
private class DelayAction implements ActionListener {
public void actionPerformed(ActionEvent evt) {
Lock();
iren.TimerEvent();
UpdateLight();
UnLock();
}
}
}
|