Кнопка потеряла фокус: Кнопка имеет фокус:
Короткий код:
MLibrary = new JButton();
MenuPane.add(MLibrary, new AnchorConstraint(0, 0, 0, 0, AnchorConstraint.ANCHOR_ABS, AnchorConstraint.ANCHOR_NONE, AnchorConstraint.ANCHOR_ABS, AnchorConstraint.ANCHOR_ABS));
MLibrary.setText("Library");
setButtonDefaults(MLibrary);
MScheduler = new JButton();
MenuPane.add(MScheduler, new AnchorConstraint(0, 0, 0, 110, AnchorConstraint.ANCHOR_ABS, AnchorConstraint.ANCHOR_NONE, AnchorConstraint.ANCHOR_ABS, AnchorConstraint.ANCHOR_ABS));
MScheduler.setText("Scheduler");
setButtonDefaults(MScheduler);
private void setButtonDefaults(JButton but) { //calls in JPanel init only for setting button defaults
but.setBorderPainted(false);
but.setBackground(Color.DARK_GRAY);
but.setForeground(Color.WHITE);
but.setName(but.getText().toLowerCase());
but.setPreferredSize(buttonSize);
but.addActionListener(this);
}
private void enableOnlyOne(JButton but) {//calls each time when one of menu buttons are pressed. but is pressed button
// TODO Auto-generated method stub
setButtonDisabled(MLibrary);
setButtonDisabled(MScheduler);
setButtonDisabled(MBudget);
setButtonDisabled(MReports);
setButtonDisabled(MManage);
setButtonDisabled(MSettings);
//enable one
//but.setFocusPainted(true);
but.getModel().setPressed(true);
but.setBackground(ContentPane.getBackground());
but.setForeground(Color.BLACK);
}
private void setButtonDisabled(JButton but) { //sets button unpressed
but.getModel().setPressed(false);
but.setBackground(Color.DARK_GRAY);
but.setForeground(Color.WHITE);
}
Итак, мой вопрос, как кодировать каждую кнопку, когда кнопка теряет фокусЭто будет светло-серый фон, а не внешний вид по умолчанию