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
|
/*
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code 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
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import java.awt.BorderLayout;
import java.awt.Checkbox;
import java.awt.Frame;
import java.awt.GridLayout;
import java.awt.Label;
import java.awt.Menu;
import java.awt.MenuBar;
import java.awt.Panel;
import java.awt.Rectangle;
import java.awt.TextField;
import java.awt.event.ActionListener;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
/*
* @test
* @bug 4017504
* @summary Test dynamically adding and removing a menu bar
* @library /java/awt/regtesthelpers
* @build PassFailJFrame
* @run main/manual AddRemoveMenuBarTest_3
*/
public class AddRemoveMenuBarTest_3 {
private static final String INSTRUCTIONS = """
A frame at (100,100) contains two (2) rows of three (3) text
fields each, and under this, a checkbox labelled 'Use menubar'.
The first row's text fields pertain to the x coordinates and
the second row's text fields pertain to the y coordinates.
The first column, 'request', is an input only field for frame
location. (press enter to apply).
The second column, 'reported', is an output only
field reporting frame location.
The third column, 'inset', is an output only field reporting
the frame's inset values.
You can click the 'Use menubar' checkbox to alternately add
and remove a menu bar containing an (empty) 'Help' menu.
After a menubar is added or removed, the frame should not
have been resized nor repositioned on the screen and the
y inset should accurately reflect the presence or absence
of the menubar within the inset.
The insets always include the window manager's title and border
decorations, if any.
Upon test completion, click Pass or Fail appropriately.
""";
public static void main(String[] args) throws Exception {
PassFailJFrame.builder()
.title("AddRemoveMenuBarTest_3 Instructions")
.instructions(INSTRUCTIONS)
.testTimeOut(5)
.rows(30)
.columns(38)
.testUI(AddRemoveMenuBar_3::new)
.build()
.awaitAndCheck();
}
}
class AddRemoveMenuBar_3 extends Frame {
TextField xfield;
TextField yfield;
TextField xfield_out;
TextField yfield_out;
TextField xinset_out;
TextField yinset_out;
Checkbox menu_checkbox;
MenuBar menubar;
public AddRemoveMenuBar_3() {
super("AddRemoveMenuBar_3");
menubar = new MenuBar();
menubar.setHelpMenu(new Menu("Help"));
setLayout(new BorderLayout());
Panel p = new Panel();
add("Center", p);
p.setLayout(new GridLayout(3, 3));
menu_checkbox = new Checkbox("Use menubar");
add("South", menu_checkbox);
xfield = new TextField();
yfield = new TextField();
xfield_out = new TextField();
xfield_out.setEditable(false);
xfield_out.setFocusable(false);
yfield_out = new TextField();
yfield_out.setEditable(false);
yfield_out.setFocusable(false);
xinset_out = new TextField();
xinset_out.setEditable(false);
xinset_out.setFocusable(false);
yinset_out = new TextField();
yinset_out.setEditable(false);
yinset_out.setFocusable(false);
p.add(new Label("request"));
p.add(new Label("reported"));
p.add(new Label("inset"));
p.add(xfield);
p.add(xfield_out);
p.add(xinset_out);
p.add(yfield);
p.add(yfield_out);
p.add(yinset_out);
setSize(200, 200);
setLocation(100, 100);
addComponentListener(new ComponentAdapter() {
@Override
public void componentMoved(ComponentEvent e) {
xfield_out.setText(Integer.toString(getLocation().x));
yfield_out.setText(Integer.toString(getLocation().y));
xinset_out.setText(Integer.toString(getInsets().left));
yinset_out.setText(Integer.toString(getInsets().top));
}
});
ActionListener setLocationListener = e -> {
Rectangle r = getBounds();
try {
r.x = Integer.parseInt(xfield.getText());
r.y = Integer.parseInt(yfield.getText());
} catch (java.lang.NumberFormatException ignored) {
}
setLocation(r.x, r.y);
};
xfield.addActionListener(setLocationListener);
yfield.addActionListener(setLocationListener);
menu_checkbox.addItemListener(e -> {
if (menu_checkbox.getState()) {
setMenuBar(menubar);
} else {
setMenuBar(null);
}
validate();
xinset_out.setText(Integer.toString(getInsets().left));
yinset_out.setText(Integer.toString(getInsets().top));
});
}
}
|