Changeset 346 in josm for trunk/src


Ignore:
Timestamp:
2007-10-07T16:24:43+02:00 (17 years ago)
Author:
framm
Message:
  • smaller fonts for GettingStarted screen
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/GettingStarted.java

    r345 r346  
    44import static org.openstreetmap.josm.tools.I18n.tr;
    55
     6import java.awt.Dimension;
    67import java.awt.GridBagLayout;
    78import java.awt.event.ActionEvent;
     
    3031                        this.action = action;
    3132                        String normalized = text.replaceAll("\\[([^\\]]*)\\]", "$1");
    32                         String link = "<html><h2>"+text.replaceAll("\\[([^\\]]*)\\]", "<a href='"+action+"'>$1</a>")+"</h2></html>";
     33                        String link = "<html><h3>"+text.replaceAll("\\[([^\\]]*)\\]", "<a href='"+action+"'>$1</a>")+"</h3></html>";
    3334                        setContentType("text/html");
    3435                        setText(link);
     
    7071                addGettingHelp();
    7172               
    72                 panel.add(GBC.glue(0,140), GBC.eol());
     73                panel.add(GBC.glue(0,70), GBC.eol());
     74                //panel.setMinimumSize(new Dimension(400, 600));
    7375                add(panel);
    7476    }
     
    8789
    8890        public void addCategory(String category) {
    89             panel.add(new JLabel("<html><h1>"+category+"</h1></html>"), GBC.eop().fill(GBC.HORIZONTAL).insets(0,20,0,0));
     91            panel.add(new JLabel("<html><h2>"+category+"</h2></html>"), GBC.eol().fill(GBC.HORIZONTAL).insets(0,20,0,0));
    9092    }
    9193
     
    9597        button.addActionListener(this);
    9698        button.setActionCommand(action);
    97                 panel.add(button, GBC.std().insets(40,0,15,0));
     99                panel.add(button, GBC.std().insets(20,0,5,0));
    98100                panel.add(new LinkLabel(text,action),GBC.eol());
    99101    }
Note: See TracChangeset for help on using the changeset viewer.