Removed light wood theme.

Changed text on buttons.
master
ubeefx 2011-01-13 20:54:54 +00:00
parent 4e8598e412
commit ca15821df0
4 changed files with 2 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

View File

@ -17,7 +17,6 @@ public class IconImages {
public static final BufferedImage LOGO=loadImage("textures/logo.jpg");
public static final BufferedImage WOOD=loadImage("textures/wood.jpg");
public static final BufferedImage WOOD2=loadImage("textures/wood2.jpg");
public static final BufferedImage MARBLE=loadImage("textures/marble.jpg");
public static final BufferedImage GRANITE=loadImage("textures/granite.jpg");
public static final BufferedImage GRANITE2=loadImage("textures/granite2.jpg");

View File

@ -73,14 +73,14 @@ public class TournamentPanel extends JPanel implements ActionListener {
tournamentDifficultyViewer=new TournamentDifficultyViewer(tournament);
add(tournamentDifficultyViewer);
playButton=new JButton("Play game");
playButton=new JButton("PLAY GAME");
playButton.setFont(FontsAndBorders.FONT4);
playButton.addActionListener(this);
playButton.setFocusable(false);
playButton.setEnabled(!tournament.isFinished());
add(playButton);
newButton=new JButton("New");
newButton=new JButton("NEW");
newButton.setFont(FontsAndBorders.FONT4);
newButton.addActionListener(this);
newButton.setFocusable(false);

View File

@ -41,7 +41,6 @@ public class ThemeFactory {
final List<Theme> themes=new ArrayList<Theme>();
themes.add(new DefaultTheme("wood",IconImages.WOOD,IconImages.MARBLE,Color.BLACK));
themes.add(new DefaultTheme("light wood",IconImages.WOOD2,IconImages.MARBLE,Color.BLACK));
themes.add(new DefaultTheme("granite",IconImages.GRANITE,IconImages.GRANITE2,Color.BLACK));
themes.add(new DefaultTheme("opal",IconImages.OPAL,IconImages.OPAL2,Color.BLUE));