synthpainter.java
来自「linux下建立JAVA虚拟机的源码KAFFE」· Java 代码 · 共 1,930 行 · 第 1/5 页
JAVA
1,930 行
* @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 paintMenuItemBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of an option 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 paintOptionPaneBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of an option 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 paintOptionPaneBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of a panel. * * @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 paintPanelBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of a panel. * * @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 paintPanelBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of a password 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 paintPasswordFieldBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of a password 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 paintPasswordFieldBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of a popup 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 paintPopupMenuBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of a popup 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 paintPopupMenuBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of a progress 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 paintProgressBarBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of a progress 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 paintProgressBarBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of a radio button. * * @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 paintRadioButtonBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of a radio button. * * @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 paintRadioButtonBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of a radio button 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 paintRadioButtonMenuItemBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of a radio button 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 paintRadioButtonMenuItemBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of a root 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 paintRootPaneBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of a root 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 paintRootPaneBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of a scrollbar. * * @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 paintScrollBarBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of a scrollbar. * * @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 paintScrollBarBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of a scrollbar'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 paintScrollBarThumbBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of a scrollbar'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 paintScrollBarThumbBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the background of a scrollbar'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 paintScrollBarTrackBackground(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here. } /** * Paints the border of a scrollbar'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 paintScrollBarTrackBorder(SynthContext ctx, Graphics g, int x, int y, int w, int h) { // Nothing to do here.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?