Salome HOME
ed34a8ba0785b6e36135f29d1de04e928bf90a96
[modules/gui.git] / src / Plot2d / Plot2d.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : Plot2d.h
23 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
24 //
25 #ifndef PLOT2D_H
26 #define PLOT2D_H
27
28 #ifdef WIN32
29 #  ifdef PLOT2D_EXPORTS
30 #    define PLOT2D_EXPORT __declspec(dllexport)
31 #  else
32 #    define PLOT2D_EXPORT __declspec(dllimport)
33 #  endif
34 #else
35 #  define PLOT2D_EXPORT
36 #endif
37
38 #include <qwt_symbol.h>
39 #include <Qt>
40
41 class QPainter;
42
43 namespace Plot2d
44 {
45   typedef enum { None, 
46                  Circle,  
47                  Rectangle,
48                  Diamond,
49                  DTriangle,
50                  UTriangle,
51                  LTriangle,
52                  RTriangle,
53                  Cross,
54                  XCross
55   } MarkerType;
56
57   typedef enum {
58     NoPen,
59     Solid, 
60     Dash, 
61     Dot, 
62     DashDot, 
63     DashDotDot
64   } LineType;
65
66   QwtSymbol::Style         plot2qwtMarker( MarkerType );
67   MarkerType qwt2plotMarker( QwtSymbol::Style );
68
69   Qt::PenStyle             plot2qwtLine( LineType );
70   LineType                 qwt2plotLine( Qt::PenStyle );
71
72   void                     drawLine( QPainter*, const QPoint&, const QPoint&, 
73                                      Qt::PenStyle = Qt::SolidLine, 
74                                      const QColor& = Qt::black, int = 0 );
75   void                     drawLine( QPainter*, const QPoint&, const QPoint&, 
76                                      LineType = Solid, 
77                                      const QColor& = Qt::black, int = 0 );
78   void                     drawLine( QPainter*, int, int, int, int,
79                                      Qt::PenStyle = Qt::SolidLine, 
80                                      const QColor& = Qt::black, int = 0 );
81   void                     drawLine( QPainter*, int, int, int, int,
82                                      LineType = Solid, 
83                                      const QColor& = Qt::black, int = 0 );
84
85   void                     drawMarker( QPainter*, const QPoint&, const QRect&,
86                                        QwtSymbol::Style = QwtSymbol::Ellipse,
87                                        const QColor& = Qt::black );
88   void                     drawMarker( QPainter*, const QPoint&, const QRect&,
89                                        MarkerType = Circle,
90                                        const QColor& = Qt::black );
91   void                     drawMarker( QPainter*, int, int, int, int,
92                                        QwtSymbol::Style = QwtSymbol::Ellipse,
93                                        const QColor& = Qt::black );
94   void                     drawMarker( QPainter*, int, int, int, int,
95                                        MarkerType = Circle,
96                                        const QColor& = Qt::black );
97 }
98
99 #if defined WIN32
100 #  pragma warning ( disable: 4251 )
101 #endif
102
103 #endif // PLOT2D_H