/* * @(#)NothingApplet.java * * Project: JHotdraw - a GUI framework for technical drawings * http://www.jhotdraw.org * http://jhotdraw.sourceforge.net * Copyright: © by the original author(s) and all contributors * License: Lesser GNU Public License (LGPL) * http://www.opensource.org/licenses/lgpl-license.html */ package CH.ifa.draw.samples.nothing; import javax.swing.JPanel; import CH.ifa.draw.framework.*; import CH.ifa.draw.figures.*; import CH.ifa.draw.standard.*; import CH.ifa.draw.applet.*; import CH.ifa.draw.contrib.*; /** * @version <$CURRENT_VERSION$> */ public class NothingApplet extends DrawApplet { //-- DrawApplet overrides ----------------------------------------- protected void createTools(JPanel palette) { super.createTools(palette); Tool tool = new TextTool(this, new TextFigure()); palette.add(createToolButton(IMAGES + "TEXT", "Text Tool", tool)); tool = new CreationTool(this, new RectangleFigure()); palette.add(createToolButton(IMAGES + "RECT", "Rectangle Tool", tool)); tool = new CreationTool(this, new RoundRectangleFigure()); palette.add(createToolButton(IMAGES + "RRECT", "Round Rectangle Tool", tool)); tool = new CreationTool(this, new EllipseFigure()); palette.add(createToolButton(IMAGES + "ELLIPSE", "Ellipse Tool", tool)); tool = new CreationTool(this, new LineFigure()); palette.add(createToolButton(IMAGES + "LINE", "Line Tool", tool)); tool = new PolygonTool(this); palette.add(createToolButton(IMAGES + "POLYGON", "Polygon Tool", tool)); tool = new ConnectionTool(this, new LineConnection()); palette.add(createToolButton(IMAGES + "CONN", "Connection Tool", tool)); tool = new ConnectionTool(this, new ElbowConnection()); palette.add(createToolButton(IMAGES + "OCONN", "Elbow Connection Tool", tool)); } }