Swing/ColorChannelSwapFilter の変更点
- 追加された行はこの色です。
- 削除された行はこの色です。
- Swing/ColorChannelSwapFilter へ行く。
- Swing/ColorChannelSwapFilter の差分を削除
--- category: swing folder: ColorChannelSwapFilter title: JLayerを使ってJProgressBarの色相を変更する tags: [JProgressBar, JLayer, RGBImageFilter, SwingWorker] author: aterai pubdate: 2013-06-24T08:32:54+09:00 description: JLayerを使ってJProgressBarの色相を緑から赤に変更します。 image: https://lh3.googleusercontent.com/-BOomq0cC-U4/UceBZ2TsWWI/AAAAAAAABug/yoXs3wbBVGk/s800/ColorChannelSwapFilter.png hreflang: href: https://java-swing-tips.blogspot.com/2013/06/turn-jprogressbar-red-with-jlayer-and.html lang: en --- * 概要 [#summary] `JLayer`を使って`JProgressBar`の色相を緑から赤に変更します。 #download(https://lh3.googleusercontent.com/-BOomq0cC-U4/UceBZ2TsWWI/AAAAAAAABug/yoXs3wbBVGk/s800/ColorChannelSwapFilter.png) * サンプルコード [#sourcecode] #code(link){{ class BlockedColorLayerUI extends LayerUI<JProgressBar> { public boolean isPreventing; private transient BufferedImage bi; private int prevw = -1; private int prevh = -1; @Override public void paint(Graphics g, JComponent c) { if (isPreventing && c instanceof JLayer) { JLayer jlayer = (JLayer) c; JProgressBar progress = (JProgressBar) jlayer.getView(); int w = progress.getSize().width; int h = progress.getSize().height; if (bi == null || w != prevw || h != prevh) { bi = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB); } prevw = w; prevh = h; Graphics2D g2 = bi.createGraphics(); super.paint(g2, c); g2.dispose(); Image image = c.createImage( new FilteredImageSource(bi.getSource(), new RedGreenChannelSwapFilter())); // BUG: cause an infinite repaint loop: g.drawImage(image, 0, 0, c); Image image = c.createImage(new FilteredImageSource( bi.getSource(), new RedGreenChannelSwapFilter())); g.drawImage(image, 0, 0, null); } else { super.paint(g, c); } } } class RedGreenChannelSwapFilter extends RGBImageFilter { @Override public int filterRGB(int x, int y, int argb) { int r = (int) ((argb >> 16) & 0xFF); int g = (int) ((argb >> 8) & 0xFF); int b = (int) ((argb) & 0xFF); int g = (int) ((argb >> 8) & 0xFF); int b = (int) (argb & 0xFF); return (argb & 0xFF_00_00_00) | (g << 16) | (r << 8) | (b); } } }} * 解説 [#explanation] - `setStringPainted(true)`: 上 -- デフォルトの`JProgressBar`に`JProgressBar#setStringPainted(true)`を設定 - `setStringPainted(true)`: 下 -- `JProgressBar#setStringPainted(true)`を設定 -- チェックボックスが選択された場合`JProgressBar#setForeground(Color)`で色を変更 - `setStringPainted(false)`: 上 -- デフォルトの`JProgressBar` - `setStringPainted(false)`: 下 -- チェックボックスが選択された場合`JLayer`を使って色を変更 --- `Windows 7`での中断状態風に緑を赤に入れ替えるため`RGBImageFilter#filterRGB(...)`をオーバーライド * 参考リンク [#reference] - [[RGBImageFilterでアイコンの色調を変更>Swing/RatingLabel]] - [[JProgressBarの文字列をJLayerを使って表示する>Swing/ProgressStringLayer]] - [[JProgressBarの進捗状況と進捗文字列色を変更する>Swing/ProgressBarSelectionColor]] * コメント [#comment] #comment - `NimbusLookAndFeel`の場合、`JProgressBar#setOpaque(true)`として`JLayer`と`RedGreenChannelSwapFilter`を使用しないと、フチが半透明にならない。また`NimbusLookAndFeel`の場合、`JProgressBar#setForeground(Color)`で変化するのは他の`LookAndFeel`とは異なり、進捗文字列になる。 -- &user(aterai); &new{2013-06-25 (火) 20:51:09}; - 再描画が無限ループするバグを修正。 -- &user(aterai); &new{2014-11-30 (日) 17:57:58}; #comment