src/share/classes/com/sun/java/swing/plaf/windows/AnimationController.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 128,142 **** //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); } } } --- 128,145 ---- //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 { ! XPStyle xp = XPStyle.getXP(); ! duration = (xp != null) ! ? xp.getThemeTransitionDuration( c, part, normalizeState(oldState), normalizeState(newState), ! Prop.TRANSITIONDURATIONS) ! : 1000; } controller.startAnimation(c, part, oldState, newState, duration); } } }