SVN_SILENT exclude more private stuff from the apidox

svn path=/trunk/KDE/kdegraphics/okular/; revision=707467
remotes/origin/KDE/4.0
Pino Toscano 19 years ago
parent f764604bb6
commit 1d40b13d2b
  1. 2
      core/action.h
  2. 4
      core/annotations.h
  3. 2
      core/document.h
  4. 2
      core/fontinfo.h
  5. 4
      core/form.h
  6. 10
      core/generator.h
  7. 2
      core/page.h
  8. 2
      core/pagesize.h
  9. 2
      core/textdocumentgenerator.h

@ -68,9 +68,11 @@ class OKULAR_EXPORT Action
virtual QString actionTip() const;
protected:
/// @cond PRIVATE
Action( ActionPrivate &dd );
Q_DECLARE_PRIVATE( Action )
ActionPrivate *d_ptr;
/// @endcond
private:
Q_DISABLE_COPY( Action )

@ -82,10 +82,12 @@ class OKULAR_EXPORT AnnotationUtils
*/
class OKULAR_EXPORT Annotation
{
/// @cond PRIVATE
friend class AnnotationObjectRect;
friend class Document;
friend class Page;
friend class PagePrivate;
/// @endcond
public:
/**
@ -574,10 +576,12 @@ class OKULAR_EXPORT Annotation
virtual void store( QDomNode & node, QDomDocument & document ) const;
protected:
/// @cond PRIVATE
Annotation( AnnotationPrivate &dd );
Annotation( AnnotationPrivate &dd, const QDomNode &description );
Q_DECLARE_PRIVATE( Annotation )
AnnotationPrivate *d_ptr;
/// @endcond
private:
Q_DISABLE_COPY( Annotation )

@ -606,7 +606,9 @@ class OKULAR_EXPORT Document : public QObject
void searchFinished( int id, Okular::Document::SearchStatus endStatus );
private:
/// @cond PRIVATE
friend class DocumentPrivate;
/// @endcond
DocumentPrivate *const d;
Q_DISABLE_COPY( Document )

@ -115,7 +115,9 @@ class OKULAR_EXPORT FontInfo
bool operator!=( const FontInfo &fi ) const;
private:
/// @cond PRIVATE
friend class FontInfoPrivate;
/// @endcond
QSharedDataPointer<FontInfoPrivate> d;
};

@ -33,8 +33,10 @@ class FormFieldChoicePrivate;
*/
class OKULAR_EXPORT FormField
{
/// @cond PRIVATE
friend class Page;
friend class PagePrivate;
/// @endcond
public:
/**
@ -88,9 +90,11 @@ class OKULAR_EXPORT FormField
virtual bool isVisible() const;
protected:
/// @cond PRIVATE
FormField( FormFieldPrivate &dd );
Q_DECLARE_PRIVATE( FormField )
FormFieldPrivate *d_ptr;
/// @endcond
private:
Q_DISABLE_COPY( FormField )

@ -152,7 +152,9 @@ class OKULAR_EXPORT ExportFormat
bool operator!=( const ExportFormat &other ) const;
private:
/// @cond PRIVATE
friend class ExportFormatPrivate;
/// @endcond
QSharedDataPointer<ExportFormatPrivate> d;
};
@ -174,8 +176,10 @@ class OKULAR_EXPORT ExportFormat
*/
class OKULAR_EXPORT Generator : public QObject
{
/// @cond PRIVATE
friend class PixmapGenerationThread;
friend class TextPageGenerationThread;
/// @endcond
Q_OBJECT
@ -441,10 +445,14 @@ setAboutData( about );
void setAboutData( KAboutData* data );
private:
/// @cond PRIVATE
friend class GeneratorPrivate;
/// @endcond PRIVATE
GeneratorPrivate* const d;
/// @cond PRIVATE
friend class Document;
/// @endcond PRIVATE
Q_PRIVATE_SLOT( d, void pixmapGenerationFinished() )
Q_PRIVATE_SLOT( d, void textpageGenerationFinished() )
@ -521,6 +529,7 @@ class OKULAR_EXPORT PixmapRequest
void swap();
protected:
/// @cond PRIVATE
/**
* Internal usage.
*/
@ -535,6 +544,7 @@ class OKULAR_EXPORT PixmapRequest
* Internal usage.
*/
void setPage( Page *page );
/// @endcond
private:
Q_DISABLE_COPY( PixmapRequest )

@ -305,6 +305,7 @@ class OKULAR_EXPORT Page
private:
PagePrivate* const d;
/// @cond PRIVATE
friend class PagePrivate;
friend class Document;
friend class DocumentPrivate;
@ -314,6 +315,7 @@ class OKULAR_EXPORT Page
* member variables directly.
*/
friend class ::PagePainter;
/// @endcond
const QPixmap * _o_nearestPixmap( int, int, int ) const;

@ -72,7 +72,9 @@ class OKULAR_EXPORT PageSize
bool operator!=( const PageSize &pageSize ) const;
private:
/// @cond PRIVATE
friend class PageSizePrivate;
/// @endcond
QSharedDataPointer<PageSizePrivate> d;
};

@ -105,7 +105,9 @@ class OKULAR_EXPORT TextDocumentConverter : public QObject
class OKULAR_EXPORT TextDocumentGenerator : public Generator
{
/// @cond PRIVATE
friend class TextDocumentConverter;
/// @endcond
Q_OBJECT

Loading…
Cancel
Save