MWAWRSRCParser.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 #ifndef MWAW_RSRC_PARSER_H
35 #define MWAW_RSRC_PARSER_H
36 
37 #include <map>
38 #include <string>
39 #include <vector>
40 
41 #include "libmwaw_internal.hxx"
42 #include "MWAWDebug.hxx"
43 
44 class WPXBinaryData;
45 
49 {
50 public:
51  struct Version;
52 
57 
59  bool parse();
60 
63  return m_input;
64  }
65 
67  MWAWEntry getEntry(std::string type, int id) const;
68 
70  std::multimap<std::string, MWAWEntry> &getEntriesMap() {
71  if (!m_parsed)
72  parse();
73  return m_entryMap;
74  }
76  std::multimap<std::string, MWAWEntry> const &getEntriesMap() const {
77  if (!m_parsed)
78  const_cast<MWAWRSRCParser *>(this)->parse();
79  return m_entryMap;
80  }
81 
83  bool parseSTR(MWAWEntry const &entry, std::string &str);
84 
86  bool parseSTRList(MWAWEntry const &entry, std::vector<std::string> &list);
87 
89  bool parsePICT(MWAWEntry const &entry, WPXBinaryData &pict);
90 
92  bool parseClut(MWAWEntry const &entry, std::vector<MWAWColor> &list);
93 
95  bool parseVers(MWAWEntry const &entry, Version &vers);
96 
98  void setAsciiName(char const *name) {
99  m_asciiName = name;
100  }
102  std::string const &asciiName() const {
103  return m_asciiName;
104  }
107  return m_asciiFile;
108  }
109 protected:
111  bool parseMap(MWAWEntry const &entry, long dataBegin);
112 
116  std::multimap<std::string, MWAWEntry> m_entryMap;
118  bool m_parsed;
122  std::string m_asciiName;
123 private:
124  MWAWRSRCParser(MWAWRSRCParser const &orig);
126 
127 public:
129  struct Version {
131  m_string(""), m_versionString(""), m_extra("") {
132  }
134  friend std::ostream &operator<< (std::ostream &o, Version const &vers);
142  std::string m_string;
144  std::string m_versionString;
146  std::string m_extra;
147  };
148 
149 };
150 
151 #endif
152 // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab:

Generated on Tue May 6 2014 09:50:49 for libmwaw by doxygen 1.8.3.1