Searched refs:dialog (Results 126 - 134 of 134) sorted by relevance

123456

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrinterJob.java263 * This variable is set after the Print dialog
265 * the print dialog, then this variable is 0.
305 * by a user dialog.
308 * to (re-)display a dialog, or to print the doc, these are all
313 * the dialog code does use getter to pull some of these values.
393 * Display a dialog to the user allowing the modification of a
396 * in the page setup dialog.
397 * If the user cancels the dialog, then the method returns the
399 * If the user okays the dialog then the method returns a new
405 * @return the original <code>page</code> object if the dialog
[all...]
H A DWWindowPeer.java383 public void setModalBlocked(Dialog dialog, boolean blocked) { argument
387 WWindowPeer blockerPeer = (WWindowPeer)dialog.getPeer();
399 modalDisable(dialog, blockerPeer.getHWnd());
408 modalEnable(dialog);
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/resources/
H A Djconsole.js358 * specified, file dialog is shown to choose the script.
365 // file not specified, show file dialog to choose
641 * Opens a file dialog box
651 var dialog = new JFileChooser(curDir);
652 var res = dialog.showOpenDialog(null);
654 result = dialog.getSelectedFile().getAbsolutePath();
667 fileDialog.docString = "show a FileOpen dialog box";
733 * Shows a prompt dialog box
756 * Shows a confirmation dialog box
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunToolkit.java1273 * presence of a modal dialog.
1275 * by modal dialog, see {@link java.awt.Dialog}.
1333 // The following is used by the Java Plug-in to coordinate dialog modality
1349 public void notifyModalityPushed(Dialog dialog) { argument
1350 notifyModalityChange(ModalityEvent.MODALITY_PUSHED, dialog);
1353 public void notifyModalityPopped(Dialog dialog) { argument
1354 notifyModalityChange(ModalityEvent.MODALITY_POPPED, dialog);
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceDialog.java79 * A class which implements a cross-platform print dialog.
130 * Constructor for the "standard" print dialog (containing all relevant
139 Dialog dialog)
141 super(dialog, getMsg("dialog.printtitle"), true, gc);
149 * Constructor for the "standard" print dialog (containing all relevant
160 super(frame, getMsg("dialog.printtitle"), true, gc);
167 * Initialize print dialog.
230 getAccessibleContext().setAccessibleDescription(getMsg("dialog.printtitle"));
237 * Constructor for the solitary "page setup" dialog
133 ServiceDialog(GraphicsConfiguration gc, int x, int y, PrintService[] services, int defaultServiceIndex, DocFlavor flavor, PrintRequestAttributeSet attributes, Dialog dialog) argument
239 ServiceDialog(GraphicsConfiguration gc, int x, int y, PrintService ps, DocFlavor flavor, PrintRequestAttributeSet attributes, Dialog dialog) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaInternalFrameBorder.java80 protected static AquaInternalFrameBorder dialog() { method in class:AquaInternalFrameBorder
H A DAquaFileChooserUI.java359 * the selected file changing, or the type of the dialog changing.
567 // Save dialog lists can't be multi select, because all we're selecting is the next folder to open
803 * Returns the title of this dialog
885 final JDialog dialog = pane.createDialog(parentComponent, title);
888 dialog.setVisible(true);
889 dialog.dispose();
1807 // ToolTip text varies with type of dialog
1921 // Custom FILES_ONLY dialog
H A DAquaInternalFrameUI.java313 fAquaBorder = AquaInternalFrameBorder.dialog();
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintControl.cpp569 * Copy settings into a print dialog & any devmode
587 jobject dialog = NULL; local
681 // Returning TRUE means try to display the native print dialog
799 * Copy settings from print dialog & any devmode back into attributes

Completed in 1971 milliseconds

123456