summaryrefslogtreecommitdiff
path: root/java/gjt/test/TenPixelBorder.java
blob: bab694d0fb16f5a5b632f0a97156d6038fe26e20 (plain)
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
package gjt.test;

import java.awt.*;

public class TenPixelBorder extends Panel {
	public TenPixelBorder(Component borderMe) { 
		setLayout(new BorderLayout());
		add("Center", borderMe);
	}
	public void paint(Graphics g) {
		Dimension mySize   = size();
		Insets    myInsets = insets();

		g.setColor(Color.gray);

		// Top Inset area
		g.fillRect(0,
		           0, 
				   mySize.width,  
				   myInsets.top);

		// Left Inset area
		g.fillRect(0, 
		           0, 
				   myInsets.left, 
				   mySize.height);

		// Right Inset area
		g.fillRect(mySize.width - myInsets.right, 
		           0, 
		           myInsets.right, 
				   mySize.height);

		// Bottom Inset area
		g.fillRect(0, 
		           mySize.height - myInsets.bottom, 
				   mySize.width,
				   mySize.height);
	}
	public Insets insets() { 
		return new Insets(10,10,10,10); 
	}
	
}