]> SALOME platform Git repositories - modules/superv.git/blob - src/SUPERVGUI/SUPERVGUI_ArrayView.cxx
Salome HOME
Merging with JR_ASV_2_1_0_deb_with_KERNEL_Head branch, which contains many bug fixes...
[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"), this, SLOT(addToStudy()));
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::addToStudy() 
95 {
96   if (myMain->addStudy()) myMain->setAsFromStudy(true);
97 }
98
99 void SUPERVGUI_ArrayView::changeBackground()
100 {
101   QColor aColor = QColorDialog::getColor(canvas()->backgroundColor(), this );
102   if ( aColor.isValid() ) {
103     canvas()->setBackgroundColor(aColor);
104     setPaletteBackgroundColor(aColor.light(120));
105   }
106 }
107
108 void SUPERVGUI_ArrayView::contentsMousePressEvent(QMouseEvent* theEvent) {
109   myGlobalPoint = theEvent->globalPos();
110
111   if (((theEvent->button() == Qt::MidButton)
112        &&
113        (theEvent->state() == Qt::ControlButton)) || myIsPanActivated) {
114     myIsPanActivated = true;
115     viewport()->setMouseTracking(false); //widget only receives mouse move events when at least one 
116                                          //mouse button is pressed down while the mouse is being moved
117     myCursor = cursor();
118     setCursor(PanCursor);
119     return;
120   } 
121
122   QPoint thePoint = inverseWorldMatrix().map(theEvent->pos());
123   // compute collision rectangle
124   QRect aSel(thePoint.x()-MARGIN, thePoint.y()-MARGIN, 1+2*MARGIN, 1+2*MARGIN);
125
126   if (theEvent->button() == RightButton) {
127     QCanvasItemList l = canvas()->collisions(aSel);
128     for (QCanvasItemList::Iterator it = l.begin(); it != l.end(); ++it) {
129       if ((*it)->rtti() == SUPERVGUI_Canvas::Rtti_Node) {
130         SUPERVGUI_CanvasCellNodePrs* aNodePrs = (SUPERVGUI_CanvasCellNodePrs*) (*it);
131         QObject* anObj = aNodePrs->getObject(thePoint);
132         if (anObj->inherits("SUPERVGUI_CanvasCellNode")) {
133           myMain->showPopup(((SUPERVGUI_CanvasCellNode*)anObj)->getPopupMenu(viewport()), 
134                             theEvent);
135           return;
136         }
137       }
138     }
139
140     myPopup->setItemEnabled(myAddStudyItem, !myMain->isFromStudy());
141     myMain->showPopup(myPopup, theEvent);
142     return;
143   }
144 }
145
146 void SUPERVGUI_ArrayView::contentsMouseMoveEvent(QMouseEvent* theEvent) {
147   QPoint g = theEvent->globalPos();
148   if (myIsPanActivated) {
149     scrollBy(myGlobalPoint.x() - g.x(),
150              myGlobalPoint.y() - g.y());
151     myGlobalPoint = g;
152     return;
153   }
154
155   // QToolTip for title and label for SUPERVGUI_CanvasCellNode
156   SUPERVGUI_ToolTip* aTT = new SUPERVGUI_ToolTip(this);
157   QPoint aPoint1 = inverseWorldMatrix().map(theEvent->pos());
158   aTT->maybeTip(aPoint1);
159 }
160
161 void SUPERVGUI_ArrayView::contentsMouseReleaseEvent(QMouseEvent* theEvent) {
162   if (myIsPanActivated) {
163     myIsPanActivated = false;
164     viewport()->setMouseTracking(true);
165     setCursor(myCursor);
166   }
167 }
168
169 void SUPERVGUI_ToolTip::maybeTip(const QPoint& theP) {
170   // compute collision rectangle
171   QRect aSel(theP.x()-MARGIN, theP.y()-MARGIN, 1+2*MARGIN, 1+2*MARGIN);
172
173   QCanvasItemList l = ((SUPERVGUI_ArrayView*)parentWidget())->canvas()->collisions(aSel);
174   for (QCanvasItemList::Iterator it = l.begin(); it != l.end(); ++it) {
175     if ((*it)->rtti() == SUPERVGUI_Canvas::Rtti_Node) {
176       SUPERVGUI_CanvasCellNodePrs* aNodePrs = (SUPERVGUI_CanvasCellNodePrs*) (*it);
177       QObject* anObj = aNodePrs->getObject(theP);
178       if (anObj->inherits("SUPERVGUI_CanvasCellNode")) {
179         
180         QRect aTitleRect = aNodePrs->getTitleRect();
181         if (aTitleRect.contains(theP, true)) {
182           tip(aTitleRect, ((SUPERVGUI_CanvasCellNode*)anObj)->getEngine()->Name());
183           return;
184         }
185
186         QRect aLabelRect = aNodePrs->getLabelRect();
187         if (aLabelRect.contains(theP, true)) {
188           tip(aLabelRect, ((SUPERVGUI_CanvasCellNode*)anObj)->getLabelText());
189           return;
190         }
191       }
192     }
193   }
194 }