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
|
/* LightweightContainer.java --
Copyright (C) 2006 Red Hat
This file is part of Mauve.
Mauve is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
Mauve is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with Mauve; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
*/
// Tags: JDK 1.4
package gnu.testlet.java.awt.Container;
import gnu.testlet.TestHarness;
import gnu.testlet.Testlet;
import gnu.testlet.java.awt.LocationTests;
import java.awt.*;
public class LightweightContainer implements Testlet
{
public void test (TestHarness harness)
{
testLoc(harness);
testLoc2(harness);
testWindow(harness);
}
// Tests a Window containing a Frame and a Lightweight Container
public void testWindow(TestHarness harness)
{
Robot r = harness.createRobot();
Frame f = new Frame();
testContainer tc = new testContainer();
f.setSize(500, 500);
tc.setBounds(0, 0, 500, 500);
f.add(tc);
f.show();
// There is a delay to avoid any race conditions.
r.waitForIdle();
r.delay(1000);
// bounds of red rectangle (1 pixel wide border)
Rectangle bounds = tc.getBounds();
Point loc = f.getLocationOnScreen();
Insets i = f.getInsets();
bounds.x = loc.x + i.left;
bounds.y = loc.y + i.top;
// bounds of blue rectangle inside red rectangle
Rectangle bounds2 = new Rectangle(bounds.x + 1, bounds.y + 1, bounds.width - 2, bounds.height - 2);
LocationTests.checkRectangleOuterColors(harness, r, bounds2, Color.red, true);
LocationTests.checkRectangleCornerColors(harness, r, bounds2, Color.red, false);
// There is a delay so the tester can see the result.
r.delay(3000);
}
// Tests the location of a Lightweight Container containing
// a heavyweight component, which is also in a heavyweight
public void testLoc(TestHarness harness)
{
Robot r = harness.createRobot();
Color bgHW_c = Color.red;
Color fgHW_c = Color.blue;
testPanel bgHW = new testPanel(bgHW_c);
Container fgLW = new Container();
testPanel fgHW = new testPanel(fgHW_c);
Frame f = new Frame();
int bgHW_x = 0;
int bgHW_y = 0;
int bgHW_w = 500;
int bgHW_h = 500;
int fgLW_x = 50;
int fgLW_y = 60;
int fgLW_w = 200;
int fgLW_h = 200;
int fgHW_x = 70;
int fgHW_y = 40;
int fgHW_w = 100;
int fgHW_h = 100;
f.setSize(500, 500);
bgHW.setBounds(bgHW_x, bgHW_y, bgHW_w, bgHW_h);
fgLW.setBounds(fgLW_x, fgLW_y, fgLW_w, fgLW_h);
fgHW.setBounds(fgHW_x, fgHW_y, fgHW_w, fgHW_h);
f.add(bgHW);
bgHW.add(fgLW);
fgLW.add(fgHW);
f.show();
// There is a delay to avoid any race conditions.
r.waitForIdle();
r.delay(1000);
Insets i = f.getInsets();
// check the two pixels adjacent to each corner of the fgHW
Point p = f.getLocationOnScreen();
fgHW_x = p.x + i.left + fgHW_x + fgLW_x;
fgHW_y = p.y + i.top + fgHW_y + fgLW_y;
Rectangle b = new Rectangle(fgHW_x, fgHW_y, fgHW_w, fgHW_h);
LocationTests.checkRectangleOuterColors(harness, r, b, bgHW_c, true);
// check the fgHW's corner pixels.
LocationTests.checkRectangleCornerColors(harness, r, b, fgHW_c, true);
LocationTests.checkRectangleCornerColors(harness, r, b, bgHW_c, false);
// check the two pixels adjacent to each corner of the fgLW
p = f.getLocationOnScreen();
fgLW_x = p.x + i.left + fgLW_x;
fgLW_y = p.y + i.top + fgLW_y;
LocationTests.checkRectangleOuterColors(harness, r, new Rectangle(fgLW_x, fgLW_y, fgLW_w, fgLW_h), bgHW_c, true);
// There is a delay so the tester can see the result.
r.delay(3000);
}
// Tests the location of a Lightweight Container next to
// a heavyweight panel, both in a frame.
public void testLoc2(TestHarness harness)
{
Robot r = harness.createRobot();
Frame f = new Frame();
f.setLayout(null);
f.setBackground(Color.green);
testContainer tc = new testContainer();
f.add(tc);
f.setSize(500, 500);
tc.setBounds(100, 0, 200, 200);
testPanel p = new testPanel(Color.yellow);
tc.add(p);
p.setBounds(10, 10, 50, 50);
f.show();
// There is a delay to avoid any race conditions.
r.waitForIdle();
r.delay(1000);
Point pt = p.getLocationOnScreen();
tc.move(150, 50);
r.delay(1000);
Point pt2 = p.getLocationOnScreen();
harness.check(pt2.x, (pt.x + 50));
harness.check(pt2.y, (pt.y + 50));
// There is a delay so the tester can see the result.
r.delay(3000);
}
class testPanel extends Panel
{
Color c;
public testPanel(Color c)
{
super(null);
this.c = c;
}
public void paint(Graphics g)
{
Rectangle bounds = new Rectangle(0,
0,
this.getSize().width,
this.getSize().height);
g.setColor(c);
g.fillRect(bounds.x, bounds.y, bounds.width, bounds.height);
}
}
class testContainer extends Container
{
public testContainer()
{
super();
}
public void paint(Graphics g)
{
Rectangle bounds = new Rectangle(0,
0,
this.getSize().width,
this.getSize().height);
g.setColor(Color.red);
g.drawRect(bounds.x, bounds.y, bounds.width - 1, bounds.height - 1);
g.setColor(Color.blue);
g.fillRect(bounds.x + 1, bounds.y + 1, bounds.width - 2, bounds.height - 2);
}
}
}
|