synthpainter.java

来自「linux下建立JAVA虚拟机的源码KAFFE」· Java 代码 · 共 1,930 行 · 第 1/5 页

JAVA
1,930
字号
   * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintDesktopIconBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a desktop icon.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintDesktopIconBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a desktop pane.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintDesktopPaneBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a desktop pane.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintDesktopPaneBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of an editor pane.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintEditorPaneBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of an editor pane.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintEditorPaneBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a file chooser.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintFileChooserBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a file chooser.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintFileChooserBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a formatted text field.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintFormattedTextFieldBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a formatted text field.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintFormattedTextFieldBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of an internal frame.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintInternalFrameBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of an internal frame.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintInternalFrameBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of an internal frame's title pane.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintInternalFrameTitlePaneBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of an internal frame's title pane.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintInternalFrameTitlePaneBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a label.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintLabelBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a label.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintLabelBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a list.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintListBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a list.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintListBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a menu.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintMenuBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a menu.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintMenuBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a menu bar.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintMenuBarBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a menu bar.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintMenuBarBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a menu item.   *   * @param ctx the synth context identifying the component and region for   *        painting   * @param g the graphics context to use for painting   * @param x the X coordinate of the area to paint   * @param y the Y coordinate of the area to paint    * @param w the width of the area to paint   * @param h the height of the area to paint   */  public void paintMenuItemBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a menu item.   *

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?