Salome HOME
Fixes for bugs PAL7846, PAL7987. "Add dataflow in Study", "Put out-port value to...
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI_ArrayView.cxx
1 //  SUPERV SUPERVGUI : GUI for Supervisor component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE
4 //
5 //  File   : SUPERVGUI_ArrayView.cxx
6 //  Author : 
7 //  Module : SUPERV
8
9
10 using namespace std;
11 #include "SUPERVGUI_ArrayView.h"
12 #include "SUPERVGUI_Main.h"
13 #include "SUPERVGUI_CanvasCellNodePrs.h"
14
15 #include <qcolordialog.h>
16
17 #if QT_VERSION >= 0x030005
18 QCursor PanCursor(Qt::SizeAllCursor);
19 #else
20 QCursor PanCursor(SizeAllCursor);
21 #endif
22
23 SUPERVGUI_ArrayView::SUPERVGUI_ArrayView(SUPERVGUI_CanvasArray* theArray, SUPERVGUI_Main* theMain):
24   QCanvasView(theArray, theMain),
25   myMain(theMain)
26 {
27   setName("TableView");
28
29   myIsPanActivated = false;
30
31   myAddStudyItem = 0;
32   myCursor = cursor();
33
34   viewport()->setMouseTracking(true); //widget receives mouse move events 
35                                       //even if no buttons are pressed down
36
37   myPopup = new QPopupMenu(viewport());
38
39   if (myMain->isEditable()) {
40     myPopup->insertItem(tr("MSG_ADD_NODE"), myMain, SLOT(addNode()));
41     myPopup->insertItem(tr("MSG_INS_FILE"), myMain, SLOT(insertFile()));
42     myPopup->insertSeparator();
43   }
44
45   QPopupMenu* aViewPopup = new QPopupMenu(viewport());
46   aViewPopup->insertItem(tr("POP_FULLVIEW"), myMain, SLOT(showCanvas()));
47   aViewPopup->insertItem(tr("POP_CONTROLVIEW"), myMain, SLOT(showContolFlow()));
48   aViewPopup->insertItem(tr("POP_TABLEVIEW"), myMain, SLOT(showCanvasTable()));
49
50   myPopup->insertItem(tr("POP_VIEW"), aViewPopup);
51   myPopup->insertSeparator();
52
53   /*QPopupMenu* aZoomPopup = new QPopupMenu(viewport());
54   aZoomPopup->insertItem("200%", this, SLOT(zoomIn()));
55   aZoomPopup->insertItem("100%", this, SLOT(zoomReset()));
56   aZoomPopup->insertItem("50%", this, SLOT(zoomOut()));
57   aZoomPopup->insertSeparator();
58   aZoomPopup->insertItem("Fit All", this, SLOT(fitAll()));
59
60   myPopup->insertItem("Zoom", aZoomPopup);
61   myPopup->insertSeparator();*/
62
63   myAddStudyItem = myPopup->insertItem(tr("MSG_ADD_STUDY"), myMain, SLOT(addDataflowToStudy()));
64   myPopup->insertItem(tr("MSG_CHANGE_INFO"), myMain, SLOT(changeInformation()));
65   myPopup->insertSeparator();
66
67   myPopup->insertItem(tr("MSG_COPY_DATAFLOW"), myMain, SLOT(copy()));
68   myPopup->insertItem(tr("MSG_FILTER_NOTIFY"), myMain, SLOT(filterNotification()));
69
70   myPopup->insertSeparator();
71   myPopup->insertItem(tr("MSG_CHANGE_BACKGROUND"), this, SLOT(changeBackground()));
72  
73   hide();
74 }
75  
76
77 SUPERVGUI_ArrayView::~SUPERVGUI_ArrayView()
78 {
79 }
80
81 void SUPERVGUI_ArrayView::ActivatePanning()
82 {
83   myIsPanActivated = true;
84   viewport()->setMouseTracking(false);
85 }
86
87 void SUPERVGUI_ArrayView::ResetView()
88 {
89   setContentsPos(0,0);
90   QWMatrix m;
91   setWorldMatrix(m);
92 }
93
94 void SUPERVGUI_ArrayView::changeBackground()
95 {
96   QColor aColor = QColorDialog::getColor(canvas()->backgroundColor(), this );
97   if ( aColor.isValid() ) {
98     canvas()->setBackgroundColor(aColor);
99     setPaletteBackgroundColor(aColor.light(120));
100   }
101 }
102
103 void SUPERVGUI_ArrayView::contentsMousePressEvent(QMouseEvent* theEvent) {
104   myGlobalPoint = theEvent->globalPos();
105
106   if (((theEvent->button() == Qt::MidButton)
107        &&
108        (theEvent->state() == Qt::ControlButton)) || myIsPanActivated) {
109     myIsPanActivated = true;
110     viewport()->setMouseTracking(false); //widget only receives mouse move events when at least one 
111                                          //mouse button is pressed down while the mouse is being moved
112     myCursor = cursor();
113     setCursor(PanCursor);
114     return;
115   } 
116
117   QPoint thePoint = inverseWorldMatrix().map(theEvent->pos());
118   // compute collision rectangle
119   QRect aSel(thePoint.x()-MARGIN, thePoint.y()-MARGIN, 1+2*MARGIN, 1+2*MARGIN);
120
121   if (theEvent->button() == RightButton) {
122     QCanvasItemList l = canvas()->collisions(aSel);
123     for (QCanvasItemList::Iterator it = l.begin(); it != l.end(); ++it) {
124       if ((*it)->rtti() == SUPERVGUI_Canvas::Rtti_Node) {
125         SUPERVGUI_CanvasCellNodePrs* aNodePrs = (SUPERVGUI_CanvasCellNodePrs*) (*it);
126         QObject* anObj = aNodePrs->getObject(thePoint);
127         if (anObj->inherits("SUPERVGUI_CanvasCellNode")) {
128           myMain->showPopup(((SUPERVGUI_CanvasCellNode*)anObj)->getPopupMenu(viewport()), 
129                             theEvent);
130           return;
131         }
132       }
133     }
134
135     myPopup->setItemEnabled(myAddStudyItem, !myMain->isDataflowInStudy());
136     myMain->showPopup(myPopup, theEvent);
137     return;
138   }
139 }
140
141 void SUPERVGUI_ArrayView::contentsMouseMoveEvent(QMouseEvent* theEvent) {
142   QPoint g = theEvent->globalPos();
143   if (myIsPanActivated) {
144     scrollBy(myGlobalPoint.x() - g.x(),
145              myGlobalPoint.y() - g.y());
146     myGlobalPoint = g;
147     return;
148   }
149
150   // QToolTip for title and label for SUPERVGUI_CanvasCellNode
151   SUPERVGUI_ToolTip* aTT = new SUPERVGUI_ToolTip(this);
152   QPoint aPoint1 = inverseWorldMatrix().map(theEvent->pos());
153   aTT->maybeTip(aPoint1);
154 }
155
156 void SUPERVGUI_ArrayView::contentsMouseReleaseEvent(QMouseEvent* theEvent) {
157   if (myIsPanActivated) {
158     myIsPanActivated = false;
159     viewport()->setMouseTracking(true);
160     setCursor(myCursor);
161   }
162 }
163
164 void SUPERVGUI_ToolTip::maybeTip(const QPoint& theP) {
165   // compute collision rectangle
166   QRect aSel(theP.x()-MARGIN, theP.y()-MARGIN, 1+2*MARGIN, 1+2*MARGIN);
167
168   QCanvasItemList l = ((SUPERVGUI_ArrayView*)parentWidget())->canvas()->collisions(aSel);
169   for (QCanvasItemList::Iterator it = l.begin(); it != l.end(); ++it) {
170     if ((*it)->rtti() == SUPERVGUI_Canvas::Rtti_Node) {
171       SUPERVGUI_CanvasCellNodePrs* aNodePrs = (SUPERVGUI_CanvasCellNodePrs*) (*it);
172       QObject* anObj = aNodePrs->getObject(theP);
173       if (anObj->inherits("SUPERVGUI_CanvasCellNode")) {
174         
175         QRect aTitleRect = aNodePrs->getTitleRect();
176         if (aTitleRect.contains(theP, true)) {
177           tip(aTitleRect, ((SUPERVGUI_CanvasCellNode*)anObj)->getEngine()->Name());
178           return;
179         }
180
181         QRect aLabelRect = aNodePrs->getLabelRect();
182         if (aLabelRect.contains(theP, true)) {
183           tip(aLabelRect, ((SUPERVGUI_CanvasCellNode*)anObj)->getLabelText());
184           return;
185         }
186       }
187     }
188   }
189 }