( ( WebImageDrop ) e.getComponent () ).setImage ( null );
}
}
};
WebImageDrop x64 = new WebImageDrop ( 64, 64 );
TooltipManager.setTooltip ( x64, "Double-click to clear image", TooltipWay.trailing );
x64.addMouseListener ( ma );
WebImageDrop x48 = new WebImageDrop ( 48, 48 );
TooltipManager.setTooltip ( x48, "Double-click to clear image", TooltipWay.trailing );
x48.addMouseListener ( ma );
WebImageDrop x32 = new WebImageDrop ( 32, 32 );
TooltipManager.setTooltip ( x32, "Double-click to clear image", TooltipWay.trailing );
x32.addMouseListener ( ma );
WebImageDrop x24 = new WebImageDrop ( 24, 24 );
TooltipManager.setTooltip ( x24, "Double-click to clear image", TooltipWay.trailing );
x24.addMouseListener ( ma );
WebImageDrop x16 = new WebImageDrop ( 16, 16 );
TooltipManager.setTooltip ( x16, "Double-click to clear image", TooltipWay.trailing );
x16.addMouseListener ( ma );
GroupPanel dropGroup = new GroupPanel ( 4, x64, x48, x32, x24, x16 );
return new GroupPanel ( 4, false, imageGroup, dragLabel, dropGroup );