* @param w Width of the area to paint to
* @param h Height of the area to paint to
*/
public void paintToolTipBackground( SynthContext context, Graphics g, int x, int y, int w, int h )
{
JToolTip toolTip = ( JToolTip ) context.getComponent();
JPanel panel = ( JPanel ) toolTip.getParent();
if ( !opaqueTips.contains( toolTip ) ) {
toolTip.setOpaque( false );
panel.setOpaque( false );
panel.repaint();
toolTip.repaint();
opaqueTips.add( toolTip );
}
String imagePath = ( String ) UIManager.get( "ToolTip.background" );
Insets sInsets = new Insets( 7, 7, 7, 7 );
Insets dInsets = new Insets( 7, 7, 7, 7 );