StarItem.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/*
35 * StarPool to store some StarOffice items
36 *
37 */
38#ifndef STAR_ITEM_HXX
39# define STAR_ITEM_HXX
40
41#include <map>
42#include <vector>
43
45
46#include "STOFFDebug.hxx"
47
48class StarAttribute;
49
54{
55public:
57 explicit StarItem(int which)
58 : m_attribute()
59 , m_which(which)
60 , m_surrogateId(0)
61 , m_localId(false)
62 {
63 }
65 StarItem(std::shared_ptr<StarAttribute> attribute, int which)
66 : m_attribute(attribute)
67 , m_which(which)
68 , m_surrogateId(0)
69 , m_localId(false)
70 {
71 }
73 std::shared_ptr<StarAttribute> m_attribute;
80private:
83};
84
88{
89public:
92 : m_style("")
93 , m_family(0)
95 {
96 }
98 bool empty() const
99 {
100 return m_whichToItemMap.empty();
101 }
103 bool add(std::shared_ptr<StarItem> item);
105 std::string printChild() const;
107 librevenge::RVNGString m_style;
111 std::map<int, std::shared_ptr<StarItem> > m_whichToItemMap;
112};
113
116{
117public:
121 };
124 : m_family(0)
125 , m_mask(0)
126 , m_itemSet()
127 , m_helpId(0)
128 , m_outlineLevel(-1)
129 {
130 }
132 friend std::ostream &operator<<(std::ostream &o, StarItemStyle const &style);
134 librevenge::RVNGString m_names[4];
142 unsigned m_helpId;
145};
146
147#endif
148// vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:
virtual class used to store the different attribute
Definition: StarAttribute.hxx:63
class to store a list of item
Definition: StarItem.hxx:88
bool empty() const
return true if the set is empty
Definition: StarItem.hxx:98
StarItemSet()
constructor
Definition: StarItem.hxx:91
std::map< int, std::shared_ptr< StarItem > > m_whichToItemMap
the list of item
Definition: StarItem.hxx:111
std::string printChild() const
debug function to print the child field
Definition: StarItem.cxx:52
int m_family
the family
Definition: StarItem.hxx:109
bool add(std::shared_ptr< StarItem > item)
try to add a item
Definition: StarItem.cxx:42
librevenge::RVNGString m_style
item set name
Definition: StarItem.hxx:107
brief class used to stored the style
Definition: StarItem.hxx:116
int m_outlineLevel
the outline level
Definition: StarItem.hxx:144
StarItemStyle()
constructor
Definition: StarItem.hxx:123
int m_family
the family
Definition: StarItem.hxx:136
FamilyStyle
the different family style
Definition: StarItem.hxx:119
@ F_Pseudo
Definition: StarItem.hxx:120
@ F_Paragraph
Definition: StarItem.hxx:120
@ F_Page
Definition: StarItem.hxx:120
@ F_Frame
Definition: StarItem.hxx:120
@ F_Char
Definition: StarItem.hxx:120
@ F_ALL
Definition: StarItem.hxx:120
friend std::ostream & operator<<(std::ostream &o, StarItemStyle const &style)
operator<<
Definition: StarItem.cxx:69
StarItemSet m_itemSet
the item list
Definition: StarItem.hxx:140
librevenge::RVNGString m_names[4]
the name, the parent name, the follow name, the help names
Definition: StarItem.hxx:134
unsigned m_helpId
the help id
Definition: StarItem.hxx:142
int m_mask
the mask
Definition: StarItem.hxx:138
class to store an item: ie.
Definition: StarItem.hxx:54
StarItem & operator=(StarItem const &)
StarItem(StarItem const &)
int m_which
the which id
Definition: StarItem.hxx:75
StarItem(int which)
constructor
Definition: StarItem.hxx:57
StarItem(std::shared_ptr< StarAttribute > attribute, int which)
constructor from attribute
Definition: StarItem.hxx:65
bool m_localId
true if which is local
Definition: StarItem.hxx:79
int m_surrogateId
the surrogate id
Definition: StarItem.hxx:77
std::shared_ptr< StarAttribute > m_attribute
the attribute if loaded
Definition: StarItem.hxx:73

Generated on Fri Apr 14 2023 04:41:10 for libstaroffice by doxygen 1.9.6