summaryrefslogtreecommitdiff
path: root/src/lib/KEY6Parser.h
blob: 984d811d085ee9286c2f2ccad0ca7b5625bfaa6f (plain)
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
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
 * This file is part of the libetonyek project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef KEY6PARSER_H_INCLUDED
#define KEY6PARSER_H_INCLUDED

#include "IWAParser.h"

#include "KEYTypes_fwd.h"

namespace libetonyek
{

class KEYCollector;

class KEY6Parser : public IWAParser
{
public:
  KEY6Parser(const RVNGInputStreamPtr_t &fragments, const RVNGInputStreamPtr_t &package, KEYCollector &collector);

private:
  bool parseDocument() override;

  bool parsePresentation(unsigned id);
  bool parseSlideList(unsigned id);
  KEYSlidePtr_t parseSlide(unsigned id, bool master);
  bool parsePlaceholder(unsigned id);
  void parseNotes(unsigned id);

  bool parseStickyNote(const IWAMessage &msg) override;

  const IWORKStylePtr_t querySlideStyle(unsigned id) const;

  void parseSlideStyle(unsigned id, IWORKStylePtr_t &style);

private:
  KEYCollector &m_collector;

  mutable std::unordered_map<unsigned, KEYSlidePtr_t> m_masterSlides;
  mutable std::deque<KEYSlidePtr_t> m_slides;
  mutable StyleMap_t m_slideStyles;
};

}

#endif

/* vim:set shiftwidth=2 softtabstop=2 expandtab: */