STOFFPageSpan.hxx
Go to the documentation of this file.
1 /* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */
2 
3 /* libstaroffice
4 * Version: MPL 2.0 / LGPLv2+
5 *
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 2.0 (the "License"); you may not use this file except in compliance with
8 * the License or as specified alternatively below. You may obtain a copy of
9 * the License at http://www.mozilla.org/MPL/
10 *
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
14 * License.
15 *
16 * Major Contributor(s):
17 * Copyright (C) 2002 William Lachance (wrlach@gmail.com)
18 * Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net)
19 * Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch)
20 * Copyright (C) 2006, 2007 Andrew Ziem
21 * Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr)
22 *
23 *
24 * All Rights Reserved.
25 *
26 * For minor contributions see the git repository.
27 *
28 * Alternatively, the contents of this file may be used under the terms of
29 * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
30 * in which case the provisions of the LGPLv2+ are applicable
31 * instead of those above.
32 */
33 
34 #ifndef STOFFPAGESPAN_H
35 #define STOFFPAGESPAN_H
36 
37 #include <map>
38 #include <vector>
39 
41 
42 #include "STOFFFont.hxx"
43 #include "STOFFSection.hxx"
44 
45 class STOFFListener;
46 
49 {
50 public:
52  enum Type { R_Left=0, R_Center, R_Right, R_All };
55  {
56  }
59  {
60  }
62  bool operator==(STOFFHeaderFooter const &headerFooter) const;
64  bool operator!=(STOFFHeaderFooter const &headerFooter) const
65  {
66  return !operator==(headerFooter);
67  }
69  void send(STOFFListener *listener, bool header) const;
72 };
73 
76 {
77 public:
79  enum ZoneType { Page=0, Header, Footer };
80 public:
82  STOFFPageSpan();
85 
87  void addHeaderFooter(bool header, std::string const &occurrence, STOFFHeaderFooter const &hf);
89  bool operator==(std::shared_ptr<STOFFPageSpan> const &pageSpan) const;
91  bool operator!=(std::shared_ptr<STOFFPageSpan> const &pageSpan) const
92  {
93  return !operator==(pageSpan);
94  }
95 
96  // interface with STOFFListener
97 
99  void getPageProperty(librevenge::RVNGPropertyList &pList) const;
101  void sendHeaderFooters(STOFFListener *listener) const;
102 
106  librevenge::RVNGPropertyList m_propertiesList[3];
108  std::map<std::string, STOFFHeaderFooter> m_occurrenceHFMap[2];
113 };
114 
115 #endif
116 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
int m_pageSpan
the number of page
Definition: STOFFPageSpan.hxx:104
void send(STOFFListener *listener, bool header) const
send to header to the listener
Definition: STOFFPageSpan.cxx:57
STOFFSection m_section
the main section
Definition: STOFFPageSpan.hxx:110
bool operator!=(STOFFHeaderFooter const &headerFooter) const
operator!=
Definition: STOFFPageSpan.hxx:64
std::map< std::string, STOFFHeaderFooter > m_occurrenceHFMap[2]
the map occurrence to header/footer document
Definition: STOFFPageSpan.hxx:108
Definition: STOFFPageSpan.hxx:52
bool operator!=(std::shared_ptr< STOFFPageSpan > const &pageSpan) const
operator!=
Definition: STOFFPageSpan.hxx:91
Definition: STOFFPageSpan.hxx:79
a class which stores the header/footer
Definition: STOFFPageSpan.hxx:48
void addHeaderFooter(bool header, std::string const &occurrence, STOFFHeaderFooter const &hf)
add a header on some page: occurrence must be odd|right, even|left, first, last or all ...
Definition: STOFFPageSpan.cxx:89
~STOFFPageSpan()
destructor
Definition: STOFFPageSpan.cxx:85
STOFFPageSpan()
constructor
Definition: STOFFPageSpan.cxx:75
Definition: STOFFPageSpan.hxx:79
void getPageProperty(librevenge::RVNGPropertyList &pList) const
add the page properties in pList
Definition: STOFFPageSpan.cxx:120
Definition: STOFFPageSpan.hxx:79
Definition: STOFFPageSpan.hxx:52
ZoneType
the zone type
Definition: STOFFPageSpan.hxx:79
librevenge::RVNGPropertyList m_propertiesList[3]
the document, header and footer property list
Definition: STOFFPageSpan.hxx:106
std::shared_ptr< STOFFSubDocument > STOFFSubDocumentPtr
a smart pointer of STOFFSubDocument
Definition: libstaroffice_internal.hxx:495
bool operator==(std::shared_ptr< STOFFPageSpan > const &pageSpan) const
operator==
Definition: STOFFPageSpan.cxx:134
void sendHeaderFooters(STOFFListener *listener) const
send the page&#39;s headers/footers if some exists
Definition: STOFFPageSpan.cxx:94
a class which stores section properties
Definition: STOFFSection.hxx:45
Type
the different type
Definition: STOFFPageSpan.hxx:52
Definition: STOFFPageSpan.hxx:52
int m_pageNumber
the page number ( or -1)
Definition: STOFFPageSpan.hxx:112
STOFFHeaderFooter()
constructor
Definition: STOFFPageSpan.hxx:54
STOFFSubDocumentPtr m_subDocument[4]
the document data: left, center, right, all
Definition: STOFFPageSpan.hxx:71
A class which defines the page properties.
Definition: STOFFPageSpan.hxx:75
~STOFFHeaderFooter()
destructor
Definition: STOFFPageSpan.hxx:58
This class contains a virtual interface to all listener.
Definition: STOFFListener.hxx:50
bool operator==(STOFFHeaderFooter const &headerFooter) const
operator==
Definition: STOFFPageSpan.cxx:44
Definition: STOFFPageSpan.hxx:52

Generated on Sat May 29 2021 22:54:03 for libstaroffice by doxygen 1.8.14