Implement hand auto-sort
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@205 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
8a3439f736
commit
56b75e037a
3 changed files with 183 additions and 73 deletions
|
@ -101,7 +101,7 @@ class PlayerPanel extends JPanel implements IPlayerPanel {
|
|||
currentPlayerNameLabel.setVerticalTextPosition(JLabel.CENTER);
|
||||
leftPanel.add(currentPlayerNameLabel);
|
||||
|
||||
sortByGroupsButton = new JButton("<html><center>Nach Gruppen sortieren");
|
||||
sortByGroupsButton = new JButton("<html><center>Nach Sammlungen sortieren");
|
||||
sortByGroupsButton.setFont(sortByGroupsButton.getFont().deriveFont(0));
|
||||
sortByGroupsButton.setMargin(new Insets(0, 0, 0, 0));
|
||||
sortByGroupsButton.addActionListener(new ActionListener() {
|
||||
|
@ -208,7 +208,7 @@ class PlayerPanel extends JPanel implements IPlayerPanel {
|
|||
int firstLineHeight = (int) ((height - SIDE_PANEL_SEPARATOR) * SIDE_PANEL_FIRST_LINE_HEIGHT);
|
||||
int buttonWidth = (width - SIDE_PANEL_SEPARATOR) / 2;
|
||||
int buttonHeight = height - SIDE_PANEL_SEPARATOR - firstLineHeight;
|
||||
float fontSize = (float) Math.sqrt(buttonWidth * buttonHeight) / 5;
|
||||
float fontSize = (float) Math.sqrt(buttonWidth * buttonHeight) / 6;
|
||||
if (fontSize > MAX_BUTTON_FONT_SIZE)
|
||||
fontSize = MAX_BUTTON_FONT_SIZE;
|
||||
|
||||
|
|
Reference in a new issue