setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable | QGraphicsItem::ItemSendsGeometryChanges);
initInterfaces();
- updateGeometry();
+ updateGeometry(InterfaceMove);
resetInterfacesPosition();
QPointF initPos = QPointF(0.0,0.0) - originPoint;
setPos(initPos);
bool boxSizeChanged = false;
- if ((type == Resize) || (type == InterfaceMove)) {
- updateMinimumSize();
- }
+ // whatever the change, the minimum size may ahve changed
+ updateMinimumSize();
if (type == Resize) {
- prepareGeometryChange();
- updateInterfacesAndConnections();
+ // resize implies to move interfaces and to update connections
boxSizeChanged = true;
}
- if (boxWidth < minimumBoxWidth) {
- boxWidth = minimumBoxWidth;
- boxSizeChanged = true;
- }
- if (boxHeight < minimumBoxHeight) {
- boxHeight = minimumBoxHeight;
- boxSizeChanged = true;
+ else if (type == InterfaceMove) {
+ // if an interface moves, it may change the box size
+ if (boxWidth < minimumBoxWidth) {
+ boxWidth = minimumBoxWidth;
+ boxSizeChanged = true;
+ }
+ if (boxHeight < minimumBoxHeight) {
+ boxHeight = minimumBoxHeight;
+ boxSizeChanged = true;
+ }
}
if (boxSizeChanged) {
updateInterfacesAndConnections();
}
+
double x = 0.0;
double y = 0.0;
totalWidth = boxWidth;
// update all connections from/to this block
foreach(ConnectionItem *item, getScene()->getConnectionItems()){
if ((item->getFromInterfaceItem()->getOwner() == this) || (item->getToInterfaceItem()->getOwner() == this)) {
- item->setPathes();
+ item->setPath();
}
}
cursorPosition = event->scenePos();
break;
}
// recompute the geometry of the block and possibly the group item
- if (updateGeometry()) {
+ if (updateGeometry(Resize)) {
(getScene()->getGroupItem())->updateShape();
}
}
else if(params->editState == Parameters::EditInterfaceMove) {
prepareGeometryChange();
- deplaceInterface(event->pos());
+ moveInterfaceTo(event->pos());
// recompute the geometry of the block
- if (updateGeometry()) {
+ if (updateGeometry(InterfaceMove)) {
cout << "must recompute group item geometry" << endl;
(getScene()->getGroupItem())->updateShape();
}
// update connection from/to the selected interface
foreach(ConnectionItem *item, getScene()->getConnectionItems()){
if ((item->getFromInterfaceItem() == currentInterface) || (item->getToInterfaceItem() == currentInterface)) {
- item->setPathes();
+ item->setPath();
}
}
}
showProperties = menu.addAction("Show properties");
ConnectedInterface* iface = ifaceItem->refInter;
+ ConnectedInterface* ifaceGroup = NULL;
+
+
if ((iface->getDirection() == AbstractInterface::Input) && (iface->getConnectedFrom() == NULL)) {
connectToGroup = menu.addAction("Connect to group input");
}
else if ((iface->getDirection() == AbstractInterface::Output) && (!iface->isConnectedTo())) {
connectToGroup = menu.addAction("Connect to group output");
}
- else if ((iface->getConnectionFromParentGroup() != NULL) || (iface->getConnectionToParentGroup() != NULL)) {
- disconnectFromGroup = menu.addAction("Disconnect from group");
+ else if (iface->getConnectionFromParentGroup() != NULL) {
+ ifaceGroup = iface->getConnectionFromParentGroup();
+ if ((!ifaceGroup->isConnectedFrom()) || (!ifaceGroup->isConnectedTo())) {
+ disconnectFromGroup = menu.addAction("Disconnect from group");
+ }
+ }
+ else if (iface->getConnectionToParentGroup() != NULL) {
+ ifaceGroup = iface->getConnectionToParentGroup();
+ if ((!ifaceGroup->isConnectedFrom()) || (!ifaceGroup->isConnectedTo())) {
+ disconnectFromGroup = menu.addAction("Disconnect from group");
+ }
}
if (iface->isFunctionalInterface()) {