1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
/* This file is part of the Calligra project
* Copyright (C) 2008 Sebastian Sauer <mail@dipe.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef KOTEXTPAGE_H
#define KOTEXTPAGE_H
#include "kotext_export.h"
#include <QRectF>
#include <QMetaType>
class QString;
/**
* Interface for a single OpenDocumentText page.
*
* The Words KWPageTextInfo class does implement this interface to provide
* application specific functionality for single pages.
* @see KoTextShapeData::setPage();
*/
class KOTEXT_EXPORT KoTextPage
{
public:
/// Constructor.
explicit KoTextPage();
/// Destructor.
virtual ~KoTextPage();
enum PageSelection {
PreviousPage = -1,
CurrentPage = 0,
NextPage = 1
};
/**
* Returns the unique number of this page for internal purposes. All pages
* are numbered consecutively starting by 1.
*
* This is used for example to anchor images to pages. The image then refers
* to the unique page-number.
*/
virtual int pageNumber() const = 0;
/**
* Returns the number of this page for display purposes.
*
* Example how the parameters are used within ODF to display the
* current page number on all pages except the first page;
* \code
* <text:page-number text:select-page="previous" text:page-adjust="1" />
* \endcode
*
* \param select Defines the offset of the page to select for the
* resulting page number. If such a page does not exist, then -1 will be
* returned before the adjustment will be taken into account. This
* implements the ODF text:select-page attribute.
* \param adjustment The value of the page number will be adjusted by this
* specified number and if there exist a page with the resulting value it's
* page number gets returned, otherwise -1 will be returned. This implements the
* ODF text:page-adjust attribute.
* \return the user visible page number, or -1 if the page referenced does not
* exist.
*/
virtual int visiblePageNumber(PageSelection select = CurrentPage, int adjustment = 0) const = 0;
/**
* Returns the name of the master-page that should be used for this page or a null
* QString if this page does not explicit define a master-page in which case the
* default master-page will be used.
*
* Per default a null QString is returned.
*/
virtual QString masterPageName() const;
/**
* Returns the rect of the page in document coords
*/
virtual QRectF rect() const = 0;
/**
* Returns the (text) content rect of the page in document coords
*/
virtual QRectF contentRect() const {return rect();}
};
Q_DECLARE_METATYPE(KoTextPage*)
#endif
|