/* Copyright or (C) or Copr. GET / ENST, Telecom-Paris, Ludovic Apvrille * * ludovic.apvrille AT enst.fr * * This software is a computer program whose purpose is to allow the * edition of TURTLE analysis, design and deployment diagrams, to * allow the generation of RT-LOTOS or Java code from this diagram, * and at last to allow the analysis of formal validation traces * obtained from external tools, e.g. RTL from LAAS-CNRS and CADP * from INRIA Rhone-Alpes. * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, * modify and/ or redistribute the software under the terms of the CeCILL * license as circulated by CEA, CNRS and INRIA at the following URL * "http://www.cecill.info". * * As a counterpart to the access to the source code and rights to copy, * modify and redistribute granted by the license, users are provided only * with a limited warranty and the software's author, the holder of the * economic rights, and the successive licensors have only limited * liability. * * In this respect, the user's attention is drawn to the risks associated * with loading, using, modifying and/or developing or reproducing the * software by the user in light of its specific status of free software, * that may mean that it is complicated to manipulate, and that also * therefore means that it is reserved for developers and experienced * professionals having in-depth computer knowledge. Users are therefore * encouraged to load and test the software's suitability as regards their * requirements in conditions enabling the security of their systems and/or * data to be ensured and, more generally, to use and operate it in the * same conditions as regards security. * * The fact that you are presently reading this means that you have had * knowledge of the CeCILL license and that you accept its terms. */ package ui.tmlcd; import myutil.GraphicLib; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import ui.*; import ui.tmlad.TMLActivityDiagramPanel; import ui.util.IconManager; import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.LinkedList; /** * Class TMLTaskOperator * TML Task to be used in TML Task diagram * Creation: 28/10/2005 * @version 1.0 28/10/2005 * @author Ludovic APVRILLE */ public class TMLTaskOperator extends TGCWithInternalComponent implements TMLTaskInterface { public String oldValue; protected int textX = 5; protected int textY = 18; protected Graphics graphics; protected int iconSize = 16; protected boolean exit = false; protected int exitFontSize = 10; protected final static String EXIT_STRING = "<<exit>>"; public TMLTaskOperator(int _x, int _y, int _minX, int _maxX, int _minY, int _maxY, boolean _pos, TGComponent _father, TDiagramPanel _tdp) { super(_x, _y, _minX, _maxX, _minY, _maxY, _pos, _father, _tdp); width = 150; height = 30; minWidth = 150; minDesiredWidth = 150; minDesiredHeight = 30; nbConnectingPoint = 20; connectingPoint = new TGConnectingPoint[nbConnectingPoint]; connectingPoint[0] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.0, .5); connectingPoint[1] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 1.0, 0.5); connectingPoint[2] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.25, 0.0); connectingPoint[3] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.5, 0.0); connectingPoint[4] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.75, 0.0); connectingPoint[5] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.0, .5); connectingPoint[6] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 1.0, 0.5); connectingPoint[7] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.25, 0.0); connectingPoint[8] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.5, 0.0); connectingPoint[9] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.75, 0.0); connectingPoint[10] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.0, .5); connectingPoint[11] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 1.0, 0.5); connectingPoint[12] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.25, 0.0); connectingPoint[13] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.5, 0.0); connectingPoint[14] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.75, 0.0); connectingPoint[15] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.0, .5); connectingPoint[16] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 1.0, 0.5); connectingPoint[17] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.25, 0.0); connectingPoint[18] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.5, 0.0); connectingPoint[19] = new TGConnectingPointTMLTask(this, 0, 0, true, true, 0.75, 0.0); nbInternalTGComponent = 3; tgcomponent = new TGComponent[nbInternalTGComponent]; int h = 1; TMLAttributeBox tgc0; tgc0 = new TMLAttributeBox(x, y+height+h, 0, 0, height + h, height+h, true, this, _tdp); tgcomponent[0] = tgc0; h += tgcomponent[0].getHeight() + 1; TGComponent tgc = new TMLOperationBox(x, y+height + h, 0, 0, height + h, height + h, true, this, _tdp); tgcomponent[1] = tgc; h += tgcomponent[1].getHeight() + 1; tgc = new TMLActivityDiagramBox(x, y+height + h, 0, 0, height + h, height + h, true, this, _tdp); tgcomponent[2] = tgc; moveable = true; editable = true; removable = true; // Name of the Tclass name = "TMLTask"; value = tdp.findTMLTaskName("TMLTask_"); oldValue = value; myImageIcon = IconManager.imgic806; actionOnAdd(); } public void recalculateSize() { // int i; for(i=0; i<nbInternalTGComponent; i++) { tgcomponent[i].calculateMyDesiredSize(); } int minW = getMyDesiredWidth(); for(i=0; i<nbInternalTGComponent; i++) { minW = Math.max(minW, tgcomponent[i].getMinDesiredWidth()); } for(i=0; i<nbInternalTGComponent; i++) { tgcomponent[i].forceSize(minW, tgcomponent[i].getMinDesiredHeight()); } forceSize(minW, getHeight()); // Reposition all internal components int h = getHeight(); for(i=0; i<nbInternalTGComponent; i++) { tgcomponent[i].setCdRectangle(0, 0, h, h); tgcomponent[i].setCd(tgcomponent[i].getX(), h); h += tgcomponent[i].getHeight(); } } public int getMyDesiredWidth() { if (graphics == null) { graphics = tdp.getGraphics(); } if (graphics == null) { return minWidth; } Font f = graphics.getFont(); graphics.setFont(f.deriveFont(Font.BOLD)); int size = graphics.getFontMetrics().stringWidth(value) + iconSize + 13; graphics.setFont(f); minDesiredWidth = Math.max(size, minWidth); return minDesiredWidth; } /*private int calculateDesiredWidth() { int w = Math.max(minDesiredWidth, tgcomponent[0].getMinDesiredWidth()); w = Math.max(w, tgcomponent[1].getMinDesiredWidth()); return w; }*/ @Override public void internalDrawing(Graphics g) { if (!tdp.isScaled()) { graphics = g; } // Font f = g.getFont(); //int size = f.getSize(); g.drawRect(x, y, width, height); g.setColor(Color.yellow); g.fillRect(x+1, y+1, width-1, height-1); //g.drawImage(IconManager.img9, x + width - 20, y + 6, Color.yellow, null); // ColorManager.setColor(g, getState(), 0); g.setFont(f.deriveFont(Font.BOLD)); drawSingleString(g,value, x + textX, y + textY); g.setFont(f); if (exit) { g.setFont(f.deriveFont((float)exitFontSize)); int w = g.getFontMetrics().stringWidth(EXIT_STRING); drawSingleString(g,EXIT_STRING, x + width - w - 5, y + textY + exitFontSize); g.setFont(f); } } @Override public boolean editOnDoubleClick(JFrame frame) { oldValue = value; String text = getName() + ": "; if (hasFather()) { text = getTopLevelName() + " / " + text; } String s = (String)JOptionPane.showInputDialog(frame, text, "setting value", JOptionPane.PLAIN_MESSAGE, IconManager.imgic101, null, getValue()); if ((s != null) && (s.length() > 0) && (!s.equals(oldValue))) { //boolean b; if (!TAttribute.isAValidId(s, false, false, false)) { JOptionPane.showMessageDialog(frame, "Could not change the name of the TML Task: the new name is not a valid name", "Error", JOptionPane.INFORMATION_MESSAGE); return false; } if (!tdp.isTMLTaskNameUnique(s)) { JOptionPane.showMessageDialog(frame, "Could not change the name of the TML Task: the new name is already in use", "Error", JOptionPane.INFORMATION_MESSAGE); return false; } /*int size = graphics.getFontMetrics().stringWidth(s) + iconSize + 5; minDesiredWidth = Math.max(size, minWidth); if (minDesiredWidth != width) { newSizeForSon(null); }*/ setValue(s); recalculateSize(); if (tdp.actionOnDoubleClick(this)) { return true; } else { JOptionPane.showMessageDialog(frame, "Could not change the name of the TML Task: this name is already in use", "Error", JOptionPane.INFORMATION_MESSAGE); setValue(oldValue); } } return false; } public TGComponent isOnOnlyMe(int x1, int y1) { if (GraphicLib.isInRectangle(x1, y1, x, y, width, height)) { return this; } return null; } public String getTaskName() { return value; } public int getType() { return TGComponentManager.TMLTD_TASK; } public LinkedList<TAttribute> getAttributes(){ return ((TMLAttributeBox)(tgcomponent[0])).getAttributeList(); } public void checkSizeOfSons() { ((TMLAttributeBox)(tgcomponent[0])).checkMySize(); } public void setAttributes(LinkedList<TAttribute> attributes) { ((TMLAttributeBox)(tgcomponent[0])).setAttributeList(attributes); } public String toString() { return getValue() ; } public TMLActivityDiagramPanel getTMLActivityDiagramPanel() { return ((TMLDesignPanel)(tdp.tp)).getTMLActivityDiagramPanel(getTaskName()); } protected String translateExtraParam() { StringBuffer sb = new StringBuffer("<extraparam>\n"); sb.append("<Exit isExit=\""); if (isExit()) { sb.append("true"); } else { sb.append("false"); } sb.append("\" />\n"); sb.append("</extraparam>\n"); return new String(sb); } @Override public void loadExtraParam(NodeList nl, int decX, int decY, int decId) throws MalformedModelingException{ try { NodeList nli; Node n1, n2; Element elt; String startS; // // for(int i=0; i<nl.getLength(); i++) { n1 = nl.item(i); if (n1.getNodeType() == Node.ELEMENT_NODE) { nli = n1.getChildNodes(); for(int j=0; j<nli.getLength(); j++) { n2 = nli.item(j); if (n2.getNodeType() == Node.ELEMENT_NODE) { elt = (Element) n2; if (elt.getTagName().equals("Exit")) { startS = elt.getAttribute("isExit"); exit = startS.equals("true"); } } } } } } catch (Exception e) { throw new MalformedModelingException(); } } public boolean isExit() { return exit; } public void addActionToPopupMenu(JPopupMenu componentMenu, ActionListener menuAL, int x, int y) { componentMenu.addSeparator(); JMenuItem isExit = null; if (exit) { isExit = new JMenuItem("Remove <<exit>>"); } else { isExit = new JMenuItem("Add <<exit>>"); } isExit.addActionListener(menuAL); componentMenu.add(isExit); } public boolean eventOnPopup(ActionEvent e) { exit = !exit; return true; } public int getDefaultConnector() { return TGComponentManager.CONNECTOR_TML_ASSOCIATION_NAV; } }