src/macosx/classes/sun/lwawt/PlatformWindow.java

Print this page




 114 
 115     public void toBack();
 116 
 117     public void setMenuBar(MenuBar mb);
 118 
 119     public void setAlwaysOnTop(boolean value);
 120 
 121     public void updateFocusableWindowState();
 122 
 123     public boolean rejectFocusRequest(CausedFocusEvent.Cause cause);
 124 
 125     public boolean requestWindowFocus();
 126 
 127     /*
 128      * Returns true only when called on a frame/dialog when it's natively focused.
 129      */
 130     public boolean isActive();
 131 
 132     public void setResizable(boolean resizable);
 133 
 134     public void setMinimumSize(int width, int height);





 135 
 136     /**
 137      * Transforms the given Graphics object according to the native
 138      * implementation traits (insets, etc.).
 139      */
 140     public Graphics transformGraphics(Graphics g);
 141 
 142     /*
 143      * Installs the images for particular window.
 144      */
 145     public void updateIconImages();
 146 
 147     public void setOpacity(float opacity);
 148 
 149     public void setOpaque(boolean isOpaque);
 150 
 151     public void enterFullScreenMode();
 152 
 153     public void exitFullScreenMode();
 154 


 114 
 115     public void toBack();
 116 
 117     public void setMenuBar(MenuBar mb);
 118 
 119     public void setAlwaysOnTop(boolean value);
 120 
 121     public void updateFocusableWindowState();
 122 
 123     public boolean rejectFocusRequest(CausedFocusEvent.Cause cause);
 124 
 125     public boolean requestWindowFocus();
 126 
 127     /*
 128      * Returns true only when called on a frame/dialog when it's natively focused.
 129      */
 130     public boolean isActive();
 131 
 132     public void setResizable(boolean resizable);
 133 
 134     /**
 135      * Applies the current minimum and maximum size from target to the platform
 136      * window. Additionally, the target constraints are capped by the arguments
 137      * of this method.
 138      */
 139     public void setSizeConstraints(int minW, int minH, int maxW, int maxH);
 140 
 141     /**
 142      * Transforms the given Graphics object according to the native
 143      * implementation traits (insets, etc.).
 144      */
 145     public Graphics transformGraphics(Graphics g);
 146 
 147     /*
 148      * Installs the images for particular window.
 149      */
 150     public void updateIconImages();
 151 
 152     public void setOpacity(float opacity);
 153 
 154     public void setOpaque(boolean isOpaque);
 155 
 156     public void enterFullScreenMode();
 157 
 158     public void exitFullScreenMode();
 159