Uses of Class
com.sun.lwuit.Graphics

Packages that use Graphics
com.sun.lwuit   
com.sun.lwuit.animations   
com.sun.lwuit.impl   
com.sun.lwuit.painter   
com.sun.lwuit.plaf   
com.sun.lwuit.spinner   
com.sun.lwuit.table   
 

Uses of Graphics in com.sun.lwuit
 

Methods in com.sun.lwuit that return Graphics
 Graphics RGBImage.getGraphics()
          This method is unsupported in this image type
 Graphics IndexedImage.getGraphics()
          Deprecated. This method is unsupported in this image type
 Graphics Image.getGraphics()
          If this is a mutable image a graphics object allowing us to draw on it is returned.
 Graphics EncodedImage.getGraphics()
           
 

Methods in com.sun.lwuit with parameters of type Graphics
protected  void StaticAnimation.drawImage(Graphics g, java.lang.Object nativeGraphics, int x, int y)
          Deprecated.  
protected  void RGBImage.drawImage(Graphics g, java.lang.Object nativeGraphics, int x, int y)
           
protected  void IndexedImage.drawImage(Graphics g, java.lang.Object nativeGraphics, int x, int y)
          Deprecated.  
protected  void Image.drawImage(Graphics g, java.lang.Object nativeGraphics, int x, int y)
          Callback invoked internally by LWUIT to draw the image/frame onto the display.
protected  void EncodedImage.drawImage(Graphics g, java.lang.Object nativeGraphics, int x, int y)
           
 void TextField.paint(Graphics g)
           
 void TextArea.paint(Graphics g)
           
 void TabbedPane.paint(Graphics g)
          Deprecated.  
 void StaticAnimation.paint(Graphics g)
          Deprecated.  
 void RadioButton.paint(Graphics g)
           
 void PeerComponent.paint(Graphics g)
           
 void MediaComponent.paint(Graphics g)
          Deprecated.  
 void List.paint(Graphics g)
           
 void Label.paint(Graphics g)
           
 void Form.paint(Graphics g)
           
 void Container.paint(Graphics g)
           
 void Component.paint(Graphics g)
          This method paints the Component on the screen, it should be overriden by subclasses to perform custom drawing or invoke the UI API's to let the PLAF perform the rendering.
 void ComboBox.paint(Graphics g)
           
 void CheckBox.paint(Graphics g)
           
 void Button.paint(Graphics g)
           
 void Painter.paint(Graphics g, Rectangle rect)
          Draws inside the given rectangle clipping area.
 void Slider.paintBackground(Graphics g)
          Paint the progress indicator
protected  void PeerComponent.paintBackground(Graphics g)
           
protected  void MediaComponent.paintBackground(Graphics g)
          Deprecated.  
 void Form.paintBackground(Graphics g)
          Exposing the background painting for the benefit of animations
protected  void Component.paintBackground(Graphics g)
          Paints the background of the component, invoked with the clipping region and appropriate scroll translation.
 void PeerComponent.paintBackgrounds(Graphics g)
           
 void MediaComponent.paintBackgrounds(Graphics g)
          Deprecated.  
 void Component.paintBackgrounds(Graphics g)
          This method paints all the parents Components Background.
protected  void PeerComponent.paintBorder(Graphics g)
           
protected  void Component.paintBorder(Graphics g)
          Draws the component border if such a border exists.
 void Component.paintComponent(Graphics g)
          Paints this component as a root by going to all the parent components and setting the absolute translation based on coordinates and scroll status.
 void Component.paintComponent(Graphics g, boolean background)
          Paints this component as a root by going to all the parent components and setting the absolute translation based on coordinates and scroll status.
protected  void Container.paintGlass(Graphics g)
          This method can be overriden by a component to draw on top of itself or its children after the component or the children finished drawing in a similar way to the glass pane but more refined per component
protected  void PeerComponent.paintScrollbars(Graphics g)
           
protected  void Component.paintScrollbars(Graphics g)
          Paints the UI for the scrollbars on the component, this will be invoked only for scrollable components.
protected  void PeerComponent.paintScrollbarX(Graphics g)
           
protected  void Component.paintScrollbarX(Graphics g)
          Paints the UI for the scrollbar on the X axis, this method allows component subclasses to customize the look of a scrollbar
protected  void PeerComponent.paintScrollbarY(Graphics g)
           
protected  void Component.paintScrollbarY(Graphics g)
          Paints the UI for the scrollbar on the Y axis, this method allows component subclasses to customize the look of a scrollbar
 

Uses of Graphics in com.sun.lwuit.animations
 

Methods in com.sun.lwuit.animations with parameters of type Graphics
protected  void Timeline.drawImage(Graphics g, java.lang.Object nativeGraphics, int x, int y)
           
abstract  void Transition.paint(Graphics g)
           
 void Timeline.paint(Graphics g)
           
 void CommonTransitions.paint(Graphics g)
           
 void Animation.paint(Graphics g)
          Draws the animation, within a component the standard paint method would be invoked since it bares the exact same signature.
 void Timeline.paint(Graphics g, Rectangle rect)
           
 

Uses of Graphics in com.sun.lwuit.impl
 

Methods in com.sun.lwuit.impl that return Graphics
protected  Graphics LWUITImplementation.getLWUITGraphics()
          Returns a graphics object for use by the painting
 

Methods in com.sun.lwuit.impl with parameters of type Graphics
protected  void LWUITImplementation.paintOverlay(Graphics g)
          Allows for painting an overlay on top of the implementation for notices during testing etc.
 void LWUITImplementation.setLWUITGraphics(Graphics g)
          Installs the LWUIT graphics object into the implementation
 

Uses of Graphics in com.sun.lwuit.painter
 

Methods in com.sun.lwuit.painter with parameters of type Graphics
 void PainterChain.paint(Graphics g, Rectangle rect)
           
 void BackgroundPainter.paint(Graphics g, Rectangle rect)
           
 

Uses of Graphics in com.sun.lwuit.plaf
 

Methods in com.sun.lwuit.plaf with parameters of type Graphics
abstract  void LookAndFeel.drawButton(Graphics g, Button b)
          Invoked for drawing a button widget
 void DefaultLookAndFeel.drawButton(Graphics g, Button b)
           
abstract  void LookAndFeel.drawCheckBox(Graphics g, Button cb)
          Invoked for drawing a checkbox widget
 void DefaultLookAndFeel.drawCheckBox(Graphics g, Button cb)
           
abstract  void LookAndFeel.drawComboBox(Graphics g, List cb)
          Invoked for drawing a combo box widget
 void DefaultLookAndFeel.drawComboBox(Graphics g, List cb)
           
 void LookAndFeel.drawHorizontalScroll(Graphics g, Component c, float offsetRatio, float blockSizeRatio)
          Draws a horizontal scroll bar in the given component
abstract  void LookAndFeel.drawLabel(Graphics g, Label l)
          Invoked for drawing a label widget
 void DefaultLookAndFeel.drawLabel(Graphics g, Label l)
           
protected  int DefaultLookAndFeel.drawLabelText(Graphics g, Label l, java.lang.String text, int x, int y, int textSpaceW)
          Draws the text of a label
abstract  void LookAndFeel.drawList(Graphics g, List l)
          Invoked for drawing a list widget
 void DefaultLookAndFeel.drawList(Graphics g, List l)
           
abstract  void LookAndFeel.drawRadioButton(Graphics g, Button rb)
          Invoked for drawing the radio button widget
 void DefaultLookAndFeel.drawRadioButton(Graphics g, Button rb)
           
abstract  void LookAndFeel.drawTabbedPane(Graphics g, TabbedPane tp)
          Deprecated.  
 void DefaultLookAndFeel.drawTabbedPane(Graphics g, TabbedPane tp)
          Deprecated.  
abstract  void LookAndFeel.drawTabbedPaneContentPane(TabbedPane tp, Graphics g, Rectangle rect, Dimension cellsPreferredSize, int numOfTabs, int selectedTabIndex, Dimension tabsSize, int cellOffsetX, int cellOffsetY)
          Deprecated.  
 void DefaultLookAndFeel.drawTabbedPaneContentPane(TabbedPane tp, Graphics g, Rectangle rect, Dimension cellsPreferredSize, int numOfTabs, int selectedTabIndex, Dimension tabsSize, int cellOffsetX, int cellOffsetY)
          Deprecated.  
abstract  void LookAndFeel.drawTextArea(Graphics g, TextArea ta)
          Draw the given text area
 void DefaultLookAndFeel.drawTextArea(Graphics g, TextArea ta)
           
abstract  void LookAndFeel.drawTextField(Graphics g, TextArea ta)
          Draws the text field without its cursor which is drawn in a separate method input mode indication can also be drawn using this method.
 void DefaultLookAndFeel.drawTextField(Graphics g, TextArea ta)
           
abstract  void LookAndFeel.drawTextFieldCursor(Graphics g, TextArea ta)
          Draws the cursor of the text field, blinking is handled simply by avoiding a call to this method.
 void DefaultLookAndFeel.drawTextFieldCursor(Graphics g, TextArea ta)
           
 void LookAndFeel.drawVerticalScroll(Graphics g, Component c, float offsetRatio, float blockSizeRatio)
          Draws a vertical scroll bar in the given component
 void Border.paint(Graphics g, Component c)
          Draws the border for the given component, this method is called before a call to background painting is made.
 void Border.paint(Graphics g, int x, int y, int width, int height, Component c)
           
 void Border.paintBorderBackground(Graphics g, Component c)
          Has effect when the border demands responsibility for background painting normally the painter will perform this work but in this case the border might do it instead.
 void LookAndFeel.setFG(Graphics g, Component c)
          Sets the foreground color and font for a generic component, reuse-able by most component drawing code
 

Uses of Graphics in com.sun.lwuit.spinner
 

Methods in com.sun.lwuit.spinner with parameters of type Graphics
 void Spinner.paint(Graphics g)
           
 

Uses of Graphics in com.sun.lwuit.table
 

Methods in com.sun.lwuit.table with parameters of type Graphics
protected  void Table.paintGlass(Graphics g)