src/share/classes/sun/swing/LightweightContent.java

Print this page




 144      * @param dirtyWidth the width of the dirty rectangle
 145      * @param dirtyHeight the height of the dirty rectangle
 146      *
 147      * @see #imageBufferReset
 148      * @see #imageReshaped
 149      */
 150     public void imageUpdated(int dirtyX, int dirtyY,
 151                              int dirtyWidth, int dirtyHeight);
 152 
 153     /**
 154      * {@code JLightweightFrame} calls this method to notify the client
 155      * application that the frame has grabbed focus.
 156      */
 157     public void focusGrabbed();
 158 
 159     /**
 160      * {@code JLightweightFrame} calls this method to notify the client
 161      * application that the frame has ungrabbed focus.
 162      */
 163     public void focusUngrabbed();


















 164 }


 144      * @param dirtyWidth the width of the dirty rectangle
 145      * @param dirtyHeight the height of the dirty rectangle
 146      *
 147      * @see #imageBufferReset
 148      * @see #imageReshaped
 149      */
 150     public void imageUpdated(int dirtyX, int dirtyY,
 151                              int dirtyWidth, int dirtyHeight);
 152 
 153     /**
 154      * {@code JLightweightFrame} calls this method to notify the client
 155      * application that the frame has grabbed focus.
 156      */
 157     public void focusGrabbed();
 158 
 159     /**
 160      * {@code JLightweightFrame} calls this method to notify the client
 161      * application that the frame has ungrabbed focus.
 162      */
 163     public void focusUngrabbed();
 164     
 165     /**
 166      * {@code JLightweightFrame} calls this method to notify the client
 167      * application that the content preferred size has changed.
 168      */
 169     public void preferredSizeChanged(int width, int height);
 170 
 171     /**
 172      * {@code JLightweightFrame} calls this method to notify the client
 173      * application that the content maximum size has changed.
 174      */
 175     public void maximumSizeChanged(int width, int height);
 176 
 177     /**
 178      * {@code JLightweightFrame} calls this method to notify the client
 179      * application that the content minimum size has changed.
 180      */
 181     public void minimumSizeChanged(int width, int height);
 182 }