/*
* Lucane - a collaborative platform
* Copyright (C) 2004 Vincent Fiack <vfiack@mail15.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.lucane.applications.whiteboard.graph.shapes;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Point;
import java.util.Date;
import java.util.Hashtable;
import java.util.Map;
import org.jgraph.graph.AttributeMap;
import org.jgraph.graph.DefaultPort;
import org.jgraph.graph.GraphConstants;
import org.lucane.applications.whiteboard.WhiteBoard;
import org.lucane.applications.whiteboard.graph.MyGraph;
import org.lucane.applications.whiteboard.graph.cells.TextCell;
class Text implements Shape
{
private WhiteBoard plugin;
public Text(WhiteBoard plugin)
{
this.plugin = plugin;
}
public void paint(Graphics g, Point start, Point end)
{
java.awt.Rectangle bounds = ShapeUtils.getBounds(start, end);
g.setColor(Color.LIGHT_GRAY);
g.drawRect(bounds.x, bounds.y, bounds.width, bounds.height);
}
public void addToGraph(MyGraph graph, Point start, Point end)
{
TextCell cell = new TextCell(plugin.tr("msg.enterYourTextHere"), true);
AttributeMap attrs = new AttributeMap();
attrs.put("timestamp", new Date());
GraphConstants.setBounds(attrs, ShapeUtils.getBounds(start, end));
DefaultPort hp = new DefaultPort();
cell.add(hp);
Object[] cells = new Object[] { cell };
Map attributes = new Hashtable();
attributes.put(cell, attrs);
graph.getModel().insert(cells, attributes, null, null, null);
}
}
|