Java Code Examples for com.sun.java.swing.plaf.gtk.GTKConstants.ShadowType#IN

The following examples show how to use com.sun.java.swing.plaf.gtk.GTKConstants.ShadowType#IN . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GTKPainter.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
public void paintMenuArrowIcon(SynthContext context, Graphics g,
        int state, int x, int y, int w, int h, ArrowType dir) {
    int gtkState = GTKLookAndFeel.synthStateToGTKState(
            context.getRegion(), state);
    ShadowType shadow = ShadowType.OUT;
    if (gtkState == SynthConstants.MOUSE_OVER) {
        shadow = ShadowType.IN;
    }
    if (!GTKLookAndFeel.is3()) {
        x += 3;
        y += 3;
        w = h = 7;
    }
    ENGINE.paintArrow(g, context, Region.MENU_ITEM, gtkState, shadow,
            dir, "menuitem", x, y, w, h);
}
 
Example 2
Source File: GTKPainter.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
public void paintMenuArrowIcon(SynthContext context, Graphics g,
        int state, int x, int y, int w, int h, ArrowType dir) {
    int gtkState = GTKLookAndFeel.synthStateToGTKState(
            context.getRegion(), state);
    ShadowType shadow = ShadowType.OUT;
    if (gtkState == SynthConstants.MOUSE_OVER) {
        shadow = ShadowType.IN;
    }
    if (!GTKLookAndFeel.is3()) {
        x += 3;
        y += 3;
        w = h = 7;
    }
    ENGINE.paintArrow(g, context, Region.MENU_ITEM, gtkState, shadow,
            dir, "menuitem", x, y, w, h);
}
 
Example 3
Source File: GTKPainter.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
public void paintMenuArrowIcon(SynthContext context, Graphics g,
        int state, int x, int y, int w, int h, ArrowType dir) {
    int gtkState = GTKLookAndFeel.synthStateToGTKState(
            context.getRegion(), state);
    ShadowType shadow = ShadowType.OUT;
    if (gtkState == SynthConstants.MOUSE_OVER) {
        shadow = ShadowType.IN;
    }
    if (!GTKLookAndFeel.is3()) {
        x += 3;
        y += 3;
        w = h = 7;
    }
    ENGINE.paintArrow(g, context, Region.MENU_ITEM, gtkState, shadow,
            dir, "menuitem", x, y, w, h);
}
 
Example 4
Source File: GTKPainter.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public void paintMenuArrowIcon(SynthContext context, Graphics g,
        int state, int x, int y, int w, int h, ArrowType dir) {
    int gtkState = GTKLookAndFeel.synthStateToGTKState(
            context.getRegion(), state);
    ShadowType shadow = ShadowType.OUT;
    if (gtkState == SynthConstants.MOUSE_OVER) {
        shadow = ShadowType.IN;
    }
    ENGINE.paintArrow(g, context, Region.MENU_ITEM, gtkState, shadow,
            dir, "menuitem", x + 3, y + 3, 7, 7);
}
 
Example 5
Source File: Metacity.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
protected void drawGTKBox(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }
    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-box", x, y, w, h, shadowType, null);
}
 
Example 6
Source File: Metacity.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
protected void drawGTKBox(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }
    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-box", x, y, w, h, shadowType, null);
}
 
Example 7
Source File: Metacity.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
protected void drawGTKBox(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }
    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-box", x, y, w, h, shadowType, null);
}
 
Example 8
Source File: Metacity.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
protected void drawGTKBox(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }
    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-box", x, y, w, h, shadowType, null);
}
 
Example 9
Source File: Metacity.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
protected void drawGTKBox(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }
    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-box", x, y, w, h, shadowType, null);
}
 
Example 10
Source File: GTKPainter.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
public void paintMenuArrowIcon(SynthContext context, Graphics g,
        int state, int x, int y, int w, int h, ArrowType dir) {
    int gtkState = GTKLookAndFeel.synthStateToGTKState(
            context.getRegion(), state);
    ShadowType shadow = ShadowType.OUT;
    if (gtkState == SynthConstants.MOUSE_OVER) {
        shadow = ShadowType.IN;
    }
    ENGINE.paintArrow(g, context, Region.MENU_ITEM, gtkState, shadow,
            dir, "menuitem", x + 3, y + 3, 7, 7);
}
 
Example 11
Source File: Metacity.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
protected void drawGTKBox(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }
    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-box", x, y, w, h, shadowType, null);
}
 
Example 12
Source File: GTKPainter.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
public void paintMenuArrowIcon(SynthContext context, Graphics g,
        int state, int x, int y, int w, int h, ArrowType dir) {
    int gtkState = GTKLookAndFeel.synthStateToGTKState(
            context.getRegion(), state);
    ShadowType shadow = ShadowType.OUT;
    if (gtkState == SynthConstants.MOUSE_OVER) {
        shadow = ShadowType.IN;
    }
    ENGINE.paintArrow(g, context, Region.MENU_ITEM, gtkState, shadow,
            dir, "menuitem", x + 3, y + 3, 7, 7);
}
 
Example 13
Source File: GTKPainter.java    From dragonwell8_jdk with GNU General Public License v2.0 4 votes vote down vote up
private void paintButtonBackgroundImpl(SynthContext context, Graphics g,
        Region id, String detail, int x, int y, int w, int h,
        boolean paintBackground, boolean paintFocus,
        boolean defaultCapable, boolean toolButton) {
    int state = context.getComponentState();
    synchronized (UNIXToolkit.GTK_LOCK) {
        if (ENGINE.paintCachedImage(g, x, y, w, h, id, state, detail,
                paintBackground, paintFocus, defaultCapable, toolButton)) {
            return;
        }
        ENGINE.startPainting(g, x, y, w, h, id, state, detail,
            paintBackground, paintFocus, defaultCapable, toolButton);

        // Paint the default indicator
        GTKStyle style = (GTKStyle)context.getStyle();
        if (defaultCapable && !toolButton) {
            Insets defaultInsets = style.getClassSpecificInsetsValue(
                    context, "default-border",
                    GTKStyle.BUTTON_DEFAULT_BORDER_INSETS);

            if (paintBackground && (state & SynthConstants.DEFAULT) != 0) {
                ENGINE.paintBox(g, context, id, SynthConstants.ENABLED,
                        ShadowType.IN, "buttondefault", x, y, w, h);
            }
            x += defaultInsets.left;
            y += defaultInsets.top;
            w -= (defaultInsets.left + defaultInsets.right);
            h -= (defaultInsets.top + defaultInsets.bottom);
        }

        boolean interiorFocus = style.getClassSpecificBoolValue(
                context, "interior-focus", true);
        int focusSize = style.getClassSpecificIntValue(
                context, "focus-line-width",1);
        int focusPad = style.getClassSpecificIntValue(
                context, "focus-padding", 1);

        int totalFocusSize = focusSize + focusPad;
        int xThickness = style.getXThickness();
        int yThickness = style.getYThickness();

        // Render the box.
        if (!interiorFocus &&
                (state & SynthConstants.FOCUSED) == SynthConstants.FOCUSED) {
            x += totalFocusSize;
            y += totalFocusSize;
            w -= 2 * totalFocusSize;
            h -= 2 * totalFocusSize;
        }

        int gtkState = GTKLookAndFeel.synthStateToGTKState(id, state);
        boolean paintBg;
        if (toolButton) {
            // Toolbar buttons should only have their background painted
            // in the PRESSED, SELECTED, or MOUSE_OVER states.
            paintBg =
                (gtkState != SynthConstants.ENABLED) &&
                (gtkState != SynthConstants.DISABLED);
        } else {
            // Otherwise, always paint the button's background, unless
            // the user has overridden it and we're in the ENABLED state.
            paintBg =
                paintBackground ||
                (gtkState != SynthConstants.ENABLED);
        }
        if (paintBg) {
            ShadowType shadowType = ShadowType.OUT;
            if ((state & (SynthConstants.PRESSED |
                          SynthConstants.SELECTED)) != 0) {
                shadowType = ShadowType.IN;
            }
            ENGINE.paintBox(g, context, id, gtkState,
                    shadowType, detail, x, y, w, h);
        }

        // focus
        if (paintFocus && (state & SynthConstants.FOCUSED) != 0) {
            if (interiorFocus) {
                x += xThickness + focusPad;
                y += yThickness + focusPad;
                w -= 2 * (xThickness + focusPad);
                h -= 2 * (yThickness + focusPad);
            } else {
                x -= totalFocusSize;
                y -= totalFocusSize;
                w += 2 * totalFocusSize;
                h += 2 * totalFocusSize;
            }
            ENGINE.paintFocus(g, context, id, gtkState, detail, x, y, w, h);
        }
        ENGINE.finishPainting();
    }
}
 
Example 14
Source File: Metacity.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
protected void drawGTKArrow(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String arrow    = getStringAttr(attrs, "arrow");
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }

    ArrowType direction = null;
    if ("up".equals(arrow)) {
        direction = ArrowType.UP;
    } else if ("down".equals(arrow)) {
        direction = ArrowType.DOWN;
    } else if ("left".equals(arrow)) {
        direction = ArrowType.LEFT;
    } else if ("right".equals(arrow)) {
        direction = ArrowType.RIGHT;
    }

    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-arrow", x, y, w, h, shadowType, direction);
}
 
Example 15
Source File: Metacity.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
protected void drawGTKArrow(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String arrow    = getStringAttr(attrs, "arrow");
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }

    ArrowType direction = null;
    if ("up".equals(arrow)) {
        direction = ArrowType.UP;
    } else if ("down".equals(arrow)) {
        direction = ArrowType.DOWN;
    } else if ("left".equals(arrow)) {
        direction = ArrowType.LEFT;
    } else if ("right".equals(arrow)) {
        direction = ArrowType.RIGHT;
    }

    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-arrow", x, y, w, h, shadowType, direction);
}
 
Example 16
Source File: GTKPainter.java    From jdk1.8-source-analysis with Apache License 2.0 4 votes vote down vote up
private void paintButtonBackgroundImpl(SynthContext context, Graphics g,
        Region id, String detail, int x, int y, int w, int h,
        boolean paintBackground, boolean paintFocus,
        boolean defaultCapable, boolean toolButton) {
    int state = context.getComponentState();
    synchronized (UNIXToolkit.GTK_LOCK) {
        if (ENGINE.paintCachedImage(g, x, y, w, h, id, state, detail,
                paintBackground, paintFocus, defaultCapable, toolButton)) {
            return;
        }
        ENGINE.startPainting(g, x, y, w, h, id, state, detail,
            paintBackground, paintFocus, defaultCapable, toolButton);

        // Paint the default indicator
        GTKStyle style = (GTKStyle)context.getStyle();
        if (defaultCapable && !toolButton) {
            Insets defaultInsets = style.getClassSpecificInsetsValue(
                    context, "default-border",
                    GTKStyle.BUTTON_DEFAULT_BORDER_INSETS);

            if (paintBackground && (state & SynthConstants.DEFAULT) != 0) {
                ENGINE.paintBox(g, context, id, SynthConstants.ENABLED,
                        ShadowType.IN, "buttondefault", x, y, w, h);
            }
            x += defaultInsets.left;
            y += defaultInsets.top;
            w -= (defaultInsets.left + defaultInsets.right);
            h -= (defaultInsets.top + defaultInsets.bottom);
        }

        boolean interiorFocus = style.getClassSpecificBoolValue(
                context, "interior-focus", true);
        int focusSize = style.getClassSpecificIntValue(
                context, "focus-line-width",1);
        int focusPad = style.getClassSpecificIntValue(
                context, "focus-padding", 1);

        int totalFocusSize = focusSize + focusPad;
        int xThickness = style.getXThickness();
        int yThickness = style.getYThickness();

        // Render the box.
        if (!interiorFocus &&
                (state & SynthConstants.FOCUSED) == SynthConstants.FOCUSED) {
            x += totalFocusSize;
            y += totalFocusSize;
            w -= 2 * totalFocusSize;
            h -= 2 * totalFocusSize;
        }

        int gtkState = GTKLookAndFeel.synthStateToGTKState(id, state);
        boolean paintBg;
        if (toolButton) {
            // Toolbar buttons should only have their background painted
            // in the PRESSED, SELECTED, or MOUSE_OVER states.
            paintBg =
                (gtkState != SynthConstants.ENABLED) &&
                (gtkState != SynthConstants.DISABLED);
        } else {
            // Otherwise, always paint the button's background, unless
            // the user has overridden it and we're in the ENABLED state.
            paintBg =
                paintBackground ||
                (gtkState != SynthConstants.ENABLED);
        }
        if (paintBg) {
            ShadowType shadowType = ShadowType.OUT;
            if ((state & (SynthConstants.PRESSED |
                          SynthConstants.SELECTED)) != 0) {
                shadowType = ShadowType.IN;
            }
            ENGINE.paintBox(g, context, id, gtkState,
                    shadowType, detail, x, y, w, h);
        }

        // focus
        if (paintFocus && (state & SynthConstants.FOCUSED) != 0) {
            if (interiorFocus) {
                x += xThickness + focusPad;
                y += yThickness + focusPad;
                w -= 2 * (xThickness + focusPad);
                h -= 2 * (yThickness + focusPad);
            } else {
                x -= totalFocusSize;
                y -= totalFocusSize;
                w += 2 * totalFocusSize;
                h += 2 * totalFocusSize;
            }
            ENGINE.paintFocus(g, context, id, gtkState, detail, x, y, w, h);
        }
        ENGINE.finishPainting();
    }
}
 
Example 17
Source File: Metacity.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
protected void drawGTKArrow(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String arrow    = getStringAttr(attrs, "arrow");
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }

    ArrowType direction = null;
    if ("up".equals(arrow)) {
        direction = ArrowType.UP;
    } else if ("down".equals(arrow)) {
        direction = ArrowType.DOWN;
    } else if ("left".equals(arrow)) {
        direction = ArrowType.LEFT;
    } else if ("right".equals(arrow)) {
        direction = ArrowType.RIGHT;
    }

    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-arrow", x, y, w, h, shadowType, direction);
}
 
Example 18
Source File: Metacity.java    From jdk1.8-source-analysis with Apache License 2.0 4 votes vote down vote up
protected void drawGTKArrow(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String arrow    = getStringAttr(attrs, "arrow");
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }

    ArrowType direction = null;
    if ("up".equals(arrow)) {
        direction = ArrowType.UP;
    } else if ("down".equals(arrow)) {
        direction = ArrowType.DOWN;
    } else if ("left".equals(arrow)) {
        direction = ArrowType.LEFT;
    } else if ("right".equals(arrow)) {
        direction = ArrowType.RIGHT;
    }

    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-arrow", x, y, w, h, shadowType, direction);
}
 
Example 19
Source File: GTKPainter.java    From JDKSourceCode1.8 with MIT License 4 votes vote down vote up
private void paintButtonBackgroundImpl(SynthContext context, Graphics g,
        Region id, String detail, int x, int y, int w, int h,
        boolean paintBackground, boolean paintFocus,
        boolean defaultCapable, boolean toolButton) {
    int state = context.getComponentState();
    synchronized (UNIXToolkit.GTK_LOCK) {
        if (ENGINE.paintCachedImage(g, x, y, w, h, id, state, detail,
                paintBackground, paintFocus, defaultCapable, toolButton)) {
            return;
        }
        ENGINE.startPainting(g, x, y, w, h, id, state, detail,
            paintBackground, paintFocus, defaultCapable, toolButton);

        // Paint the default indicator
        GTKStyle style = (GTKStyle)context.getStyle();
        if (defaultCapable && !toolButton) {
            Insets defaultInsets = style.getClassSpecificInsetsValue(
                    context, "default-border",
                    GTKStyle.BUTTON_DEFAULT_BORDER_INSETS);

            if (paintBackground && (state & SynthConstants.DEFAULT) != 0) {
                ENGINE.paintBox(g, context, id, SynthConstants.ENABLED,
                        ShadowType.IN, "buttondefault", x, y, w, h);
            }
            x += defaultInsets.left;
            y += defaultInsets.top;
            w -= (defaultInsets.left + defaultInsets.right);
            h -= (defaultInsets.top + defaultInsets.bottom);
        }

        boolean interiorFocus = style.getClassSpecificBoolValue(
                context, "interior-focus", true);
        int focusSize = style.getClassSpecificIntValue(
                context, "focus-line-width",1);
        int focusPad = style.getClassSpecificIntValue(
                context, "focus-padding", 1);

        int totalFocusSize = focusSize + focusPad;
        int xThickness = style.getXThickness();
        int yThickness = style.getYThickness();

        // Render the box.
        if (!interiorFocus &&
                (state & SynthConstants.FOCUSED) == SynthConstants.FOCUSED) {
            x += totalFocusSize;
            y += totalFocusSize;
            w -= 2 * totalFocusSize;
            h -= 2 * totalFocusSize;
        }

        int gtkState = GTKLookAndFeel.synthStateToGTKState(id, state);
        boolean paintBg;
        if (toolButton) {
            // Toolbar buttons should only have their background painted
            // in the PRESSED, SELECTED, or MOUSE_OVER states.
            paintBg =
                (gtkState != SynthConstants.ENABLED) &&
                (gtkState != SynthConstants.DISABLED);
        } else {
            // Otherwise, always paint the button's background, unless
            // the user has overridden it and we're in the ENABLED state.
            paintBg =
                paintBackground ||
                (gtkState != SynthConstants.ENABLED);
        }
        if (paintBg) {
            ShadowType shadowType = ShadowType.OUT;
            if ((state & (SynthConstants.PRESSED |
                          SynthConstants.SELECTED)) != 0) {
                shadowType = ShadowType.IN;
            }
            ENGINE.paintBox(g, context, id, gtkState,
                    shadowType, detail, x, y, w, h);
        }

        // focus
        if (paintFocus && (state & SynthConstants.FOCUSED) != 0) {
            if (interiorFocus) {
                x += xThickness + focusPad;
                y += yThickness + focusPad;
                w -= 2 * (xThickness + focusPad);
                h -= 2 * (yThickness + focusPad);
            } else {
                x -= totalFocusSize;
                y -= totalFocusSize;
                w += 2 * totalFocusSize;
                h += 2 * totalFocusSize;
            }
            ENGINE.paintFocus(g, context, id, gtkState, detail, x, y, w, h);
        }
        ENGINE.finishPainting();
    }
}
 
Example 20
Source File: Metacity.java    From Bytecoder with Apache License 2.0 4 votes vote down vote up
protected void drawGTKArrow(Node node, Graphics g) {
    NamedNodeMap attrs = node.getAttributes();
    String arrow    = getStringAttr(attrs, "arrow");
    String shadow   = getStringAttr(attrs, "shadow");
    String stateStr = getStringAttr(attrs, "state").toUpperCase();
    int x = aee.evaluate(getStringAttr(attrs, "x"));
    int y = aee.evaluate(getStringAttr(attrs, "y"));
    int w = aee.evaluate(getStringAttr(attrs, "width"));
    int h = aee.evaluate(getStringAttr(attrs, "height"));

    int state = -1;
    if ("NORMAL".equals(stateStr)) {
        state = ENABLED;
    } else if ("SELECTED".equals(stateStr)) {
        state = SELECTED;
    } else if ("INSENSITIVE".equals(stateStr)) {
        state = DISABLED;
    } else if ("PRELIGHT".equals(stateStr)) {
        state = MOUSE_OVER;
    }

    ShadowType shadowType = null;
    if ("in".equals(shadow)) {
        shadowType = ShadowType.IN;
    } else if ("out".equals(shadow)) {
        shadowType = ShadowType.OUT;
    } else if ("etched_in".equals(shadow)) {
        shadowType = ShadowType.ETCHED_IN;
    } else if ("etched_out".equals(shadow)) {
        shadowType = ShadowType.ETCHED_OUT;
    } else if ("none".equals(shadow)) {
        shadowType = ShadowType.NONE;
    }

    ArrowType direction = null;
    if ("up".equals(arrow)) {
        direction = ArrowType.UP;
    } else if ("down".equals(arrow)) {
        direction = ArrowType.DOWN;
    } else if ("left".equals(arrow)) {
        direction = ArrowType.LEFT;
    } else if ("right".equals(arrow)) {
        direction = ArrowType.RIGHT;
    }

    GTKPainter.INSTANCE.paintMetacityElement(context, g, state,
            "metacity-arrow", x, y, w, h, shadowType, direction);
}