SUPERVGUI_CanvasCellNode::~SUPERVGUI_CanvasCellNode()
{
}
-
+/*
QPopupMenu* SUPERVGUI_CanvasCellNode::getPopupMenu(QWidget* theParent)
{
QPopupMenu* popup = SUPERVGUI_CanvasNode::getPopupMenu(theParent);
popup->setItemEnabled(myDeleteItem, false);
return popup;
}
-
+*/
void SUPERVGUI_CanvasCellNode::setPairCell(SUPERVGUI_CanvasCellNode* thePairCell) {
if (myIsControl) { //only for ControlNode
myPairCell = thePairCell;
getPrs()->setState(getEngine()->State());
}
}
-
+/*
bool SUPERVGUI_CanvasCellNode::setNodeName(QString aName)
{
bool result = SUPERVGUI_CanvasNode::setNodeName(aName);
}
return result;
}
-
+*/
SUPERVGUI_CanvasNodePrs* SUPERVGUI_CanvasCellNode::createPrs() const
{
SUPERVGUI_CanvasNodePrs* aPrs =
//set end cell for start cell as pair
myPairCell->setPairCell(dynamic_cast<SUPERVGUI_CanvasCellNode*>(this));
}
-
+/*
bool SUPERVGUI_CanvasCellEndNode::setNodeName(QString theName)
{
return SUPERVGUI_CanvasNode::setNodeName(theName);
}
-
+*/
//-----------------------------------------------------------
//*************** Select Inline node dialog******************
// Taken from SUPERVGUI_ControlNode.cxx without change
virtual bool setNodeName(QString aName);
SUPERVGUI_CanvasEndNode* getCoupled() const { return myCoupled; }
-
+
virtual QPopupMenu* getPopupMenu(QWidget* theParent);
public slots:
SUPERV_CNode theNode);
virtual ~SUPERVGUI_CanvasCellNode();
- virtual QPopupMenu* getPopupMenu(QWidget* theParent);
+ // asv : 26.01.05 : everything moved to CanvasNode::getPopupMenu()
+ //virtual QPopupMenu* getPopupMenu(QWidget* theParent);
void setPairCell(SUPERVGUI_CanvasCellNode* thePairCell);
SUPERVGUI_CanvasCellNode* getPairCell();
virtual void sync();
- virtual bool setNodeName(QString aName);
+
+ // asv : 26.01.05 : decided to remove all "edition" operations on nodes in Table view
+ //virtual bool setNodeName(QString aName);
protected:
virtual SUPERVGUI_CanvasNodePrs* createPrs() const;
SUPERVGUI_CanvasCellNode* theStart);
virtual ~SUPERVGUI_CanvasCellEndNode() {}
- virtual bool setNodeName(QString theName);
+ // asv : 26.01.05 : decided to remove all "edition" operations on nodes in Table view
+ //virtual bool setNodeName(QString theName);
};
/**