Salome HOME
Moved some functionality to VTKViewer_Utilities.h
[modules/kernel.git] / src / SUPERVGraph / SUPERVGraph_Graph.h
1 //  SALOME SUPERVGraph : build Supervisor viewer into desktop
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SUPERVGraph_Graph.h
25 //  Author : Francis KLOSS
26 //  Module : SALOME
27
28 #ifndef SUPERVGraph_Graph_HXX
29 #define SUPERVGraph_Graph_HXX
30
31 #include "QAD.h"
32 #include "QAD_Popup.h"
33
34 #include <qscrollview.h>
35 #include <qpopupmenu.h>
36
37 class QAD_EXPORT SUPERVGraph_Graph: public QScrollView, public QAD_PopupClientServer
38 {
39   Q_OBJECT
40
41 public:
42   SUPERVGraph_Graph(QWidget* parent);
43   ~SUPERVGraph_Graph();
44
45   /* popup management */
46   void onCreatePopup();
47
48   void sync();
49   void contentsMousePressEvent(QMouseEvent* e);
50   void contentsMouseReleaseEvent(QMouseEvent* e);
51   void contentsMouseMoveEvent(QMouseEvent* e);
52   
53   QPoint getPoint();
54   
55 public slots:
56   void Draw(int x, int y);
57   
58 private slots:
59   void addPoint();
60   void deleteLink();
61   void showInformation();
62   void changeInformation();
63
64 protected slots:
65   void onChangeBackgroundColor();
66
67 protected:
68   bool eventFilter(QObject* object, QEvent* event);
69   
70 private:
71 //    SUPERVGraph_Point* findPoint(int x, int y);
72   float distance(int xp, int yp, int xl, int yl, int xn, int yn);
73   
74 //    SUPERVGraph_Main* main;
75   QPoint          where;
76   QPopupMenu*     popup;
77   int             pci;
78   int             pan;
79   int             pap;
80   int             pdl;
81   int             pif;
82 };
83
84 #endif