// // This file is part of the Marble Desktop Globe. // // This program is free software licensed under the GNU LGPL. You can // find a copy of this license in LICENSE.txt in the top directory of // the source code. // // Copyright 2009 Andrew Manson // #ifndef AREAANNOTATION_H #define AREAANNOTATION_H #include "TmpGraphicsItem.h" #include "GeoDataPolygon.h" namespace Marble { class AreaAnnotation : public TmpGraphicsItem { public: AreaAnnotation(); void setGeometry( GeoDataPolygon g); virtual void paint( GeoPainter *painter, ViewportParams *viewport, const QString& renderPos, GeoSceneLayer * layer = 0 ); //FIXME Waiting to be removed virtual QRect screenBounding(){return QRect();} private: GeoDataPolygon m_geo; }; } #endif // AREAANNOTATION_H