如何更改JToolbars浮动图像

时间:2014-08-29 16:18:36

标签: image swing floating jtoolbar

有没有一种简单的方法可以像转移处理程序中的拖动图像一样更改JToolbars浮动图像,而无需编写自己的转移处理程序?

1 个答案:

答案 0 :(得分:0)

显然,ToolbarUI中的paintDragWindow可以做到这一点。

我使用此代码将我的工具栏图像创建为浮动img。

@Override
protected void paintDragWindow(Graphics g) {
    BufferedImage img = getScreenShot(this.toolBar);
    g.drawImage(img, 0, 0, null);
    g.setColor(dragWindow.getBorderColor());

    g.drawRect(0, 0, toolBar.getWidth() - 1, toolBar.getHeight() - 1);
    System.out.println("paint drag window");
}

public static BufferedImage getScreenShot(Component component) {

    BufferedImage image = new BufferedImage(component.getWidth(),
            component.getHeight(), BufferedImage.TYPE_INT_RGB);
    // call the Component's paint method, using
    // the Graphics object of the image.
    component.paint(image.getGraphics()); // alternately use .printAll(..)
    return image;
}