我想在单元格中使用JXBusyLabel
来通知用户当前正在为JXBusyLabel
所在的行发生事件。
例如,双击一行以打开它将触发JXBusyLabel
的任意。
这有意义吗?
如果您想知道JXBusyLabel
是什么,请查看here。
谢谢!
[编辑]解决方案基于@kleopatra回答:
import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.Timer;
import javax.swing.table.DefaultTableModel;
import org.jdesktop.swingx.JXTable;
import org.jdesktop.swingx.decorator.AbstractHighlighter;
import org.jdesktop.swingx.decorator.HighlightPredicate;
import org.jdesktop.swingx.decorator.PainterHighlighter;
import org.jdesktop.swingx.painter.BusyPainter;
public class TableBusyLabelTest {
private JFrame frame;
private JXTable table;
private JButton button;
private BusyPainter busyPainter;
private AbstractHighlighter highlighter;
private Timer timer;
private boolean on = false;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
TableBusyLabelTest window = new TableBusyLabelTest();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public TableBusyLabelTest() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
busyPainter = new BusyPainter(15);
timer = new Timer(100, getTimerActionListener());
highlighter = new PainterHighlighter(HighlightPredicate.NEVER,
busyPainter);
table = new JXTable();
table.setModel(getTableExampleModel());
// Tell which column will use the highlighter
table.getColumnExt(0).addHighlighter(highlighter);
button = new JButton("Start / Stop busy thing");
button.addActionListener(getButtonActionListener());
frame.getContentPane().add(table, BorderLayout.CENTER);
frame.getContentPane().add(button, BorderLayout.SOUTH);
}
private DefaultTableModel getTableExampleModel() {
return new DefaultTableModel(new Object[][] { { null, "Test1" },
{ null, "Test2" }, }, new String[] { "busy", "Name" });
}
private ActionListener getTimerActionListener() {
return new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
int frame = busyPainter.getFrame();
frame = (frame + 1) % busyPainter.getPoints();
busyPainter.setFrame(frame);
}
};
}
private ActionListener getButtonActionListener() {
return new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (on) {
on = false;
} else {
on = true;
}
// on a change that should toggle the busy-ness on/off
if (on) {
highlighter
.setHighlightPredicate(HighlightPredicate.ALWAYS);
timer.start();
} else {
highlighter.setHighlightPredicate(HighlightPredicate.NEVER);
timer.stop();
}
}
};
}
}
答案 0 :(得分:2)
根据您的确切用例,您不希望使用JXBusyLabel作为渲染组件(您不会获得该创建,因为它是渲染器),您只需要一个PainterHighlighter配置了BusyPainter,其frame属性由计时器控制。画家是否可见应该绑定到您的数据的某些属性,触发荧光笔HighlightPredicate的开/关。
例如,请参阅swingx测试层次结构包渲染器中的PainterVisualCheck interactiveAnimatedBusyPainterHighlight。类似的东西:
BusyPainter painter = new BusyPainter();
ActionListener l = new ActionListener() {
public void actionPerformed(ActionEvent e) {
int frame = busyPainter.getFrame();
frame = (frame+1)%busyPainter.getPoints();
busyPainter.setFrame(frame);
}
};
Timer timer = new Timer(delay, l);
AbstractHighlighter hl = new PainterHighlighter(HighlightPredicate.NEVER, painter);
table.getColumnExt().addHighlighter(hl);
// on a change that should toggle the busy-ness on/off
if (on) {
hl.setHighlightPredicate(HighlightPredicate.ALWAYS);
timer.start();
} else {
hl.setHighlightPredicate(HighlightPredicate.NEVER);
timer.stop();
}
编辑(回答扩展问题):
仅针对特定条件激活忙碌荧光笔,实现自定义HighlightPredicate并设置而不是ALWAYS。 F.i.列中的特定行:
HighlightPredicate predicate = new HighlightPredicate() {
@Override
public boolean isHighlighted(Component renderer,
ComponentAdapter adapter) {
return
adapter.convertRowIndexToModel(adapter.row) == mySpecialRow;
}
};
答案 1 :(得分:1)
是的,有可能。我也在桌子上用过这个。对于延迟加载看起来非常酷。
private class YourCellRenderer implements TableCellRenderer {
private final JLabel okLabel;
private final JXBusyLabel busyLabel;
public YourCellRenderer() {
busyLabel = new JXBusyLabel(new Dimension(50, 50));
busyLabel.setHorizontalAlignment(JXLabel.CENTER);
busyLabel.setBusy(true);
okLabel = new JLabel();
}
@Override
public Component getTableCellRendererComponent(final JTable table,
final Object value, final boolean isSelected, final boolean hasFocus,
final int row, final int column) {
if (((YourClass)value).isBusy()) {
return busyLabel;
} else {
okLabel.set(((YourClass)value).getText());
return okLabel;
}
return null;
}
将新渲染器设置为YourClass的默认渲染器:
table.setDefaultRenderer(YourClass.class, new YourCellRenderer());
您的表模型当然需要返回YourClass的实例。