Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI_ArrayView.h
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  SUPERV SUPERVGUI : GUI for Supervisor component
21 //
22 //  File   : SUPERVGUI_ArrayView.h
23 //  Author : 
24 //  Module : SUPERV
25
26 #ifndef SUPERVGUI_ArrayView_H
27 #define SUPERVGUI_ArrayView_H
28
29 #include "SUPERVGUI_CanvasArray.h"
30 #include <qpopupmenu.h>
31 #include <qtooltip.h>
32
33 //VRV: porting on Qt 3.0.5
34 #if QT_VERSION >= 0x030005
35 #include <qcursor.h> 
36 #endif
37 //VRV: porting on Qt 3.0.5
38
39 class SUPERVGUI_Main;
40
41 class SUPERVGUI_ArrayView: public QCanvasView {
42   Q_OBJECT
43
44   public:
45     SUPERVGUI_ArrayView(SUPERVGUI_CanvasArray* theArray, SUPERVGUI_Main* theMain);
46     virtual ~SUPERVGUI_ArrayView();
47
48     SUPERVGUI_Main* getMain() const { return myMain; }
49
50     void ActivatePanning();
51     void ResetView();
52
53   public slots:
54     void addToStudy();
55     void changeBackground();
56
57   protected:
58     void resizeEvent( QResizeEvent* e);
59
60   private:
61     void contentsMousePressEvent(QMouseEvent* theEvent);
62     void contentsMouseMoveEvent(QMouseEvent* theEvent);
63     void contentsMouseReleaseEvent(QMouseEvent* theEvent);
64
65     SUPERVGUI_Main* myMain;
66     QPopupMenu*     myPopup;
67     int             myAddStudyItem;
68     int             myShowToolBarItem;
69
70     QCursor         myCursor;
71
72     QPoint   myGlobalPoint;
73
74     bool myIsPanActivated;
75
76 };
77
78 class SUPERVGUI_ToolTip: public QToolTip {
79
80   public:
81     SUPERVGUI_ToolTip(QWidget* theWidget, QToolTipGroup* theGroup = 0):
82       QToolTip(theWidget, theGroup) {}
83     ~SUPERVGUI_ToolTip() { remove(parentWidget()); }
84     
85     virtual void maybeTip(const QPoint& theP);
86 };
87
88 #endif