com.sun.java.swing.plaf.windows.TMSchema.Part Java Examples
The following examples show how to use
com.sun.java.swing.plaf.windows.TMSchema.Part.
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: AnimationController.java From jdk1.8-source-analysis with Apache License 2.0 | 6 votes |
static void paintSkin(JComponent component, Skin skin, Graphics g, int dx, int dy, int dw, int dh, State state) { if (VISTA_ANIMATION_DISABLED) { skin.paintSkinRaw(g, dx, dy, dw, dh, state); return; } triggerAnimation(component, skin.part, state); AnimationController controller = getAnimationController(); synchronized (controller) { AnimationState animationState = null; Map<Part, AnimationState> map = controller.animationStateMap.get(component); if (map != null) { animationState = map.get(skin.part); } if (animationState != null) { animationState.paintSkin(skin, g, dx, dy, dw, dh, state); } else { skin.paintSkinRaw(g, dx, dy, dw, dh, state); } } }
Example #2
Source File: AnimationController.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
static void paintSkin(JComponent component, Skin skin, Graphics g, int dx, int dy, int dw, int dh, State state) { if (VISTA_ANIMATION_DISABLED) { skin.paintSkinRaw(g, dx, dy, dw, dh, state); return; } triggerAnimation(component, skin.part, state); AnimationController controller = getAnimationController(); synchronized (controller) { AnimationState animationState = null; Map<Part, AnimationState> map = controller.animationStateMap.get(component); if (map != null) { animationState = map.get(skin.part); } if (animationState != null) { animationState.paintSkin(skin, g, dx, dy, dw, dh, state); } else { skin.paintSkinRaw(g, dx, dy, dw, dh, state); } } }
Example #3
Source File: AnimationController.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
static void paintSkin(JComponent component, Skin skin, Graphics g, int dx, int dy, int dw, int dh, State state) { if (VISTA_ANIMATION_DISABLED) { skin.paintSkinRaw(g, dx, dy, dw, dh, state); return; } triggerAnimation(component, skin.part, state); AnimationController controller = getAnimationController(); synchronized (controller) { AnimationState animationState = null; Map<Part, AnimationState> map = controller.animationStateMap.get(component); if (map != null) { animationState = map.get(skin.part); } if (animationState != null) { animationState.paintSkin(skin, g, dx, dy, dw, dh, state); } else { skin.paintSkinRaw(g, dx, dy, dw, dh, state); } } }
Example #4
Source File: AnimationController.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
static void paintSkin(JComponent component, Skin skin, Graphics g, int dx, int dy, int dw, int dh, State state) { if (VISTA_ANIMATION_DISABLED) { skin.paintSkinRaw(g, dx, dy, dw, dh, state); return; } triggerAnimation(component, skin.part, state); AnimationController controller = getAnimationController(); synchronized (controller) { AnimationState animationState = null; Map<Part, AnimationState> map = controller.animationStateMap.get(component); if (map != null) { animationState = map.get(skin.part); } if (animationState != null) { animationState.paintSkin(skin, g, dx, dy, dw, dh, state); } else { skin.paintSkinRaw(g, dx, dy, dw, dh, state); } } }
Example #5
Source File: AnimationController.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
static void paintSkin(JComponent component, Skin skin, Graphics g, int dx, int dy, int dw, int dh, State state) { if (VISTA_ANIMATION_DISABLED) { skin.paintSkinRaw(g, dx, dy, dw, dh, state); return; } triggerAnimation(component, skin.part, state); AnimationController controller = getAnimationController(); synchronized (controller) { AnimationState animationState = null; Map<Part, AnimationState> map = controller.animationStateMap.get(component); if (map != null) { animationState = map.get(skin.part); } if (animationState != null) { animationState.paintSkin(skin, g, dx, dy, dw, dh, state); } else { skin.paintSkinRaw(g, dx, dy, dw, dh, state); } } }
Example #6
Source File: AnimationController.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
static synchronized PartUIClientPropertyKey getKey(Part part) { PartUIClientPropertyKey rv = map.get(part); if (rv == null) { rv = new PartUIClientPropertyKey(part); map.put(part, rv); } return rv; }
Example #7
Source File: AnimationController.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
static synchronized PartUIClientPropertyKey getKey(Part part) { PartUIClientPropertyKey rv = map.get(part); if (rv == null) { rv = new PartUIClientPropertyKey(part); map.put(part, rv); } return rv; }
Example #8
Source File: WindowsPopupMenuUI.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
@Override public void paint(Graphics g, JComponent c) { XPStyle xp = XPStyle.getXP(); if (WindowsMenuItemUI.isVistaPainting(xp)) { Skin skin = xp.getSkin(c, Part.MP_POPUPBACKGROUND); skin.paintSkin(g, 0, 0, c.getWidth(),c.getHeight(), State.NORMAL); int textOffset = getTextOffset(c); if (textOffset >= 0 /* paint gutter only for leftToRight case */ && isLeftToRight(c)) { skin = xp.getSkin(c, Part.MP_POPUPGUTTER); int gutterWidth = getGutterWidth(); int gutterOffset = textOffset - getSpanAfterGutter() - gutterWidth; c.putClientProperty(GUTTER_OFFSET_KEY, Integer.valueOf(gutterOffset)); Insets insets = c.getInsets(); skin.paintSkin(g, gutterOffset, insets.top, gutterWidth, c.getHeight() - insets.bottom - insets.top, State.NORMAL); } else { if (c.getClientProperty(GUTTER_OFFSET_KEY) != null) { c.putClientProperty(GUTTER_OFFSET_KEY, null); } } } else { super.paint(g, c); } }
Example #9
Source File: AnimationController.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
static synchronized PartUIClientPropertyKey getKey(Part part) { PartUIClientPropertyKey rv = map.get(part); if (rv == null) { rv = new PartUIClientPropertyKey(part); map.put(part, rv); } return rv; }
Example #10
Source File: WindowsPopupMenuUI.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
@Override public void paint(Graphics g, JComponent c) { if (WindowsMenuItemUI.isVistaPainting()) { XPStyle xp = XPStyle.getXP(); Skin skin = xp.getSkin(c, Part.MP_POPUPBACKGROUND); skin.paintSkin(g, 0, 0, c.getWidth(),c.getHeight(), State.NORMAL); int textOffset = getTextOffset(c); if (textOffset >= 0 /* paint gutter only for leftToRight case */ && isLeftToRight(c)) { skin = xp.getSkin(c, Part.MP_POPUPGUTTER); int gutterWidth = getGutterWidth(); int gutterOffset = textOffset - getSpanAfterGutter() - gutterWidth; c.putClientProperty(GUTTER_OFFSET_KEY, Integer.valueOf(gutterOffset)); Insets insets = c.getInsets(); skin.paintSkin(g, gutterOffset, insets.top, gutterWidth, c.getHeight() - insets.bottom - insets.top, State.NORMAL); } else { if (c.getClientProperty(GUTTER_OFFSET_KEY) != null) { c.putClientProperty(GUTTER_OFFSET_KEY, null); } } } else { super.paint(g, c); } }
Example #11
Source File: AnimationController.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
private synchronized void startAnimation(JComponent component, Part part, State startState, State endState, long millis) { boolean isForwardAndReverse = false; if (endState == State.DEFAULTED) { isForwardAndReverse = true; } Map<Part, AnimationState> map = animationStateMap.get(component); if (millis <= 0) { if (map != null) { map.remove(part); if (map.size() == 0) { animationStateMap.remove(component); } } return; } if (map == null) { map = new EnumMap<Part, AnimationState>(Part.class); animationStateMap.put(component, map); } map.put(part, new AnimationState(startState, millis, isForwardAndReverse)); if (! timer.isRunning()) { timer.start(); } }
Example #12
Source File: AnimationController.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
static synchronized PartUIClientPropertyKey getKey(Part part) { PartUIClientPropertyKey rv = map.get(part); if (rv == null) { rv = new PartUIClientPropertyKey(part); map.put(part, rv); } return rv; }
Example #13
Source File: AnimationController.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
private static void triggerAnimation(JComponent c, Part part, State newState) { if (c instanceof javax.swing.JTabbedPane || part == Part.TP_BUTTON) { //idk: we can not handle tabs animation because //the same (component,part) is used to handle all the tabs //and we can not track the states //Vista theme might have transition duration for toolbar buttons //but native application does not seem to animate them return; } AnimationController controller = AnimationController.getAnimationController(); State oldState = controller.getState(c, part); if (oldState != newState) { controller.putState(c, part, newState); if (newState == State.DEFAULTED) { // it seems for DEFAULTED button state Vista does animation from // HOT oldState = State.HOT; } if (oldState != null) { long duration; if (newState == State.DEFAULTED) { //Only button might have DEFAULTED state //idk: do not know how to get the value from Vista //one second seems plausible value duration = 1000; } else { duration = XPStyle.getXP().getThemeTransitionDuration( c, part, normalizeState(oldState), normalizeState(newState), Prop.TRANSITIONDURATIONS); } controller.startAnimation(c, part, oldState, newState, duration); } } }
Example #14
Source File: AnimationController.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
static synchronized PartUIClientPropertyKey getKey(Part part) { PartUIClientPropertyKey rv = map.get(part); if (rv == null) { rv = new PartUIClientPropertyKey(part); map.put(part, rv); } return rv; }
Example #15
Source File: AnimationController.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
private static void triggerAnimation(JComponent c, Part part, State newState) { if (c instanceof javax.swing.JTabbedPane || part == Part.TP_BUTTON) { //idk: we can not handle tabs animation because //the same (component,part) is used to handle all the tabs //and we can not track the states //Vista theme might have transition duration for toolbar buttons //but native application does not seem to animate them return; } AnimationController controller = AnimationController.getAnimationController(); State oldState = controller.getState(c, part); if (oldState != newState) { controller.putState(c, part, newState); if (newState == State.DEFAULTED) { // it seems for DEFAULTED button state Vista does animation from // HOT oldState = State.HOT; } if (oldState != null) { long duration; if (newState == State.DEFAULTED) { //Only button might have DEFAULTED state //idk: do not know how to get the value from Vista //one second seems plausible value duration = 1000; } else { duration = XPStyle.getXP().getThemeTransitionDuration( c, part, normalizeState(oldState), normalizeState(newState), Prop.TRANSITIONDURATIONS); } controller.startAnimation(c, part, oldState, newState, duration); } } }
Example #16
Source File: WindowsPopupMenuUI.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
@Override public void paint(Graphics g, JComponent c) { XPStyle xp = XPStyle.getXP(); if (WindowsMenuItemUI.isVistaPainting(xp)) { Skin skin = xp.getSkin(c, Part.MP_POPUPBACKGROUND); skin.paintSkin(g, 0, 0, c.getWidth(),c.getHeight(), State.NORMAL); int textOffset = getTextOffset(c); if (textOffset >= 0 /* paint gutter only for leftToRight case */ && isLeftToRight(c)) { skin = xp.getSkin(c, Part.MP_POPUPGUTTER); int gutterWidth = getGutterWidth(); int gutterOffset = textOffset - getSpanAfterGutter() - gutterWidth; c.putClientProperty(GUTTER_OFFSET_KEY, Integer.valueOf(gutterOffset)); Insets insets = c.getInsets(); skin.paintSkin(g, gutterOffset, insets.top, gutterWidth, c.getHeight() - insets.bottom - insets.top, State.NORMAL); } else { if (c.getClientProperty(GUTTER_OFFSET_KEY) != null) { c.putClientProperty(GUTTER_OFFSET_KEY, null); } } } else { super.paint(g, c); } }
Example #17
Source File: WindowsPopupMenuUI.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
/** * Returns gutter width. * used only on Vista. * @return width of the gutter */ static int getGutterWidth() { int rv = 2; XPStyle xp = XPStyle.getXP(); if (xp != null) { Skin skin = xp.getSkin(null, Part.MP_POPUPGUTTER); rv = skin.getWidth(); } return rv; }
Example #18
Source File: AnimationController.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
private synchronized void startAnimation(JComponent component, Part part, State startState, State endState, long millis) { boolean isForwardAndReverse = false; if (endState == State.DEFAULTED) { isForwardAndReverse = true; } Map<Part, AnimationState> map = animationStateMap.get(component); if (millis <= 0) { if (map != null) { map.remove(part); if (map.size() == 0) { animationStateMap.remove(component); } } return; } if (map == null) { map = new EnumMap<Part, AnimationState>(Part.class); animationStateMap.put(component, map); } map.put(part, new AnimationState(startState, millis, isForwardAndReverse)); if (! timer.isRunning()) { timer.start(); } }
Example #19
Source File: WindowsPopupMenuUI.java From JDKSourceCode1.8 with MIT License | 5 votes |
/** * Returns gutter width. * used only on Vista. * @return width of the gutter */ static int getGutterWidth() { int rv = 2; XPStyle xp = XPStyle.getXP(); if (xp != null) { Skin skin = xp.getSkin(null, Part.MP_POPUPGUTTER); rv = skin.getWidth(); } return rv; }
Example #20
Source File: WindowsPopupMenuUI.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
@Override public void paint(Graphics g, JComponent c) { XPStyle xp = XPStyle.getXP(); if (WindowsMenuItemUI.isVistaPainting(xp)) { Skin skin = xp.getSkin(c, Part.MP_POPUPBACKGROUND); skin.paintSkin(g, 0, 0, c.getWidth(),c.getHeight(), State.NORMAL); int textOffset = getTextOffset(c); if (textOffset >= 0 /* paint gutter only for leftToRight case */ && isLeftToRight(c)) { skin = xp.getSkin(c, Part.MP_POPUPGUTTER); int gutterWidth = getGutterWidth(); int gutterOffset = textOffset - getSpanAfterGutter() - gutterWidth; c.putClientProperty(GUTTER_OFFSET_KEY, Integer.valueOf(gutterOffset)); Insets insets = c.getInsets(); skin.paintSkin(g, gutterOffset, insets.top, gutterWidth, c.getHeight() - insets.bottom - insets.top, State.NORMAL); } else { if (c.getClientProperty(GUTTER_OFFSET_KEY) != null) { c.putClientProperty(GUTTER_OFFSET_KEY, null); } } } else { super.paint(g, c); } }
Example #21
Source File: AnimationController.java From JDKSourceCode1.8 with MIT License | 5 votes |
private synchronized void startAnimation(JComponent component, Part part, State startState, State endState, long millis) { boolean isForwardAndReverse = false; if (endState == State.DEFAULTED) { isForwardAndReverse = true; } Map<Part, AnimationState> map = animationStateMap.get(component); if (millis <= 0) { if (map != null) { map.remove(part); if (map.size() == 0) { animationStateMap.remove(component); } } return; } if (map == null) { map = new EnumMap<Part, AnimationState>(Part.class); animationStateMap.put(component, map); } map.put(part, new AnimationState(startState, millis, isForwardAndReverse)); if (! timer.isRunning()) { timer.start(); } }
Example #22
Source File: WindowsPopupMenuUI.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/** * Returns gutter width. * used only on Vista. * @return width of the gutter */ static int getGutterWidth() { int rv = 2; XPStyle xp = XPStyle.getXP(); if (xp != null) { Skin skin = xp.getSkin(null, Part.MP_POPUPGUTTER); rv = skin.getWidth(); } return rv; }
Example #23
Source File: WindowsPopupMenuUI.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * Returns gutter width. * used only on Vista. * @return width of the gutter */ static int getGutterWidth() { int rv = 2; XPStyle xp = XPStyle.getXP(); if (xp != null) { Skin skin = xp.getSkin(null, Part.MP_POPUPGUTTER); rv = skin.getWidth(); } return rv; }
Example #24
Source File: WindowsPopupMenuUI.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Returns gutter width. * used only on Vista. * @return width of the gutter */ static int getGutterWidth() { int rv = 2; XPStyle xp = XPStyle.getXP(); if (xp != null) { Skin skin = xp.getSkin(null, Part.MP_POPUPGUTTER); rv = skin.getWidth(); } return rv; }
Example #25
Source File: AnimationController.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
private synchronized void startAnimation(JComponent component, Part part, State startState, State endState, long millis) { boolean isForwardAndReverse = false; if (endState == State.DEFAULTED) { isForwardAndReverse = true; } Map<Part, AnimationState> map = animationStateMap.get(component); if (millis <= 0) { if (map != null) { map.remove(part); if (map.size() == 0) { animationStateMap.remove(component); } } return; } if (map == null) { map = new EnumMap<Part, AnimationState>(Part.class); animationStateMap.put(component, map); } map.put(part, new AnimationState(startState, millis, isForwardAndReverse)); if (! timer.isRunning()) { timer.start(); } }
Example #26
Source File: AnimationController.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
private synchronized void startAnimation(JComponent component, Part part, State startState, State endState, long millis) { boolean isForwardAndReverse = false; if (endState == State.DEFAULTED) { isForwardAndReverse = true; } Map<Part, AnimationState> map = animationStateMap.get(component); if (millis <= 0) { if (map != null) { map.remove(part); if (map.size() == 0) { animationStateMap.remove(component); } } return; } if (map == null) { map = new EnumMap<Part, AnimationState>(Part.class); animationStateMap.put(component, map); } map.put(part, new AnimationState(startState, millis, isForwardAndReverse)); if (! timer.isRunning()) { timer.start(); } }
Example #27
Source File: WindowsPopupMenuUI.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Returns gutter width. * used only on Vista. * @return width of the gutter */ static int getGutterWidth() { int rv = 2; XPStyle xp = XPStyle.getXP(); if (xp != null) { Skin skin = xp.getSkin(null, Part.MP_POPUPGUTTER); rv = skin.getWidth(); } return rv; }
Example #28
Source File: WindowsPopupMenuUI.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
@Override public void paint(Graphics g, JComponent c) { XPStyle xp = XPStyle.getXP(); if (WindowsMenuItemUI.isVistaPainting(xp)) { Skin skin = xp.getSkin(c, Part.MP_POPUPBACKGROUND); skin.paintSkin(g, 0, 0, c.getWidth(),c.getHeight(), State.NORMAL); int textOffset = getTextOffset(c); if (textOffset >= 0 /* paint gutter only for leftToRight case */ && isLeftToRight(c)) { skin = xp.getSkin(c, Part.MP_POPUPGUTTER); int gutterWidth = getGutterWidth(); int gutterOffset = textOffset - getSpanAfterGutter() - gutterWidth; c.putClientProperty(GUTTER_OFFSET_KEY, Integer.valueOf(gutterOffset)); Insets insets = c.getInsets(); skin.paintSkin(g, gutterOffset, insets.top, gutterWidth, c.getHeight() - insets.bottom - insets.top, State.NORMAL); } else { if (c.getClientProperty(GUTTER_OFFSET_KEY) != null) { c.putClientProperty(GUTTER_OFFSET_KEY, null); } } } else { super.paint(g, c); } }
Example #29
Source File: WindowsPopupMenuUI.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
@Override public void paint(Graphics g, JComponent c) { XPStyle xp = XPStyle.getXP(); if (WindowsMenuItemUI.isVistaPainting(xp)) { Skin skin = xp.getSkin(c, Part.MP_POPUPBACKGROUND); skin.paintSkin(g, 0, 0, c.getWidth(),c.getHeight(), State.NORMAL); int textOffset = getTextOffset(c); if (textOffset >= 0 /* paint gutter only for leftToRight case */ && isLeftToRight(c)) { skin = xp.getSkin(c, Part.MP_POPUPGUTTER); int gutterWidth = getGutterWidth(); int gutterOffset = textOffset - getSpanAfterGutter() - gutterWidth; c.putClientProperty(GUTTER_OFFSET_KEY, Integer.valueOf(gutterOffset)); Insets insets = c.getInsets(); skin.paintSkin(g, gutterOffset, insets.top, gutterWidth, c.getHeight() - insets.bottom - insets.top, State.NORMAL); } else { if (c.getClientProperty(GUTTER_OFFSET_KEY) != null) { c.putClientProperty(GUTTER_OFFSET_KEY, null); } } } else { super.paint(g, c); } }
Example #30
Source File: AnimationController.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
private synchronized void startAnimation(JComponent component, Part part, State startState, State endState, long millis) { boolean isForwardAndReverse = false; if (endState == State.DEFAULTED) { isForwardAndReverse = true; } Map<Part, AnimationState> map = animationStateMap.get(component); if (millis <= 0) { if (map != null) { map.remove(part); if (map.size() == 0) { animationStateMap.remove(component); } } return; } if (map == null) { map = new EnumMap<Part, AnimationState>(Part.class); animationStateMap.put(component, map); } map.put(part, new AnimationState(startState, millis, isForwardAndReverse)); if (! timer.isRunning()) { timer.start(); } }