-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdragtext.html
50 lines (42 loc) · 1.23 KB
/
dragtext.html
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
<html>
<head><title>BeanShell Example - Drag Text Example</title></head>
<body bgcolor="#ffffff">
<a href="../home.html"><img border=0 src="../images/homebutton.gif"><br>Home</a>
<p>
<h1>Drag Text Example</h1>
<img src="dragtext.gif">
<p>
This example demonstrates a scripted event listener. The scripted
mouseDragged() method is called in response to mouse events in the frame.
<p>
Note that the painted text is not preserved when the window is redrawn.
To accomplish that you could use the helper class BshCanvas, which provides
buffered drawing and also allows for callbacks to a scripted paint() method.
See the <a href="graph.html">graph example</a>.
<p>
<p>
<center>
<table width=100% cellpadding=5>
<tr><td bgcolor="#afefac">
<font size=+1><a href="dragText.bsh">dragText.bsh</a> - Drag text with the mouse</font>
</td></tr>
<tr><td bgcolor="#cfefcc">
<pre>
dragText() {
f = new Frame("Drag in the box");
f.setFont( new Font("Serif", Font.BOLD, 24) );
f.setSize(300, 300);
f.show();
gc = f.getGraphics();
gc.setColor(Color.cyan);
mouseDragged( e ) {
gc.drawString("Drag Me!", e.getX(), e.getY());
}
mouseMoved( e ) { }
f.addMouseMotionListener( this );
}
</pre>
</td></tr>
</table>
</center>
<p>