import java.awt.*; import javax.swing.*; /** Part of a small example showing basic use of JToolBar. * Creates a small dockable toolbar that is supposed to look * vaguely like one that might come with a Web browser. * Makes use of ToolBarButton, a small extension of JButton that * shrinks the margins around the icon and puts text label, if * any, below the icon. * 1999 Marty Hall, http://www.apl.jhu.edu/~hall/java/ */ public class BrowserToolBar extends JToolBar { public BrowserToolBar() { String[] imageFiles = { "Left.gif", "Right.gif", "RotCCUp.gif", "TrafficRed.gif", "Home.gif", "Print.gif", "Help.gif" }; String[] toolbarLabels = { "Back", "Forward", "Reload", "Stop", "Home", "Print", "Help" }; Insets margins = new Insets(0, 0, 0, 0); for(int i=0; i