00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef QWT_CLIPPER_H
00011 #define QWT_CLIPPER_H
00012
00013 #include "qwt_global.h"
00014 #include "qwt_array.h"
00015 #include "qwt_polygon.h"
00016 #include "qwt_double_rect.h"
00017 #include "qwt_double_interval.h"
00018
00019 class QRect;
00020
00025 class QWT_EXPORT QwtClipper
00026 {
00027 public:
00028 static QwtPolygon clipPolygon(const QRect &, const QwtPolygon &);
00029 static QwtPolygonF clipPolygonF(const QwtDoubleRect &, const QwtPolygonF &);
00030
00031 #if QT_VERSION >= 0x040000
00032 static QwtArray<QwtDoubleInterval> clipCircle(
00033 const QwtDoubleRect &, const QwtDoublePoint &, double radius);
00034 #endif
00035 };
00036
00037 #endif