Searched defs:dialog (Results 1 - 25 of 108) sorted by relevance

12345

/openjdk7/jdk/test/java/awt/Component/F10TopToplevel/
H A DF10TopToplevel.java48 Dialog dialog; field in class:F10TopToplevel
86 dialog = new Dialog(frame);
87 dialog.setSize( 100,100 );
88 dialog.setVisible(true);
97 robot.mouseMove(dialog.getLocationOnScreen().x + dialog.getWidth()/2,
98 dialog.getLocationOnScreen().y + dialog.getHeight()/2 );
/openjdk7/jdk/test/javax/swing/JDialog/6639507/
H A Dbug6639507.java54 private static void assertEmptyTitle(Dialog dialog, String ctr) { argument
55 String title = dialog.getTitle();
/openjdk7/jdk/test/java/awt/Dialog/ValidateOnShow/
H A DValidateOnShow.java35 private static Dialog dialog = new Dialog((Frame)null); field in class:ValidateOnShow
49 System.out.println("Before showing: panel.isValid=" + panel.isValid() + " dialog.isValid=" + dialog.isValid());
50 dialog.setVisible(true);
52 System.out.println("After showing: panel.isValid=" + panel.isValid() + " dialog.isValid=" + dialog.isValid());
55 dialog.dispose();
56 throw new RuntimeException("The panel hasn't been validated upon showing the dialog");
59 dialog.setVisible(false);
65 dialog
[all...]
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest6559154.java42 private JDialog dialog; field in class:Test6559154
45 if (this.dialog != null) {
46 this.dialog.dispose();
58 this.dialog = new JDialog();
59 this.dialog.add(chooser);
60 this.dialog.setVisible(true);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXModalityProtocol.java31 * Sets modality mode on the dialog.
32 * Returns true if the call to this function made dialog
35 boolean setModal(XDialogPeer dialog, boolean modal); argument
38 * Returns whether or not modal dialog blocks win.
39 * If dialog is null checks whether or not this windows
40 * is blocked by any dialog
42 boolean isBlocked(XDialogPeer dialog, XWindowPeer win); argument
/openjdk7/jdk/test/java/awt/Choice/NonFocusablePopupMenuTest/
H A DNonFocusablePopupMenuTest.java89 It creates a dialog (with the instructions), and is the interface
101 private static TestDialog dialog; field in class:Sysout
105 dialog = new TestDialog( new Frame(), "Instructions" );
106 dialog.printInstructions( instructions );
107 dialog.setVisible(true);
113 dialog = new TestDialog( new Frame(), "Instructions" );
115 dialog.printInstructions( defInstr );
116 dialog.setVisible(true);
123 dialog.printInstructions( instructions );
129 dialog
[all...]
/openjdk7/jdk/test/java/awt/Component/UpdatingBootTime/
H A DUpdatingBootTime.java97 It creates a dialog (with the instructions), and is the interface
109 private static TestDialog dialog; field in class:Sysout
113 dialog = new TestDialog( new Frame(), "Instructions" );
114 dialog.printInstructions( instructions );
115 dialog.setVisible(true);
121 dialog = new TestDialog( new Frame(), "Instructions" );
123 dialog.printInstructions( defInstr );
124 dialog.setVisible(true);
131 dialog.printInstructions( instructions );
137 dialog
[all...]
/openjdk7/jdk/test/java/awt/Focus/ConsumeNextKeyTypedOnModalShowTest/
H A DConsumeNextKeyTypedOnModalShowTest.java44 Dialog dialog = new Dialog(frame, "Dialog", true); field in class:ConsumeNextKeyTypedOnModalShowTest
65 dialog.add(button);
66 dialog.pack();
71 dialog.setVisible(true);
81 // Show the dialog.
88 // Dispose the dialog.
91 dialog.dispose();
/openjdk7/jdk/test/java/awt/Focus/TypeAhead/
H A DTestFocusFreeze.java49 private static JDialog dialog; field in class:TestFocusFreeze
76 dialog = new JDialog(frame, "Dialog", true);
82 dialog.add(dlgButton);
83 dialog.setLocation(200, 0);
84 dialog.pack();
90 dialog.dispose();
101 // Right before the dialog will be shown, there will be called
104 dialog.setVisible(true);
/openjdk7/jdk/test/java/awt/Frame/InitialMaximizedTest/
H A DInitialMaximizedTest.java92 It creates a dialog (with the instructions), and is the interface
104 private static TestDialog dialog; field in class:Sysout
108 dialog = new TestDialog( new Frame(), "Instructions" );
109 dialog.printInstructions( instructions );
110 dialog.setVisible(true);
116 dialog = new TestDialog( new Frame(), "Instructions" );
118 dialog.printInstructions( defInstr );
119 dialog.setVisible(true);
126 dialog.printInstructions( instructions );
132 dialog
[all...]
/openjdk7/jdk/test/java/awt/Frame/ShownOnPack/
H A DShownOnPack.java103 It creates a dialog (with the instructions), and is the interface
115 private static TestDialog dialog; field in class:Sysout
119 dialog = new TestDialog( new Frame(), "Instructions" );
120 dialog.printInstructions( instructions );
121 dialog.setVisible(true);
127 dialog = new TestDialog( new Frame(), "Instructions" );
129 dialog.printInstructions( defInstr );
130 dialog.setVisible(true);
137 dialog.printInstructions( instructions );
143 dialog
[all...]
/openjdk7/jdk/test/java/awt/TextArea/TextAreaCursorTest/
H A DHoveringAndDraggingTest.java109 It creates a dialog (with the instructions), and is the interface
121 private static TestDialog dialog; field in class:Sysout
125 dialog = new TestDialog( new Frame(), "Instructions" );
126 dialog.printInstructions( instructions );
127 dialog.setVisible(true);
133 dialog = new TestDialog( new Frame(), "Instructions" );
135 dialog.printInstructions( defInstr );
136 dialog.setVisible(true);
143 dialog.printInstructions( instructions );
149 dialog
[all...]
/openjdk7/jdk/test/java/awt/TextField/ScrollSelectionTest/
H A DScrollSelectionTest.java90 It creates a dialog (with the instructions), and is the interface
102 private static TestDialog dialog; field in class:Sysout
106 dialog = new TestDialog( new Frame(), "Instructions" );
107 dialog.printInstructions( instructions );
108 dialog.show();
114 dialog = new TestDialog( new Frame(), "Instructions" );
116 dialog.printInstructions( defInstr );
117 dialog.show();
124 dialog.printInstructions( instructions );
130 dialog
[all...]
/openjdk7/jdk/test/java/awt/dnd/DnDFileGroupDescriptor/
H A DDnDFileGroupDescriptor.java85 private static TestDialog dialog; field in class:Sysout
89 dialog = new TestDialog( new Frame(), "Instructions" );
90 dialog.printInstructions( instructions );
91 dialog.show();
97 dialog = new TestDialog( new Frame(), "Instructions" );
99 dialog.printInstructions( defInstr );
100 dialog.show();
107 dialog.printInstructions( instructions );
113 dialog.displayMessage( messageIn );
/openjdk7/jdk/test/java/awt/event/MouseEvent/AWTPanelSmoothWheel/
H A DAWTPanelSmoothWheel.java125 It creates a dialog (with the instructions), and is the interface
137 private static TestDialog dialog; field in class:Sysout
141 dialog = new TestDialog( new Frame(), "Instructions" );
142 dialog.printInstructions( instructions );
143 dialog.setVisible(true);
149 dialog = new TestDialog( new Frame(), "Instructions" );
151 dialog.printInstructions( defInstr );
152 dialog.setVisible(true);
159 dialog.printInstructions( instructions );
165 dialog
[all...]
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/ConstructorsNullTest/
H A DConstructorsNullTest.java136 It creates a dialog (with the instructions), and is the interface
148 private static TestDialog dialog; field in class:Sysout
152 dialog = new TestDialog( new Frame(), "Instructions" );
153 dialog.printInstructions( instructions );
154 dialog.show();
160 dialog = new TestDialog( new Frame(), "Instructions" );
162 dialog.printInstructions( defInstr );
163 dialog.show();
170 dialog.printInstructions( instructions );
176 dialog
[all...]
/openjdk7/jdk/test/java/awt/FileDialog/MultipleMode/
H A DMultipleMode.java84 " 2. Verify that the file dialog doesn't allow the multiple file selection ",
85 " 3. Select any file and close the file dialog ",
88 " 6. Verify that the file dialog allows the multiple file selection ",
89 " 7. Select several files and close the file dialog ",
154 It creates a dialog (with the instructions), and is the interface
166 private static TestDialog dialog; field in class:Sysout
172 dialog = new TestDialog( new Frame(), "Instructions" );
173 dialog.printInstructions( instructions );
174 dialog.setVisible(true);
180 dialog
[all...]
/openjdk7/jdk/test/java/awt/FileDialog/RegexpFilterTest/
H A DRegexpFilterTest.java38 * are displayed in the dialog. This filter is generally specified as a regular
58 " 1. Press the 'Show' button and a file dialog will appear, ",
101 It creates a dialog (with the instructions), and is the interface
113 private static TestDialog dialog; field in class:Sysout
117 dialog = new TestDialog( new Frame(), "Instructions" );
118 dialog.printInstructions( instructions );
119 dialog.setVisible(true);
125 dialog = new TestDialog( new Frame(), "Instructions" );
127 dialog.printInstructions( defInstr );
128 dialog
[all...]
/openjdk7/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNonfocusableOwnerTest.java44 Dialog dialog; field in class:NonfocusableOwnerTest
64 dialog = new Dialog(frame, "Dialog");
65 dialog.setName("Dialog-owner");
66 dialog.setBounds(100, 0, 100, 100);
79 window1 = new Window(dialog);
86 test1(dialog, window1);
87 test2(dialog, window1, window2);
88 test3(dialog, window1, window2);
/openjdk7/jdk/test/java/awt/List/MouseDraggedOutCauseScrollingTest/
H A DMouseDraggedOutCauseScrollingTest.java121 It creates a dialog (with the instructions), and is the interface
133 private static TestDialog dialog; field in class:Sysout
137 dialog = new TestDialog( new Frame(), "Instructions" );
138 dialog.printInstructions( instructions );
139 dialog.setVisible(true);
145 dialog = new TestDialog( new Frame(), "Instructions" );
147 dialog.printInstructions( defInstr );
148 dialog.setVisible(true);
155 dialog.printInstructions( instructions );
161 dialog
[all...]
/openjdk7/jdk/test/java/awt/List/SetFontTest/
H A DSetFontTest.java109 It creates a dialog (with the instructions), and is the interface
121 private static TestDialog dialog; field in class:Sysout
125 dialog = new TestDialog( new Frame(), "Instructions" );
126 dialog.printInstructions( instructions );
127 dialog.setVisible(true);
133 dialog = new TestDialog( new Frame(), "Instructions" );
135 dialog.printInstructions( defInstr );
136 dialog.setVisible(true);
143 dialog.printInstructions( instructions );
149 dialog
[all...]
/openjdk7/jdk/test/java/awt/PrintJob/PageSetupDlgBlockingTest/
H A DPageSetupDlgBlockingTest.java27 @summary Native modal dialog shouldn't block event dispatching when called on EventDispatchThread.
58 "This test verifies that native modal 'Page Setup' dialog doesn't block event",
64 " - 'Page Setup' dialog will appear.",
65 "2. Drag the dialog over the 'Test Frame' so that to enforce its button redraw:",
86 // Show PAINT events only when the dialog is displayed.
122 It creates a dialog (with the instructions), and is the interface
134 private static TestDialog dialog; field in class:Sysout
138 dialog = new TestDialog( new Frame(), "Instructions" );
139 dialog.printInstructions( instructions );
140 dialog
[all...]
/openjdk7/jdk/test/java/awt/PrintJob/PrintCheckboxTest/
H A DPrintCheckboxManualTest.java83 "2. Select a printer in the print dialog and proceed",
170 It creates a dialog (with the instructions), and is the interface
182 private static TestDialog dialog; field in class:Sysout
186 dialog = new TestDialog( new Frame(), "Instructions" );
187 dialog.printInstructions( instructions );
188 dialog.setVisible(true);
194 dialog = new TestDialog( new Frame(), "Instructions" );
196 dialog.printInstructions( defInstr );
197 dialog.setVisible(true);
204 dialog
[all...]
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnD/
H A DImageDecoratedDnD.java105 private static TestDialog dialog; field in class:Sysout
108 dialog = new TestDialog(new Frame(), "Instructions");
109 dialog.printInstructions(instructions);
110 dialog.show();
115 dialog = new TestDialog(new Frame(), "Instructions");
117 dialog.printInstructions(defInstr);
118 dialog.show();
124 dialog.printInstructions(instructions);
129 dialog.displayMessage(messageIn);
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnDInOut/
H A DImageDecoratedDnDInOut.java140 private static TestDialog dialog; field in class:Sysout
143 dialog = new TestDialog(new Frame(), "Instructions");
144 dialog.printInstructions(instructions);
145 dialog.show();
150 dialog = new TestDialog(new Frame(), "Instructions");
152 dialog.printInstructions(defInstr);
153 dialog.show();
159 dialog.printInstructions(instructions);
164 dialog.displayMessage(messageIn);

Completed in 74 milliseconds

12345