⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 synthpainter.java

📁 Mobile 应用程序使用 Java Micro Edition (Java ME) 平台
💻 JAVA
📖 第 1 页 / 共 5 页
字号:
     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintMenuBorder(SynthContext context,                                 Graphics g, int x, int y,                                 int w, int h) {    }    /**     * Paints the background of an option pane.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintOptionPaneBackground(SynthContext context,                                     Graphics g, int x, int y,                                     int w, int h) {    }    /**     * Paints the border of an option pane.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintOptionPaneBorder(SynthContext context,                                 Graphics g, int x, int y,                                 int w, int h) {    }    /**     * Paints the background of a panel.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintPanelBackground(SynthContext context,                                     Graphics g, int x, int y,                                     int w, int h) {    }    /**     * Paints the border of a panel.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintPanelBorder(SynthContext context,                                 Graphics g, int x, int y,                                 int w, int h) {    }    /**     * Paints the background of a password field.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintPasswordFieldBackground(SynthContext context,                                     Graphics g, int x, int y,                                     int w, int h) {    }    /**     * Paints the border of a password field.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintPasswordFieldBorder(SynthContext context,                                 Graphics g, int x, int y,                                 int w, int h) {    }    /**     * Paints the background of a popup menu.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintPopupMenuBackground(SynthContext context,                                     Graphics g, int x, int y,                                     int w, int h) {    }    /**     * Paints the border of a popup menu.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintPopupMenuBorder(SynthContext context,                                 Graphics g, int x, int y,                                 int w, int h) {    }    /**     * Paints the background of a progress bar.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintProgressBarBackground(SynthContext context,                                     Graphics g, int x, int y,                                     int w, int h) {    }        /**     * Paints the background of a progress bar. This implementation invokes the     * method of the same name without the orientation.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     * @param orientation one of <code>JProgressBar.HORIZONTAL</code> or     *                    <code>JProgressBar.VERTICAL</code>     * @since 1.6     */    public void paintProgressBarBackground(SynthContext context,                                     Graphics g, int x, int y,                                     int w, int h, int orientation) {        paintProgressBarBackground(context, g, x, y, w, h);    }    /**     * Paints the border of a progress bar.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintProgressBarBorder(SynthContext context,                                 Graphics g, int x, int y,                                 int w, int h) {    }    /**     * Paints the border of a progress bar. This implementation invokes the     * method of the same name without the orientation.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     * @param orientation one of <code>JProgressBar.HORIZONTAL</code> or     *                    <code>JProgressBar.VERTICAL</code>     * @since 1.6     */    public void paintProgressBarBorder(SynthContext context,                                 Graphics g, int x, int y,                                 int w, int h, int orientation) {        paintProgressBarBorder(context, g, x, y, w, h);    }    /**     * Paints the foreground of a progress bar. is responsible for     * providing an indication of the progress of the progress bar.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     * @param orientation one of <code>JProgressBar.HORIZONTAL</code> or     *                    <code>JProgressBar.VERTICAL</code>     */    public void paintProgressBarForeground(SynthContext context,                                 Graphics g, int x, int y,                                 int w, int h, int orientation) {    }    /**     * Paints the background of a radio button menu item.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintRadioButtonMenuItemBackground(SynthContext context,                                     Graphics g, int x, int y,                                     int w, int h) {    }    /**     * Paints the border of a radio button menu item.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintRadioButtonMenuItemBorder(SynthContext context,                                 Graphics g, int x, int y,                                 int w, int h) {    }    /**     * Paints the background of a radio button.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintRadioButtonBackground(SynthContext context,                                     Graphics g, int x, int y,                                     int w, int h) {    }    /**     * Paints the border of a radio button.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintRadioButtonBorder(SynthContext context,                                 Graphics g, int x, int y,                                 int w, int h) {    }    /**     * Paints the background of a root pane.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to     */    public void paintRootPaneBackground(SynthContext context,                                     Graphics g, int x, int y,                                     int w, int h) {    }    /**     * Paints the border of a root pane.     *     * @param context SynthContext identifying the <code>JComponent</code> and     *        <code>Region</code> to paint to     * @param g <code>Graphics</code> to paint to     * @param x X coordinate of the area to paint to     * @param y Y coordinate of the area to paint to     * @param w Width of the area to paint to     * @param h Height of the area to paint to

⌨️ 快捷键说明

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