/*************************************************************************** * Copyright (C) 2012 by Fabio D'Urso * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * ***************************************************************************/ #ifndef _OKULAR_GENERATOR_PDF_ANNOTS_H_ #define _OKULAR_GENERATOR_PDF_ANNOTS_H_ #include #include #include #include "core/annotations.h" extern Okular::Annotation* createAnnotationFromPopplerAnnotation( Poppler::Annotation *ann, bool * doDelete ); class PopplerAnnotationProxy : public Okular::AnnotationProxy { public: PopplerAnnotationProxy( Poppler::Document *doc, QMutex *userMutex ); ~PopplerAnnotationProxy(); bool supports( Capability capability ) const; void notifyAddition( Okular::Annotation *annotation, int page ); void notifyModification( const Okular::Annotation *annotation, int page, bool appearanceChanged ); void notifyRemoval( Okular::Annotation *annotation, int page ); private: Poppler::Document *ppl_doc; QMutex *mutex; }; #endif