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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/* This file is part of the KDE project
Copyright 2007 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
Copyright 2003 Philipp Müller <philipp.mueller@gmx.de>
Copyright 1998, 1999 Torben Weis <weis@kde.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 CALLIGRA_SHEETS_HEADER_FOOTER
#define CALLIGRA_SHEETS_HEADER_FOOTER
#include <KoPageLayout.h>
#include <QString>
#include "sheets_odf_export.h"
namespace Calligra
{
namespace Sheets
{
class Sheet;
class CALLIGRA_SHEETS_ODF_EXPORT HeaderFooter
{
public:
explicit HeaderFooter(Sheet* sheet);
~HeaderFooter();
QString headLeft(int _p, const QString &_t)const {
if (m_headLeft.isNull()) return "";
return completeHeading(m_headLeft, _p, _t);
}
QString headMid(int _p, const QString &_t)const {
if (m_headMid.isNull()) return "";
return completeHeading(m_headMid, _p, _t);
}
QString headRight(int _p, const QString &_t)const {
if (m_headRight.isNull()) return "";
return completeHeading(m_headRight, _p, _t);
}
QString footLeft(int _p, const QString &_t)const {
if (m_footLeft.isNull()) return "";
return completeHeading(m_footLeft, _p, _t);
}
QString footMid(int _p, const QString &_t)const {
if (m_footMid.isNull()) return "";
return completeHeading(m_footMid, _p, _t);
}
QString footRight(int _p, const QString &_t)const {
if (m_footRight.isNull()) return "";
return completeHeading(m_footRight, _p, _t);
}
QString headLeft()const {
if (m_headLeft.isNull()) return "";
return m_headLeft;
}
QString headMid()const {
if (m_headMid.isNull()) return "";
return m_headMid;
}
QString headRight()const {
if (m_headRight.isNull()) return "";
return m_headRight;
}
QString footLeft()const {
if (m_footLeft.isNull()) return "";
return m_footLeft;
}
QString footMid()const {
if (m_footMid.isNull()) return "";
return m_footMid;
}
QString footRight()const {
if (m_footRight.isNull()) return "";
return m_footRight;
}
/**
* Replaces in _text all _search text parts by _replace text parts.
* Included is a test to not change if _search == _replace.
* The arguments should not include neither the beginning "<" nor the leading ">", this is already
* included internally.
*/
void replaceHeadFootLineMacro(QString &_text, const QString &_search, const QString &_replace) const;
/**
* Replaces in _text all page macros by the i18n-version of the macros
*/
QString localizeHeadFootLine(const QString &_text) const;
/**
* Replaces in _text all i18n-versions of the page macros by the internal version of the macros
*/
QString delocalizeHeadFootLine(const QString &_text) const;
/**
* Sets the head and foot line of the print out
*/
void setHeadFootLine(const QString &_headl, const QString &_headm, const QString &_headr,
const QString &_footl, const QString &_footm, const QString &_footr);
private:
/**
* Replaces macros like <name>, <file>, <date> etc. in the string and
* returns the modified one.
*
* @param _page is the page number for which the heading is produced.
* @param _Sheet is the name of the Sheet for which we generate the headings.
*/
QString completeHeading(const QString &_data, int _page, const QString &_sheet) const ;
Sheet *m_pSheet;
/**
* Header string. The string may contains makros. That means
* it has to be processed before printing.
*/
QString m_headLeft;
/**
* Header string. The string may contains makros. That means
* it has to be processed before printing.
*/
QString m_headRight;
/**
* Header string. The string may contains makros. That means
* it has to be processed before printing.
*/
QString m_headMid;
/**
* Footer string. The string may contains makros. That means
* it has to be processed before printing.
*/
QString m_footLeft;
/**
* Footer string. The string may contains makros. That means
* it has to be processed before printing.
*/
QString m_footRight;
/**
* Footer string. The string may contains makros. That means
* it has to be processed before printing.
*/
QString m_footMid;
};
} // namespace Sheets
} // namespace Calligra
#endif // CALLIGRA_SHEETS_HEADER_FOOTER
|