WPG1Parser.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /* libwpg
3  * Version: MPL 2.0 / LGPLv2.1+
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * Major Contributor(s):
10  * Copyright (C) 2006 Ariya Hidayat (ariya@kde.org)
11  * Copyright (C) 2005 Fridrich Strba (fridrich.strba@bluewin.ch)
12  * Copyright (C) 2004 Marc Oude Kotte (marc@solcon.nl)
13  *
14  * For minor contributions see the git repository.
15  *
16  * Alternatively, the contents of this file may be used under the terms
17  * of the GNU Lesser General Public License Version 2.1 or later
18  * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
19  * applicable instead of those above.
20  *
21  * For further information visit http://libwpg.sourceforge.net
22  */
23 
24 /* "This product is not manufactured, approved, or supported by
25  * Corel Corporation or Corel Corporation Limited."
26  */
27 
28 #ifndef __WPG1PARSER_H__
29 #define __WPG1PARSER_H__
30 
31 #include "WPGXParser.h"
32 #include "WPGDashArray.h"
33 #include "WPGBitmap.h"
34 #include <librevenge/librevenge.h>
35 #include <vector>
36 
37 class WPG1Parser : public WPGXParser
38 {
39 public:
40  WPG1Parser(librevenge::RVNGInputStream *input, librevenge::RVNGDrawingInterface *painter);
41  bool parse() override;
42 
43 private:
44  void handleStartWPG();
45  void handleEndWPG();
46 
47  void handleFillAttributes();
48  void handleLineAttributes();
49  void handleColormap();
50 
51  void handleLine();
52  void handlePolyline();
53  void handleRectangle();
54  void handlePolygon();
55  void handleEllipse();
56 
57  void handleCurvedPolyline();
58 
59  bool decodeRLE(std::vector<unsigned char> &buffer, unsigned width, unsigned height, unsigned depth);
60  void fillPixels(libwpg::WPGBitmap &bitmap, const unsigned char *buffer, unsigned width, unsigned height, unsigned depth);
61  void handleBitmapTypeOne();
62  void handleBitmapTypeTwo();
65 
70 
71  void resetPalette();
72 
73  // parsing context
76  bool m_success;
77  bool m_exit;
79  int m_width;
80  int m_height;
81  librevenge::RVNGPropertyList m_style;
87  librevenge::RVNGPropertyListVector m_gradient;
88 };
89 
90 #endif // __WPG1PARSER_H__
91 /* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
WPGBitmap.h
WPG1Parser::handleColormap
void handleColormap()
Definition: WPG1Parser.cpp:315
libwpg::WPGColor
Definition: WPGColor.h:34
WPG1Parser::m_penBackColor
libwpg::WPGColor m_penBackColor
Definition: WPG1Parser.h:83
WPGXParser::readVariableLengthInteger
unsigned int readVariableLengthInteger()
Definition: WPGXParser.cpp:166
WPG1Parser::handleCurvedPolyline
void handleCurvedPolyline()
Definition: WPG1Parser.cpp:537
WPG1Parser::handleGraphicsTextTypeOne
void handleGraphicsTextTypeOne()
Definition: WPG1Parser.cpp:940
WPG1Parser::resetPalette
void resetPalette()
Definition: WPG1Parser.cpp:1005
WPG1Parser::handleFillAttributes
void handleFillAttributes()
Definition: WPG1Parser.cpp:336
WPG1Parser::handleBitmapTypeOne
void handleBitmapTypeOne()
Definition: WPG1Parser.cpp:734
libwpg::WPGColor::getColorString
const librevenge::RVNGString getColorString() const
Definition: WPGColor.cpp:68
WPG1Parser::handleEndWPG
void handleEndWPG()
Definition: WPG1Parser.cpp:304
WPG1Parser::m_graphicsStarted
bool m_graphicsStarted
Definition: WPG1Parser.h:78
WPG1Parser::fillPixels
void fillPixels(libwpg::WPGBitmap &bitmap, const unsigned char *buffer, unsigned width, unsigned height, unsigned depth)
Definition: WPG1Parser.cpp:663
WPG1Parser::handlePolygon
void handlePolygon()
Definition: WPG1Parser.cpp:475
WPG1Parser::handleLine
void handleLine()
Definition: WPG1Parser.cpp:384
libwpg::WPGBitmap
Definition: WPGBitmap.h:38
WPGXParser::m_painter
librevenge::RVNGDrawingInterface * m_painter
Definition: WPGXParser.h:56
WPGXParser
Definition: WPGXParser.h:38
WPG1Parser::handleGraphicsTextTypeThree
void handleGraphicsTextTypeThree()
WPG1Parser::WPG1Parser
WPG1Parser(librevenge::RVNGInputStream *input, librevenge::RVNGDrawingInterface *painter)
Definition: WPG1Parser.cpp:142
WPG1Parser.h
WPG1Parser::m_success
bool m_success
Definition: WPG1Parser.h:76
libwpg_utils.h
WPGDashArray.h
WPG1Parser::handleStartWPG
void handleStartWPG()
Definition: WPG1Parser.cpp:283
libwpg::getRemainingLength
unsigned long getRemainingLength(librevenge::RVNGInputStream *const input)
Definition: libwpg_utils.cpp:71
WPG1Parser::handleGraphicsTextAttributes
void handleGraphicsTextAttributes()
Definition: WPG1Parser.cpp:934
WPG1Parser::handlePostscriptTypeOne
void handlePostscriptTypeOne()
Definition: WPG1Parser.cpp:852
WPGXParser::readU16
unsigned short readU16()
Definition: WPGXParser.cpp:140
WPG1Parser::m_recordLength
int m_recordLength
Definition: WPG1Parser.h:74
WPG1Parser::handlePostscriptTypeTwo
void handlePostscriptTypeTwo()
Definition: WPG1Parser.cpp:880
WPG1Parser::m_gradient
librevenge::RVNGPropertyListVector m_gradient
Definition: WPG1Parser.h:87
WPGXParser::m_input
librevenge::RVNGInputStream * m_input
Definition: WPGXParser.h:55
WPG1Parser::handleGraphicsTextTypeTwo
void handleGraphicsTextTypeTwo()
Definition: WPG1Parser.cpp:970
WPG1Parser::parse
bool parse() override
Definition: WPG1Parser.cpp:160
libwpg::WPGBitmap::getDIB
const librevenge::RVNGBinaryData & getDIB() const
Definition: WPGBitmap.cpp:151
defaultWPG1PaletteBlue
static const unsigned char defaultWPG1PaletteBlue[]
Definition: WPG1Parser.cpp:105
WPGXParser.h
WPG1Parser::m_style
librevenge::RVNGPropertyList m_style
Definition: WPG1Parser.h:81
WPG1Parser::handleEllipse
void handleEllipse()
Definition: WPG1Parser.cpp:507
WPG1Parser::m_exit
bool m_exit
Definition: WPG1Parser.h:77
WPG1Parser::decodeRLE
bool decodeRLE(std::vector< unsigned char > &buffer, unsigned width, unsigned height, unsigned depth)
Definition: WPG1Parser.cpp:588
libwpg::WPGDashArray
Definition: WPGDashArray.h:36
libwpg::WPGBitmap::setPixel
void setPixel(int x, int y, const WPGColor &color)
Definition: WPGBitmap.cpp:143
WPG1Parser::handleBitmapTypeTwo
void handleBitmapTypeTwo()
Definition: WPG1Parser.cpp:785
WPG1Parser::m_penForeColor
libwpg::WPGColor m_penForeColor
Definition: WPG1Parser.h:82
WPGXParser::readU8
unsigned char readU8()
Definition: WPGXParser.cpp:128
libwpg::WPGColor::getOpacity
double getOpacity() const
Definition: WPGColor.cpp:75
WPG1Parser::handlePolyline
void handlePolyline()
Definition: WPG1Parser.cpp:417
WPG1Parser::handleRectangle
void handleRectangle()
Definition: WPG1Parser.cpp:446
WPG1Parser::m_brushForeColor
libwpg::WPGColor m_brushForeColor
Definition: WPG1Parser.h:84
WPG1Parser::m_recordEnd
long m_recordEnd
Definition: WPG1Parser.h:75
WPG1Parser::m_height
int m_height
Definition: WPG1Parser.h:80
WPG_DEBUG_MSG
#define WPG_DEBUG_MSG(M)
Definition: libwpg_utils.h:56
WPGXParser::readS16
short readS16()
Definition: WPGXParser.cpp:156
WPG1Parser
Definition: WPG1Parser.h:37
WPG1Parser::m_width
int m_width
Definition: WPG1Parser.h:79
WPG1Parser::m_dashArray
libwpg::WPGDashArray m_dashArray
Definition: WPG1Parser.h:86
WPG1Parser::m_brushBackColor
libwpg::WPGColor m_brushBackColor
Definition: WPG1Parser.h:85
WPGXParser::m_colorPalette
std::map< int, libwpg::WPGColor > m_colorPalette
Definition: WPGXParser.h:57
WPGXParser::readU32
unsigned int readU32()
Definition: WPGXParser.cpp:147
defaultWPG1PaletteRed
static const unsigned char defaultWPG1PaletteRed[]
Definition: WPG1Parser.cpp:33
WPG1Parser::handleLineAttributes
void handleLineAttributes()
Definition: WPG1Parser.cpp:357
defaultWPG1PaletteGreen
static const unsigned char defaultWPG1PaletteGreen[]
Definition: WPG1Parser.cpp:69

Generated for libwpg by doxygen 1.8.16