mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 11:22:55 +00:00
38 lines
1.5 KiB
C++
38 lines
1.5 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2012 by Fabio D'Urso <fabiodurso@hotmail.it> *
|
|
* *
|
|
* 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 <poppler-annotation.h>
|
|
#include <poppler-qt4.h>
|
|
|
|
#include <qmutex.h>
|
|
|
|
#include "core/annotations.h"
|
|
#include "config-okular-poppler.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
|