< prev index next >

src/java.desktop/share/classes/javax/swing/plaf/synth/SynthToolTipUI.java

Print this page


   1 /*
   2  * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 209             } else {
 210                 Font font = context.getStyle().getFont(context);
 211                 FontMetrics fm = c.getFontMetrics(font);
 212                 prefSize.width += context.getStyle().getGraphicsUtils(context).
 213                                   computeStringWidth(context, font, fm, text);
 214                 prefSize.height += fm.getHeight();
 215             }
 216         }
 217         return prefSize;
 218     }
 219 
 220     /**
 221      * {@inheritDoc}
 222      */
 223     @Override
 224     public void propertyChange(PropertyChangeEvent e) {
 225         if (SynthLookAndFeel.shouldUpdateStyle(e)) {
 226             updateStyle((JToolTip)e.getSource());
 227         }
 228         String name = e.getPropertyName();
 229         if (name.equals("tiptext") || "font".equals(name) ||
 230                 "foreground".equals(name) ||
 231                 "ancestor" == name || "graphicsConfiguration" == name) {
 232             // remove the old html view client property if one
 233             // existed, and install a new one if the text installed
 234             // into the JLabel is html source.
 235             JToolTip tip = ((JToolTip) e.getSource());
 236             String text = tip.getTipText();
 237             BasicHTML.updateRenderer(tip, text);
 238         }
 239     }
 240 }
   1 /*
   2  * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


 209             } else {
 210                 Font font = context.getStyle().getFont(context);
 211                 FontMetrics fm = c.getFontMetrics(font);
 212                 prefSize.width += context.getStyle().getGraphicsUtils(context).
 213                                   computeStringWidth(context, font, fm, text);
 214                 prefSize.height += fm.getHeight();
 215             }
 216         }
 217         return prefSize;
 218     }
 219 
 220     /**
 221      * {@inheritDoc}
 222      */
 223     @Override
 224     public void propertyChange(PropertyChangeEvent e) {
 225         if (SynthLookAndFeel.shouldUpdateStyle(e)) {
 226             updateStyle((JToolTip)e.getSource());
 227         }
 228         String name = e.getPropertyName();
 229         if (name.equals("tiptext") || "graphicsConfiguration".equals(name)
 230                 || "foreground".equals(name) || "font".equals(name)) {

 231             // remove the old html view client property if one
 232             // existed, and install a new one if the text installed
 233             // into the JLabel is html source.
 234             JToolTip tip = ((JToolTip) e.getSource());
 235             String text = tip.getTipText();
 236             BasicHTML.updateRenderer(tip, text);
 237         }
 238     }
 239 }
< prev index next >