JToolBarの半透明化とアニメーション
Total: 4764
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
コンポーネントにマウスカーソルがある場合だけ表示される半透明のJToolBar
を追加します。
Screenshot
Advertisement
サンプルコード
class ImageCaptionLabel extends JLabel implements HierarchyListener {
private float alpha = 0f;
private Timer animator;
private int yy = 0;
private JToolBar toolBox = new JToolBar() {
@Override protected void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D) g.create();
g2.setPaint(getBackground());
g2.fillRect(0, 0, getWidth(), getHeight());
g2.dispose();
super.paintComponent(g);
}
};
public ImageCaptionLabel(String caption, Icon image) {
setIcon(image);
toolBox.setFloatable(false);
toolBox.setOpaque(false);
toolBox.setBackground(new Color(0x0, true));
toolBox.setForeground(Color.WHITE);
toolBox.setBorder(BorderFactory.createEmptyBorder(2, 4, 4, 4));
// toolBox.setLayout(new BoxLayout(toolBox, BoxLayout.X_AXIS));
toolBox.add(Box.createGlue());
toolBox.add(makeToolButton("ATTACHMENT_16x16-32.png"));
toolBox.add(Box.createHorizontalStrut(2));
toolBox.add(makeToolButton("RECYCLE BIN - EMPTY_16x16-32.png"));
MouseAdapter ma = new MouseAdapter() {
@Override public void mouseEntered(MouseEvent e) {
dispatchMouseEvent(e);
}
@Override public void mouseExited(MouseEvent e) {
dispatchMouseEvent(e);
}
private void dispatchMouseEvent(MouseEvent e) {
Component src = e.getComponent();
Component tgt = ImageCaptionLabel.this;
tgt.dispatchEvent(SwingUtilities.convertMouseEvent(src, e, tgt));
}
};
toolBox.addMouseListener(ma);
// ...
View in GitHub: Java, Kotlin解説
上記のサンプルでは、以下のリンクの方法を合わせて使用して画像アイコンを表示したJLabel
に半透明にしたJToolBar
を追加しています。
JToolBar
本体の透明化はJMenuBarの背景に画像を表示するJToolBar
内部に配置するJButton
の透明化はJButtonの描画JToolBar
の表示・非表示アニメーションはJTextAreaをキャプションとして画像上にスライドイン
参考リンク
- JMenuBarの背景に画像を表示する
- JButtonの描画
- JTextAreaをキャプションとして画像上にスライドイン
- "ecqlipse 2" PNG by ~chrfb on deviantART
- アイコンを借用