ClarisWksStyleManager.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 /* libmwaw
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  * Class used to read main style by Claris Works parser
36  *
37  */
38 #ifndef CLARIS_WKS_STYLE_MANAGER
39 # define CLARIS_WKS_STYLE_MANAGER
40 
41 #include <iostream>
42 #include <string>
43 #include <vector>
44 
45 #include "libmwaw_internal.hxx"
46 
47 #include "MWAWCell.hxx"
48 #include "MWAWDebug.hxx"
49 #include "MWAWGraphicStyle.hxx"
50 #include "MWAWInputStream.hxx"
51 
52 class ClarisWksDocument;
53 
54 namespace ClarisWksStyleManagerInternal
55 {
56 struct State;
57 }
58 
61 {
62 public:
63  struct CellFormat;
64  struct KSEN;
65  struct Style;
66 public:
71 
73  bool readColorList(MWAWEntry const &entry);
75  bool readPatternList(long endPos=-1);
77  bool readGradientList(long endPos=-1);
79  bool readStyles(MWAWEntry const &entry);
81  bool updateGradient(int grad, MWAWGraphicStyle &style) const;
83  bool updateWallPaper(int wall, MWAWGraphicStyle &style) const;
84 
86  int getFontId(int localId) const;
88  bool getColor(int id, MWAWColor &col) const;
90  bool getPattern(int id, MWAWGraphicStyle::Pattern &pattern, float &percent) const;
92  bool getRulerName(int id, std::string &name) const;
93 
95  bool get(int styleId, Style &style) const;
97  bool get(int fontId, MWAWFont &font) const;
99  bool get(int formatId, CellFormat &format) const;
101  bool get(int ksenId, KSEN &ksen) const;
103  bool get(int graphId, MWAWGraphicStyle &graph) const;
104 
106  bool readFont(int id, int fontSize, MWAWFont &font);
107 
108 protected:
110  int version() const;
111 
113  bool readGenStyle(int id);
114 
116  bool readStylesDef(int N, int fSz);
118  bool readLookUp(int N, int fSz);
119 
120  /* read the STYL CELL sequence */
121  bool readCellStyles(int N, int fSz);
123  bool readFontNames(int N, int fSz);
125  bool readGraphStyles(int N, int fSz);
127  bool readKSEN(int N, int fSz);
129  bool readStyleNames(int N, int fSz);
131  bool readStyleFonts(int N, int fSz);
132 
133 protected:
139  shared_ptr<ClarisWksStyleManagerInternal::State> m_state;
140 
141 private:
144 
145 public:
147  struct CellFormat : public MWAWCell::Format {
150  MWAWCell::Format(format), m_hAlign(MWAWCell::HALIGN_DEFAULT), m_fileFormat(-1), m_borders(0), m_wrap(false), m_extra("")
151  {
152  }
154  friend std::ostream &operator<<(std::ostream &o, CellFormat const &form);
162  bool m_wrap;
164  std::string m_extra;
165  };
166 
168  struct KSEN {
171  {
172  }
174  friend std::ostream &operator<<(std::ostream &o, KSEN const &ksen);
176  int m_valign;
182  int m_lines;
184  std::string m_extra;
185  };
186 
188  struct Style {
191  {
192  }
193 
195  friend std::ostream &operator<<(std::ostream &o, Style const &style);
196 
198  int m_fontId;
206  int m_nameId;
208  int m_ksenId;
216  std::string m_extra;
217  };
218 };
219 
220 #endif
int m_graphicId
the graphic (checkme)
Definition: ClarisWksStyleManager.hxx:210
Format()
constructor
Definition: MWAWCell.hxx:62
ClarisWksStyleManager(ClarisWksDocument &document)
constructor
Definition: ClarisWksStyleManager.cxx:1561
bool m_wrap
true if the cell content is wrapped
Definition: ClarisWksStyleManager.hxx:162
bool readColorList(MWAWEntry const &entry)
reads a color map zone ( v4-v6)
Definition: ClarisWksStyleManager.cxx:1871
bool readFont(int id, int fontSize, MWAWFont &font)
try to read a named font
Definition: ClarisWksStyleManager.cxx:2235
CellFormat(MWAWCell::Format const &format=MWAWCell::Format())
constructor from cell
Definition: ClarisWksStyleManager.hxx:149
a structure uses to define the format of a cell content
Definition: MWAWCell.hxx:60
int m_fontId
the char
Definition: ClarisWksStyleManager.hxx:198
int m_localStyleId
a local style id
Definition: ClarisWksStyleManager.hxx:212
the KSEN structure a structure related to paragraph and cell style
Definition: ClarisWksStyleManager.hxx:168
bool readFontNames(int N, int fSz)
read the font name style zone
Definition: ClarisWksStyleManager.cxx:2171
a structure used to define a picture style
Definition: MWAWGraphicStyle.hxx:47
MWAWParserStatePtr m_parserState
the parser state
Definition: ClarisWksStyleManager.hxx:137
ClarisWksStyleManager & operator=(ClarisWksStyleManager const &orig)
int m_fileFormat
the field format: number, string, currency, ..
Definition: ClarisWksStyleManager.hxx:158
friend std::ostream & operator<<(std::ostream &o, CellFormat const &form)
operator<<
Definition: ClarisWksStyleManager.cxx:2625
bool readGradientList(long endPos=-1)
reads a gradient map zone ( v2)
Definition: ClarisWksStyleManager.cxx:1784
int m_ksenId
the ksen id
Definition: ClarisWksStyleManager.hxx:208
int m_rulerId
the ruler
Definition: ClarisWksStyleManager.hxx:202
std::string m_extra
extra data
Definition: ClarisWksStyleManager.hxx:216
bool readStylesDef(int N, int fSz)
try to read the style definition zone
Definition: ClarisWksStyleManager.cxx:2073
a structure to store the style list and the lookup zone
Definition: ClarisWksStyleManager.hxx:60
Type
the line repetition
Definition: libmwaw_internal.hxx:255
HorizontalAlignment
the default horizontal alignement.
Definition: MWAWCell.hxx:118
MWAWBorder::Style m_lineType
the line type
Definition: ClarisWksStyleManager.hxx:178
a structure used to define a cell and its format
Definition: MWAWCell.hxx:52
the class to store a color
Definition: libmwaw_internal.hxx:166
std::string m_extra
extra data
Definition: ClarisWksStyleManager.hxx:164
bool readStyleFonts(int N, int fSz)
read a STYL_CHAR Font sequence
Definition: ClarisWksStyleManager.cxx:2311
Style
the line style
Definition: libmwaw_internal.hxx:253
~ClarisWksStyleManager()
destructor
Definition: ClarisWksStyleManager.cxx:1567
friend std::ostream & operator<<(std::ostream &o, Style const &style)
operator<<
Definition: ClarisWksStyleManager.cxx:1532
int m_borders
the borders
Definition: ClarisWksStyleManager.hxx:160
Class to store font.
Definition: MWAWFont.hxx:44
a border
Definition: libmwaw_internal.hxx:251
main document information used to create a ClarisWorks file
Definition: ClarisWksDocument.hxx:69
MWAWBorder::Type m_lineRepeat
the line repetition
Definition: ClarisWksStyleManager.hxx:180
bool readStyles(MWAWEntry const &entry)
try to read the styles definition (in v4-6)
Definition: ClarisWksStyleManager.cxx:1920
bool readGenStyle(int id)
try to read a STYL_ subzone (in v4-6)
Definition: ClarisWksStyleManager.cxx:1969
int m_styleId
the style id
Definition: ClarisWksStyleManager.hxx:214
int m_rulerPId
the ruler parent id ( or maybe the style parent)
Definition: ClarisWksStyleManager.hxx:204
bool readPatternList(long endPos=-1)
reads a pattern map zone ( v2)
Definition: ClarisWksStyleManager.cxx:1724
bool updateGradient(int grad, MWAWGraphicStyle &style) const
update a style using a gradiant id
Definition: ClarisWksStyleManager.cxx:1682
ClarisWksDocument & m_document
the document
Definition: ClarisWksStyleManager.hxx:135
bool readGraphStyles(int N, int fSz)
read a GraphicStyle sequence
Definition: ClarisWksStyleManager.cxx:2461
friend std::ostream & operator<<(std::ostream &o, KSEN const &ksen)
operator<<
Definition: ClarisWksStyleManager.cxx:1462
the structure to store the style in a ClarisWksStyleManager
Definition: ClarisWksStyleManager.hxx:188
int version() const
return the file version
Definition: ClarisWksStyleManager.cxx:1571
bool getRulerName(int id, std::string &name) const
return the name corresponding to a styleId
Definition: ClarisWksStyleManager.cxx:1577
bool readStyleNames(int N, int fSz)
read a STYL Name sequence
Definition: ClarisWksStyleManager.cxx:2340
bool updateWallPaper(int wall, MWAWGraphicStyle &style) const
update a style using a wall paper id
Definition: ClarisWksStyleManager.cxx:1702
int m_nameId
the style name id
Definition: ClarisWksStyleManager.hxx:206
the CELL structure a structure related to number/date format
Definition: ClarisWksStyleManager.hxx:147
bool getColor(int id, MWAWColor &col) const
return the color which corresponds to an id (if possible)
Definition: ClarisWksStyleManager.cxx:1604
shared_ptr< ClarisWksStyleManagerInternal::State > m_state
the state
Definition: ClarisWksStyleManager.hxx:139
int m_lines
an int used to add some oblique line ( or cross )
Definition: ClarisWksStyleManager.hxx:182
Defines MWAWCell (cell content and format)
bool readCellStyles(int N, int fSz)
Definition: ClarisWksStyleManager.cxx:2382
shared_ptr< MWAWParserState > MWAWParserStatePtr
a smart pointer of MWAWParserState
Definition: libmwaw_internal.hxx:386
int m_valign
the vertical alignement
Definition: ClarisWksStyleManager.hxx:176
bool readKSEN(int N, int fSz)
read a KSEN sequence
Definition: ClarisWksStyleManager.cxx:2555
int m_cellFormatId
the formatId
Definition: ClarisWksStyleManager.hxx:200
basic class to store an entry in a file This contained :
Definition: MWAWEntry.hxx:46
bool readLookUp(int N, int fSz)
try to read the lookup zone
Definition: ClarisWksStyleManager.cxx:2134
std::string m_extra
extra data
Definition: ClarisWksStyleManager.hxx:184
KSEN()
constructor
Definition: ClarisWksStyleManager.hxx:170
Style()
constructor
Definition: ClarisWksStyleManager.hxx:190
a basic pattern used in a MWAWGraphicStyle:
Definition: MWAWGraphicStyle.hxx:95
bool getPattern(int id, MWAWGraphicStyle::Pattern &pattern, float &percent) const
return the pattern which corresponds to an id.
Definition: ClarisWksStyleManager.cxx:1617
int getFontId(int localId) const
return a mac font id corresponding to a local id
Definition: ClarisWksStyleManager.cxx:1630
MWAWCell::HorizontalAlignment m_hAlign
the cell alignement : by default nothing
Definition: ClarisWksStyleManager.hxx:156

Generated on Fri Jul 25 2014 13:24:29 for libmwaw by doxygen 1.8.7