Fix down button arrow size
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@394 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
594065b4ba
commit
d940351fe4
1 changed files with 10 additions and 13 deletions
|
@ -141,8 +141,7 @@ class PlayerPanel extends JPanel implements IPlayerPanel {
|
|||
leftPanel.add(hasLaidOutLabel);
|
||||
|
||||
sortByGroupsButton = createButton(leftPanel,
|
||||
"<html><center>Nach Sammlungen sortieren",
|
||||
new ActionListener() {
|
||||
"<html><center>Nach Sammlungen sortieren", new ActionListener() {
|
||||
@Override
|
||||
public void actionPerformed(ActionEvent arg0) {
|
||||
sortByGroupsEvent.emit();
|
||||
|
@ -163,8 +162,8 @@ class PlayerPanel extends JPanel implements IPlayerPanel {
|
|||
private void createRightPanel() {
|
||||
rightPanel = new JPanel();
|
||||
rightPanel.setLayout(null);
|
||||
rightPanel.setBorder(new EmptyBorder(SIDE_PANEL_INSET,
|
||||
SIDE_PANEL_INSET, SIDE_PANEL_INSET, SIDE_PANEL_INSET));
|
||||
rightPanel.setBorder(new EmptyBorder(SIDE_PANEL_INSET, SIDE_PANEL_INSET,
|
||||
SIDE_PANEL_INSET, SIDE_PANEL_INSET));
|
||||
|
||||
handRowUpButton = createButton(rightPanel, "<html><center>\u25B2",
|
||||
new ActionListener() {
|
||||
|
@ -236,8 +235,7 @@ class PlayerPanel extends JPanel implements IPlayerPanel {
|
|||
private void rescale() {
|
||||
Insets insets = getInsets();
|
||||
int x = insets.left, y = insets.top, width = getWidth() - insets.left
|
||||
- insets.right, height = getHeight() - insets.top
|
||||
- insets.bottom;
|
||||
- insets.right, height = getHeight() - insets.top - insets.bottom;
|
||||
int boardWidth = hand.getWidth();
|
||||
int handButtonWidth = (int) (width * HAND_ROW_BUTTON_RATIO);
|
||||
int meanPanelWidth = (width - boardWidth) / 2;
|
||||
|
@ -246,8 +244,8 @@ class PlayerPanel extends JPanel implements IPlayerPanel {
|
|||
|
||||
leftPanel.setBounds(x, y, leftPanelWidth, height);
|
||||
hand.setBounds(x + leftPanelWidth, y, boardWidth, height);
|
||||
rightPanel.setBounds(x + leftPanelWidth + boardWidth, y,
|
||||
rightPanelWidth, height);
|
||||
rightPanel.setBounds(x + leftPanelWidth + boardWidth, y, rightPanelWidth,
|
||||
height);
|
||||
|
||||
leftPanel.validate();
|
||||
rightPanel.validate();
|
||||
|
@ -255,8 +253,7 @@ class PlayerPanel extends JPanel implements IPlayerPanel {
|
|||
|
||||
void updateButtons() {
|
||||
handRowUpButton.setEnabled(hand.canRowUp());
|
||||
handRowUpButton.setForeground(hand.canRowUp() ? Color.BLACK
|
||||
: Color.GRAY);
|
||||
handRowUpButton.setForeground(hand.canRowUp() ? Color.BLACK : Color.GRAY);
|
||||
handRowDownButton.setEnabled(hand.canRowDown());
|
||||
handRowDownButton.setForeground(hand.canRowDown() ? Color.BLACK
|
||||
: Color.GRAY);
|
||||
|
@ -419,8 +416,8 @@ class PlayerPanel extends JPanel implements IPlayerPanel {
|
|||
fontSize * 1.5f));
|
||||
handRowDownButton.setBounds(0, getHeight() / 2, handButtonWidth,
|
||||
getHeight() / 2);
|
||||
handRowDownButton.setFont(handRowDownButton.getFont()
|
||||
.deriveFont(fontSize));
|
||||
handRowDownButton.setFont(handRowDownButton.getFont().deriveFont(
|
||||
fontSize * 1.5f));
|
||||
|
||||
timeBar.setBounds(x, y, width - firstLineHeight - SIDE_PANEL_SEPARATOR,
|
||||
firstLineHeight);
|
||||
|
|
Reference in a new issue