Package com.cburch.draw.tools

Source Code of com.cburch.draw.tools.ToolbarToolItem

/* Copyright (c) 2010, Carl Burch. License information is located in the
* com.cburch.logisim.Main source code and at www.cburch.com/logisim/. */

package com.cburch.draw.tools;

import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Graphics;

import javax.swing.Icon;

import com.cburch.draw.toolbar.ToolbarItem;

public class ToolbarToolItem implements ToolbarItem {
  private AbstractTool tool;
  private Icon icon;
 
  public ToolbarToolItem(AbstractTool tool) {
    this.tool = tool;
    this.icon = tool.getIcon();
  }
 
  public AbstractTool getTool() {
    return tool;
  }
 
  public boolean isSelectable() {
    return true;
  }
 
  public void paintIcon(Component destination, Graphics g) {
    if (icon == null) {
      g.setColor(new Color(255, 128, 128));
      g.fillRect(4, 4, 8, 8);
      g.setColor(Color.BLACK);
      g.drawLine(4, 4, 12, 12);
      g.drawLine(4, 12, 12, 4);
      g.drawRect(4, 4, 8, 8);
    } else {
      icon.paintIcon(destination, g, 4, 4);
    }
  }
 
  public String getToolTip() {
    return tool.getDescription();
  }
 
  public Dimension getDimension(Object orientation) {
    if (icon == null) {
      return new Dimension(16, 16);
    } else {
      return new Dimension(icon.getIconWidth() + 8, icon.getIconHeight() + 8);
    }
  }
}
TOP

Related Classes of com.cburch.draw.tools.ToolbarToolItem

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.