Salome HOME
ce98aa8679a561b7264b25536058fdd8ac0ce232
[modules/gui.git] / src / GLViewer / GLViewer_BaseDrawers.h
1 //  Copyright (C) 2005 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.
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
18 //
19 //  Author : OPEN CASCADE
20 //
21
22 // File:      GLViewer_BaseDrawers.h
23 // Created:   November, 2004
24
25 #ifndef GLVIEWER_BASEDRAWERS_H
26 #define GLVIEWER_BASEDRAWERS_H
27
28 #include <qcolor.h>
29 #include <qobject.h>
30 #include <qfile.h>
31 #include <qfont.h>
32 #include <qgl.h>
33
34 #include "GLViewer.h"
35 #include "GLViewer_Drawer.h"
36
37 class GLViewer_AspectLine;
38
39 #ifdef WNT
40 #pragma warning( disable:4251 )
41 #endif
42
43 /*! Class GLViewer_MarkerDrawer
44 *  Drawer for GLViewer_MarkerSet
45  */
46
47 class GLVIEWER_API GLViewer_MarkerDrawer : public GLViewer_Drawer  
48 {
49 public:
50   GLViewer_MarkerDrawer();
51   ~GLViewer_MarkerDrawer();
52   
53   //! Redefined method
54   virtual void       create( float, float, bool );
55   
56 private:
57   //! Draws marker in point (x,y) of \param radius with \param color and \param aspect
58   void               drawMarker( float& x, float& y, float& radius, QColor& color, GLViewer_AspectLine* aspect );
59 };
60
61 /*! Class  GLViewer_PolylineDrawer
62 * Drawer for GLViewer_Polyline
63 */
64
65 class GLVIEWER_API GLViewer_PolylineDrawer : public GLViewer_Drawer  
66 {
67 public:
68   GLViewer_PolylineDrawer();
69   ~GLViewer_PolylineDrawer();
70   //! Redefined method
71   virtual void       create( float, float, bool );    
72 };
73
74 /* Class GLViewer_TextDrawer
75 * Drawer for GLViewer_Text
76 */
77
78 class GLVIEWER_API GLViewer_TextDrawer: public GLViewer_Drawer
79 {
80   
81 public:
82   GLViewer_TextDrawer();
83   ~GLViewer_TextDrawer();
84   
85   //! Redefined method
86   virtual void              create( float, float, bool );
87   //! Updates objects after updating font
88   void                      updateObjects();
89 };
90
91 #ifdef WNT
92 #pragma warning ( default:4251 )
93 #endif
94
95 #endif