Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #ifndef GLVIEWER_BASEDRAWERS_H
00028 #define GLVIEWER_BASEDRAWERS_H
00029
00030 class QColor;
00031
00032 #include "GLViewer.h"
00033 #include "GLViewer_Drawer.h"
00034
00035 class GLViewer_AspectLine;
00036
00037 #ifdef WIN32
00038 #pragma warning( disable:4251 )
00039 #endif
00040
00046 class GLVIEWER_API GLViewer_MarkerDrawer : public GLViewer_Drawer
00047 {
00048 public:
00049 GLViewer_MarkerDrawer();
00050 ~GLViewer_MarkerDrawer();
00051
00053 virtual void create( float, float, bool );
00054
00055 private:
00057 void drawMarker( float& x, float& y, float& radius, QColor& color, GLViewer_AspectLine* aspect );
00058 };
00059
00065 class GLVIEWER_API GLViewer_PolylineDrawer : public GLViewer_Drawer
00066 {
00067 public:
00068 GLViewer_PolylineDrawer();
00069 ~GLViewer_PolylineDrawer();
00071 virtual void create( float, float, bool );
00072 };
00073
00079 class GLVIEWER_API GLViewer_TextDrawer: public GLViewer_Drawer
00080 {
00081
00082 public:
00083 GLViewer_TextDrawer();
00084 ~GLViewer_TextDrawer();
00085
00087 virtual void create( float, float, bool );
00089 void updateObjects();
00090 };
00091
00092 #ifdef WIN32
00093 #pragma warning ( default:4251 )
00094 #endif
00095
00096 #endif