synthpainter.java

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

JAVA
1,930
字号
  }  /**   * Paints the background of a scroll 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 paintScrollPaneBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a scroll 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 paintScrollPaneBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a separator.   *   * @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 paintSeparatorBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a separator.   *   * @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 paintSeparatorBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a slider.   *   * @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 paintSliderBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a slider.   *   * @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 paintSliderBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a slider's thumb.   *   * @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 paintSliderThumbBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a slider's thumb.   *   * @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 paintSliderThumbBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a slider's track.   *   * @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 paintSliderTrackBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a slider's track.   *   * @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 paintSliderTrackBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a spinner.   *   * @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 paintSpinnerBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a spinner.   *   * @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 paintSpinnerBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a split 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 paintSplitPaneBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a split 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 paintSplitPaneBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a split pane's divider.   *   * @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 paintSplitPaneDividerBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a split pane's divider.   *   * @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 paintSplitPaneDividerBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a tabbed 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 paintTabbedPaneBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of a tabbed 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 paintTabbedPaneBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of the contents of a tabbed 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 paintTabbedPaneContentBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of the contents of a tabbed 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 paintTabbedPaneContentBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of the tab area of a tabbed 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 paintTabbedPaneTabAreaBackground(SynthContext ctx, Graphics g, int x,                                   int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the border of the tab area of a tabbed 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 paintTabbedPaneTabAreaBorder(SynthContext ctx, Graphics g, int x,                               int y, int w, int h)  {    // Nothing to do here.  }  /**   * Paints the background of a tab of a tabbed 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

⌨️ 快捷键说明

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