Added @since markers in generator.h

remotes/origin/KDE/4.10
Fabio D'Urso 14 years ago
parent de565cdd2a
commit 20ecee1b36
  1. 10
      core/generator.h

@ -251,6 +251,8 @@ class OKULAR_EXPORT Generator : public QObject
/** /**
* Returns whether the generator can render tiles. * Returns whether the generator can render tiles.
*
* @since 0.16 (KDE 4.10)
*/ */
virtual bool supportsTiles() const; virtual bool supportsTiles() const;
@ -587,22 +589,30 @@ class OKULAR_EXPORT PixmapRequest
/** /**
* Sets whether the generator should render only the given normalized * Sets whether the generator should render only the given normalized
* rect or the entire page * rect or the entire page
*
* @since 0.16 (KDE 4.10)
*/ */
void setTile( bool tile ); void setTile( bool tile );
/** /**
* Returns whether the generator should render just the region given by * Returns whether the generator should render just the region given by
* normalizedRect() or the entire page. * normalizedRect() or the entire page.
*
* @since 0.16 (KDE 4.10)
*/ */
bool isTile() const; bool isTile() const;
/** /**
* Sets the region of the page to request. * Sets the region of the page to request.
*
* @since 0.16 (KDE 4.10)
*/ */
void setNormalizedRect( const NormalizedRect &rect ); void setNormalizedRect( const NormalizedRect &rect );
/** /**
* Returns the normalized region of the page to request. * Returns the normalized region of the page to request.
*
* @since 0.16 (KDE 4.10)
*/ */
const NormalizedRect normalizedRect() const; const NormalizedRect normalizedRect() const;

Loading…
Cancel
Save