okular/core/textpage.h
André Wöbbeking 77f96ebfe2 added missing OKULAR_EXPORT
svn path=/trunk/playground/graphics/okular/; revision=616457
2006-12-25 15:10:39 +00:00

170 lines
5.5 KiB
C++

/***************************************************************************
* Copyright (C) 2005 by Piotr Szymanski <niedakh@gmail.com> *
* *
* 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_TETXTPAGE_H_
#define _OKULAR_TETXTPAGE_H_
#include "area.h"
namespace Okular {
class TextSelection;
/*! @enum SearchDirection
* The enum holding the direction of searching.
*! @enum SearchDirection FromTop
* Searching from top of the page, next result is to be found,
* there was no earlier search result.
*! @enum SearchDirection FromBottom
* Searching from bottom of the page, next result is to be found,
* there was no earlier search result.
*! @enum SearchDirection NextResult
* Searching for the next result on the page, earlier result should be
* located so we search from the last result not from the beginning of the
* page.
*! @enum SearchDirection PreviousResult
* Searching for the previous result on the page, earlier result should be
* located so we search from the last result not from the beginning of the
* page.
*/
typedef enum SearchDirection{ FromTop, FromBottom, NextResult, PreviousResult };
/*! @class TextEntity
* @short Abstract textentity of Okular
* @par The context
* A document can provide different forms of information about textual representation
* of its contents. It can include information about positions of every character on the
* page, this is the best possibility.
*
* But also it can provide information only about positions of every word on the page (not the character).
* Furthermore it can provide information only about the position of the whole page's text on the page.
*
* Also some document types have glyphes - sets of characters rendered as one, so in search they should
* appear as a text but are only one character when drawn on screen. We need to allow this.
*/
class OKULAR_EXPORT TextEntity
{
public:
typedef QList<TextEntity*> List;
/**
* Creates a new text entity with the given @p text and the
* given @p area.
*/
TextEntity( const QString &text, NormalizedRect *area );
/**
* Destroys the text entity.
*/
~TextEntity();
/**
* Returns the text of the text entity.
*/
QString text() const;
/**
* Returns the bounding area of the text entity.
*/
NormalizedRect* area() const;
/**
* Returns the transformed area of the text entity.
*/
NormalizedRect* transformedArea() const;
/**
* Transforms the area coordinates of the text entity.
*/
void transform( const QMatrix &matrix );
private:
QString m_text;
NormalizedRect* m_area;
NormalizedRect* m_transformed_area;
class Private;
Private *d;
Q_DISABLE_COPY( TextEntity )
};
/**
* The TextPage class represents the text of a page by
* providing @see TextEntity items for every word/character of
* the page.
*/
class OKULAR_EXPORT TextPage
{
public:
/**
* Creates a new text page.
*/
TextPage();
/**
* Creates a new text page with the given @p words.
*/
TextPage( const TextEntity::List &words );
/**
* Destroys the text page.
*/
~TextPage();
/**
* Appends the given @p text with the given @p area as new
* @see TextItem to the page.
*/
void append( const QString &text, NormalizedRect *area );
/**
* Returns the bounding rect of the text which matches the following criteria
* or 0 if the search is not successful.
*
* @param id An unique id for this search.
* @param text The search text.
* @param direction The direction of the search (@see SearchDirection)
* @param caseSensitivity If Qt::CaseSensitive, the search is case sensitive; otherwise
* the search is case insensitive.
* @param lastRect If 0 the search starts at the beginning of the page, otherwise
* right/below the coordinates of the the given rect.
*/
RegularAreaRect* findText( int id, const QString &text, SearchDirection & direction,
Qt::CaseSensitivity caseSensitivity, const RegularAreaRect *lastRect );
/**
* Returns:
* - a null string if @p rect is a valid pointer to a null area
* - the whole page text if @p rect is a null pointer
* - the text which is included by rectangular area @p rect otherwise
*/
QString text( const RegularAreaRect *rect = 0 ) const;
/**
* Returns the rectangular area of the given @p selection.
*/
RegularAreaRect *textArea( TextSelection *selection ) const;
/**
* Transforms the area coordinates of the text entities.
*/
void transform( const QMatrix &matrix );
private:
class Private;
Private* const d;
Q_DISABLE_COPY( TextPage )
};
}
#endif