Searched refs:resizable (Results 1 - 25 of 25) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DFrameWrapper.java44 public void setResizable(boolean resizable); argument
H A DJFrameWrapper.java49 public void setResizable(boolean resizable) { frame.setResizable(resizable); } argument
H A DJInternalFrameWrapper.java50 public void setResizable(boolean resizable) { frame.setResizable(resizable); } argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DFrame.java314 * This field indicates whether the frame is resizable.
316 * <code>resizable</code> will be true if the frame is
317 * resizable, otherwise it will be false.
322 boolean resizable = true; field in class:Frame
602 * Indicates whether this frame is resizable by the user.
603 * By default, all frames are initially resizable.
609 return resizable;
613 * Sets whether this frame is resizable by the user.
614 * @param resizable <code>true</code> if this frame is resizable;
618 setResizable(boolean resizable) argument
[all...]
H A DDialog.java108 * A dialog's resizable property. Will be true
109 * if the Dialog is to be resizable, otherwise
115 boolean resizable = true; field in class:Dialog
1221 * Indicates whether this dialog is resizable by the user.
1222 * By default, all dialogs are initially resizable.
1228 return resizable;
1232 * Sets whether this dialog is resizable by the user.
1233 * @param resizable <code>true</code> if the user can
1237 public void setResizable(boolean resizable) { argument
1241 this.resizable
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DPlatformWindow.java132 public void setResizable(boolean resizable); argument
H A DLWWindowPeer.java583 public void setResizable(boolean resizable) { argument
584 platformWindow.setResizable(resizable);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterDialogPeer.java69 public void setResizable(boolean resizable) {} argument
H A DCPlatformEmbeddedFrame.java180 public void setResizable(boolean resizable) {} argument
H A DCViewPlatformEmbeddedFrame.java170 public void setResizable(boolean resizable) { argument
H A DCPlatformWindow.java286 // Either java.awt.Frame or java.awt.Dialog can be resizable, however java.awt.Window is never resizable
288 final boolean resizable = isFrame ? ((Frame)target).isResizable() : (isDialog ? ((Dialog)target).isResizable() : false);
289 styleBits = SET(styleBits, RESIZABLE, resizable);
290 if (!resizable) {
674 public void setResizable(boolean resizable) { argument
679 setStyleBits(RESIZABLE, resizable);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.h60 extern void awt_wm_setShellDecor(struct FrameData *wdata, Boolean resizable);
H A Dawt_wm.c1461 awt_wm_setOLDecor(struct FrameData *wdata, Boolean resizable, int decorations) argument
1508 awt_wm_setMotifDecor(struct FrameData *wdata, Boolean resizable, int decorations) argument
1536 if (resizable) {
1586 * appropriately if not resizable.
1589 awt_wm_setShellDecor(struct FrameData *wdata, Boolean resizable) argument
1595 resizable ? "resizable" : "not resizable");
1597 if (!resizable) {
1607 awt_wm_setMotifDecor(wdata, resizable, decoration
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJInternalFrame.java169 protected boolean resizable; field in class:JInternalFrame
265 * Creates a non-resizable, non-closable, non-maximizable,
273 * Creates a non-resizable, non-closable, non-maximizable,
291 * @param resizable if <code>true</code>, the internal frame can be resized
293 public JInternalFrame(String title, boolean resizable) { argument
294 this(title, resizable, false, false, false);
303 * @param resizable if <code>true</code>, the internal frame can be resized
306 public JInternalFrame(String title, boolean resizable, boolean closable) { argument
307 this(title, resizable, closable, false, false);
316 * @param resizable i
320 JInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable) argument
336 JInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable, boolean iconifiable) argument
[all...]
H A DGroupLayout.java646 * @param resizable {@code true} if the group is resizable; if the group
647 * is not resizable the preferred size is used for the
655 boolean resizable){
661 return new BaselineGroup(resizable);
663 return new ParallelGroup(alignment, resizable);
670 * @param resizable whether the group is resizable
676 public ParallelGroup createBaselineGroup(boolean resizable, argument
678 return new BaselineGroup(resizable, anchorBaselineToTo
654 createParallelGroup(Alignment alignment, boolean resizable) argument
2458 private final boolean resizable; field in class:GroupLayout.ParallelGroup
2460 ParallelGroup(Alignment childAlignment, boolean resizable) argument
2677 BaselineGroup(boolean resizable) argument
2683 BaselineGroup(boolean resizable, boolean baselineAnchoredToTop) argument
[all...]
/openjdk7/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNoEventsTest.java64 // window, resizable frame, non-resizable frame, dialog, non-resiable dialog
178 public NoEventsTest(int row, int col, boolean focusable, boolean resizable) { argument
188 ", " + (resizable?"resizable":"non-resizable"));
195 if (!resizable) {
213 ", " + (false?"resizable":"non-resizable"));
225 public TestDialog(int row, int col, boolean focusable, boolean resizable, Fram argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrintDialogPeer.java121 public void setResizable(boolean resizable) {} argument
H A DWWindowPeer.java155 public void setResizable(boolean resizable) { argument
156 _setResizable(resizable);
158 public native void _setResizable(boolean resizable); argument
H A DWFileDialogPeer.java245 public void setResizable(boolean resizable) {} argument
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMaximizableInternalFrame.java53 public MaximizableInternalFrame(String title, boolean resizable, argument
56 super(title, resizable, closable, maximizable, iconifiable);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDecoratedPeer.java832 public void setResizable(boolean resizable) { argument
834 if (!isResizable() && resizable) {
840 winAttr.isResizable = resizable;
848 } else if (isResizable() && !resizable) {
854 winAttr.isResizable = resizable;
H A DXWM.java871 static void setOLDecor(XWindow window, boolean resizable, int decorations) { argument
903 static void setMotifDecor(XWindow window, boolean resizable, int decorations, int functions) { argument
951 * appropriately if not resizable.
956 boolean resizable = window.isResizable();
958 if (!resizable) {
965 setMotifDecor(window, resizable, decorations, functions);
966 setOLDecor(window, resizable, decorations);
982 * Make specified shell resizable.
985 if (insLog.isLoggable(PlatformLogger.FINE)) insLog.fine("Setting shell resizable " + window);
1008 * Make specified shell non-resizable
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEmbeddedFrame.java314 public void setResizable(boolean resizable) {} argument
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTWindow.m144 - (void) updateMinMaxSize:(BOOL)resizable {
145 if (resizable) {
180 BOOL resizable = IS(bits, RESIZABLE);
181 [self updateMinMaxSize:resizable];
182 [self.nsWindow setShowsResizeIndicator:resizable];
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Window.cpp82 jboolean resizable; member in struct:SetResizableStruct
2312 jboolean resizable = srs->resizable; local
2322 w->SetResizable(resizable != 0);
3179 jboolean resizable)
3185 srs->resizable = resizable;
3178 Java_sun_awt_windows_WWindowPeer__1setResizable(JNIEnv *env, jobject self, jboolean resizable) argument

Completed in 111 milliseconds