Salome HOME
updated copyright message
[modules/gui.git] / src / Qtx / QtxRubberBand.h
1 // Copyright (C) 2007-2023  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // File:      QtxRubberBand.h
21 // Author:    Alexander A. BORODIN
22 //
23 #ifndef QTXRUBBERBAND_H
24 #define QTXRUBBERBAND_H
25
26 #include "Qtx.h"
27
28 #include <QWidget>
29
30 class QTX_EXPORT QtxAbstractRubberBand : public QWidget
31 {
32   Q_OBJECT
33
34 protected:
35   QtxAbstractRubberBand( QWidget* );
36
37 public:
38   virtual ~QtxAbstractRubberBand();
39
40   virtual void    clearGeometry();
41
42   bool            isClosed();
43
44 protected:
45   virtual void    paintEvent( QPaintEvent* );
46   virtual void    showEvent( QShowEvent* );
47   virtual void    moveEvent( QMoveEvent* );
48   virtual void    resizeEvent( QResizeEvent* );
49
50   virtual bool    eventFilter( QObject*, QEvent* );
51
52   virtual void    updateMask();
53
54 protected:
55   QPolygon        myPoints;
56
57   bool            myIsClosed;
58 };
59
60 class QTX_EXPORT QtxRectRubberBand: public QtxAbstractRubberBand
61 {
62   Q_OBJECT
63
64 public:
65   QtxRectRubberBand( QWidget* );
66   virtual ~QtxRectRubberBand();
67
68   void            initGeometry( const QRect& );
69   void            setStartPoint( const QPoint& );
70   void            setEndPoint( const QPoint& );
71         
72   virtual void    clearGeometry();
73 };
74
75 class QTX_EXPORT QtxPolyRubberBand: public QtxAbstractRubberBand
76 {
77   Q_OBJECT
78
79 public:
80   QtxPolyRubberBand( QWidget* );
81   virtual ~QtxPolyRubberBand();
82
83   void            initGeometry( const QPolygon& );
84   void            initGeometry( const QPoint& );
85
86   void            addNode( const QPoint& );
87   void            replaceLastNode( const QPoint& );
88   void            removeLastNode();
89
90   void            setClosed( bool );
91 };
92
93
94 #define CIRCLE_NB_POINTS 30
95 #define MIN_RADIUS 5
96
97 class QTX_EXPORT QtxCircleRubberBand : public QtxAbstractRubberBand
98 {
99   Q_OBJECT
100
101 public:
102   QtxCircleRubberBand(QWidget*);
103   virtual ~QtxCircleRubberBand();
104
105   void            initGeometry(const QPoint&);
106
107   void            setRadius(const QPoint&);
108
109   bool            isCenterDefined() const;
110
111   virtual void    clearGeometry();
112
113   void getPoligon(QPolygon* thePoints) const;
114
115   int radius() const;
116
117 protected:
118   virtual void    updateMask();
119   bool            myHasCenter;
120 };
121
122 #endif //QTXRUBBERBAND_H