Java Code Examples for com.sun.java.swing.plaf.gtk.GTKConstants.ShadowType#NONE
The following examples show how to use
com.sun.java.swing.plaf.gtk.GTKConstants.ShadowType#NONE .
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 |
public void paintRadioButtonMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) { Region id = context.getRegion(); int gtkState = GTKLookAndFeel.synthStateToGTKState( id, context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { synchronized (UNIXToolkit.GTK_LOCK) { if (! ENGINE.paintCachedImage(g, x, y, w, h, id)) { ShadowType shadow = (GTKLookAndFeel.is2_2() ? ShadowType.NONE : ShadowType.OUT); ENGINE.startPainting(g, x, y, w, h, id); ENGINE.paintBox(g, context, id, gtkState, shadow, "menuitem", x, y, w, h); ENGINE.finishPainting(); } } } }
Example 2
Source File: GTKPainter.java From jdk1.8-source-analysis with Apache License 2.0 | 6 votes |
public void paintRadioButtonMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) { Region id = context.getRegion(); int gtkState = GTKLookAndFeel.synthStateToGTKState( id, context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { synchronized (UNIXToolkit.GTK_LOCK) { if (! ENGINE.paintCachedImage(g, x, y, w, h, id)) { ShadowType shadow = (GTKLookAndFeel.is2_2() ? ShadowType.NONE : ShadowType.OUT); ENGINE.startPainting(g, x, y, w, h, id); ENGINE.paintBox(g, context, id, gtkState, shadow, "menuitem", x, y, w, h); ENGINE.finishPainting(); } } } }
Example 3
Source File: GTKPainter.java From JDKSourceCode1.8 with MIT License | 6 votes |
public void paintRadioButtonMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) { Region id = context.getRegion(); int gtkState = GTKLookAndFeel.synthStateToGTKState( id, context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { synchronized (UNIXToolkit.GTK_LOCK) { if (! ENGINE.paintCachedImage(g, x, y, w, h, id)) { ShadowType shadow = (GTKLookAndFeel.is2_2() ? ShadowType.NONE : ShadowType.OUT); ENGINE.startPainting(g, x, y, w, h, id); ENGINE.paintBox(g, context, id, gtkState, shadow, "menuitem", x, y, w, h); ENGINE.finishPainting(); } } } }
Example 4
Source File: GTKPainter.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public void paintRadioButtonMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) { Region id = context.getRegion(); int gtkState = GTKLookAndFeel.synthStateToGTKState( id, context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { synchronized (UNIXToolkit.GTK_LOCK) { if (! ENGINE.paintCachedImage(g, x, y, w, h, id)) { ShadowType shadow = (GTKLookAndFeel.is2_2() ? ShadowType.NONE : ShadowType.OUT); ENGINE.startPainting(g, x, y, w, h, id); ENGINE.paintBox(g, context, id, gtkState, shadow, "menuitem", x, y, w, h); ENGINE.finishPainting(); } } } }
Example 5
Source File: GTKPainter.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
public void paintRadioButtonMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) { Region id = context.getRegion(); int gtkState = GTKLookAndFeel.synthStateToGTKState( id, context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { synchronized (UNIXToolkit.GTK_LOCK) { if (! ENGINE.paintCachedImage(g, x, y, w, h, id)) { ShadowType shadow = (GTKLookAndFeel.is2_2() ? ShadowType.NONE : ShadowType.OUT); ENGINE.startPainting(g, x, y, w, h, id); ENGINE.paintBox(g, context, id, gtkState, shadow, "menuitem", x, y, w, h); ENGINE.finishPainting(); } } } }
Example 6
Source File: GTKPainter.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public void paintRadioButtonMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) { Region id = context.getRegion(); int gtkState = GTKLookAndFeel.synthStateToGTKState( id, context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { synchronized (UNIXToolkit.GTK_LOCK) { if (! ENGINE.paintCachedImage(g, x, y, w, h, id)) { ShadowType shadow = (GTKLookAndFeel.is2_2() ? ShadowType.NONE : ShadowType.OUT); ENGINE.startPainting(g, x, y, w, h, id); ENGINE.paintBox(g, context, id, gtkState, shadow, "menuitem", x, y, w, h); ENGINE.finishPainting(); } } } }
Example 7
Source File: Metacity.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
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 JDKSourceCode1.8 with MIT License | 5 votes |
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 jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
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: Metacity.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
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 11
Source File: Metacity.java From Bytecoder with Apache License 2.0 | 5 votes |
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: Metacity.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
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 13
Source File: Metacity.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
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 14
Source File: GTKPainter.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public void paintMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) { int gtkState = GTKLookAndFeel.synthStateToGTKState( context.getRegion(), context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { if (GTKLookAndFeel.is3() && context.getRegion() == Region.MENU) { GTKStyle style = (GTKStyle)context.getStyle(); Color highlightColor = style.getGTKColor( GTKEngine.WidgetType.MENU_ITEM.ordinal(), gtkState, ColorType.BACKGROUND.getID()); Color backgroundColor = style.getGTKColor( GTKEngine.WidgetType.MENU_BAR.ordinal(), SynthConstants.ENABLED, ColorType.BACKGROUND.getID()); int minBrightness = 0, maxBrightness = 255; int minBrightnessDifference = 100; int actualBrightnessDifference = getMaxColorDiff(highlightColor, backgroundColor); if (actualBrightnessDifference < minBrightnessDifference) { int highlightBrightness = getBrightness(highlightColor); int backgroundBrightness = getBrightness(backgroundColor); int originalHighlightBrightness = highlightBrightness; if (highlightBrightness >= backgroundBrightness) { if (backgroundBrightness + minBrightnessDifference <= maxBrightness) { highlightBrightness = backgroundBrightness + minBrightnessDifference; } else { highlightBrightness = backgroundBrightness - minBrightnessDifference; } } else { if (backgroundBrightness - minBrightnessDifference >= minBrightness) { highlightBrightness = backgroundBrightness - minBrightnessDifference; } else { highlightBrightness = backgroundBrightness + minBrightnessDifference; } } g.setColor(deriveColor(highlightColor, originalHighlightBrightness, highlightBrightness)); g.fillRect(x, y, w, h); return; } } Region id = Region.MENU_ITEM; synchronized (UNIXToolkit.GTK_LOCK) { if (! ENGINE.paintCachedImage(g, x, y, w, h, id)) { ShadowType shadow = (GTKLookAndFeel.is2_2() ? ShadowType.NONE : ShadowType.OUT); ENGINE.startPainting(g, x, y, w, h, id); ENGINE.paintBox(g, context, id, gtkState, shadow, "menuitem", x, y, w, h); ENGINE.finishPainting(); } } } }
Example 15
Source File: GTKPainter.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public void paintMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) { int gtkState = GTKLookAndFeel.synthStateToGTKState( context.getRegion(), context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { if (GTKLookAndFeel.is3() && context.getRegion() == Region.MENU) { GTKStyle style = (GTKStyle)context.getStyle(); Color highlightColor = style.getGTKColor( GTKEngine.WidgetType.MENU_ITEM.ordinal(), gtkState, ColorType.BACKGROUND.getID()); Color backgroundColor = style.getGTKColor( GTKEngine.WidgetType.MENU_BAR.ordinal(), SynthConstants.ENABLED, ColorType.BACKGROUND.getID()); int minBrightness = 0, maxBrightness = 255; int minBrightnessDifference = 100; int actualBrightnessDifference = getMaxColorDiff(highlightColor, backgroundColor); if (actualBrightnessDifference < minBrightnessDifference) { int highlightBrightness = getBrightness(highlightColor); int backgroundBrightness = getBrightness(backgroundColor); int originalHighlightBrightness = highlightBrightness; if (highlightBrightness >= backgroundBrightness) { if (backgroundBrightness + minBrightnessDifference <= maxBrightness) { highlightBrightness = backgroundBrightness + minBrightnessDifference; } else { highlightBrightness = backgroundBrightness - minBrightnessDifference; } } else { if (backgroundBrightness - minBrightnessDifference >= minBrightness) { highlightBrightness = backgroundBrightness - minBrightnessDifference; } else { highlightBrightness = backgroundBrightness + minBrightnessDifference; } } g.setColor(deriveColor(highlightColor, originalHighlightBrightness, highlightBrightness)); g.fillRect(x, y, w, h); return; } } Region id = Region.MENU_ITEM; synchronized (UNIXToolkit.GTK_LOCK) { if (! ENGINE.paintCachedImage(g, x, y, w, h, id)) { ShadowType shadow = (GTKLookAndFeel.is2_2() ? ShadowType.NONE : ShadowType.OUT); ENGINE.startPainting(g, x, y, w, h, id); ENGINE.paintBox(g, context, id, gtkState, shadow, "menuitem", x, y, w, h); ENGINE.finishPainting(); } } } }
Example 16
Source File: Metacity.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
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 17
Source File: GTKPainter.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
public void paintMenuItemBackground(SynthContext context, Graphics g, int x, int y, int w, int h) { int gtkState = GTKLookAndFeel.synthStateToGTKState( context.getRegion(), context.getComponentState()); if (gtkState == SynthConstants.MOUSE_OVER) { if (GTKLookAndFeel.is3() && context.getRegion() == Region.MENU) { GTKStyle style = (GTKStyle)context.getStyle(); Color highlightColor = style.getGTKColor( GTKEngine.WidgetType.MENU_ITEM.ordinal(), gtkState, ColorType.BACKGROUND.getID()); Color backgroundColor = style.getGTKColor( GTKEngine.WidgetType.MENU_BAR.ordinal(), SynthConstants.ENABLED, ColorType.BACKGROUND.getID()); int minBrightness = 0, maxBrightness = 255; int minBrightnessDifference = 100; int actualBrightnessDifference = getMaxColorDiff(highlightColor, backgroundColor); if (actualBrightnessDifference < minBrightnessDifference) { int highlightBrightness = getBrightness(highlightColor); int backgroundBrightness = getBrightness(backgroundColor); int originalHighlightBrightness = highlightBrightness; if (highlightBrightness >= backgroundBrightness) { if (backgroundBrightness + minBrightnessDifference <= maxBrightness) { highlightBrightness = backgroundBrightness + minBrightnessDifference; } else { highlightBrightness = backgroundBrightness - minBrightnessDifference; } } else { if (backgroundBrightness - minBrightnessDifference >= minBrightness) { highlightBrightness = backgroundBrightness - minBrightnessDifference; } else { highlightBrightness = backgroundBrightness + minBrightnessDifference; } } g.setColor(deriveColor(highlightColor, originalHighlightBrightness, highlightBrightness)); g.fillRect(x, y, w, h); return; } } Region id = Region.MENU_ITEM; synchronized (UNIXToolkit.GTK_LOCK) { if (! ENGINE.paintCachedImage(g, x, y, w, h, id)) { ShadowType shadow = (GTKLookAndFeel.is2_2() ? ShadowType.NONE : ShadowType.OUT); ENGINE.startPainting(g, x, y, w, h, id); ENGINE.paintBox(g, context, id, gtkState, shadow, "menuitem", x, y, w, h); ENGINE.finishPainting(); } } } }
Example 18
Source File: Metacity.java From Bytecoder with Apache License 2.0 | 4 votes |
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: Metacity.java From JDKSourceCode1.8 with MIT License | 4 votes |
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 20
Source File: Metacity.java From jdk1.8-source-analysis with Apache License 2.0 | 4 votes |
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); }