mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
0d47b62715
svn path=/trunk/KDE/kdegraphics/okular/; revision=655893
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2006 by Tobias Koenig <tokoe@kde.org> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
***************************************************************************/
|
|
|
|
#ifndef OOO_STYLEPARSER_H
|
|
#define OOO_STYLEPARSER_H
|
|
|
|
#include "formatproperty.h"
|
|
|
|
class QDomDocument;
|
|
class QDomElement;
|
|
|
|
namespace OOO {
|
|
|
|
class Document;
|
|
class StyleInformation;
|
|
|
|
class StyleParser
|
|
{
|
|
public:
|
|
StyleParser( const Document *document, const QDomDocument &domDocument, StyleInformation *styleInformation );
|
|
|
|
bool parse();
|
|
|
|
static double convertUnit( const QString& );
|
|
|
|
private:
|
|
bool parseContentFile();
|
|
bool parseStyleFile();
|
|
bool parseMetaFile();
|
|
|
|
bool parseDocumentCommonAttrs( QDomElement& );
|
|
bool parseFontFaceDecls( QDomElement& );
|
|
bool parseStyles( QDomElement& );
|
|
bool parseMasterStyles( QDomElement& );
|
|
bool parseAutomaticStyles( QDomElement& );
|
|
|
|
StyleFormatProperty parseStyleProperty( QDomElement& );
|
|
ParagraphFormatProperty parseParagraphProperty( QDomElement& );
|
|
TableColumnFormatProperty parseTableColumnProperty( QDomElement& );
|
|
TableCellFormatProperty parseTableCellProperty( QDomElement& );
|
|
TextFormatProperty parseTextProperty( QDomElement& );
|
|
PageFormatProperty parsePageProperty( QDomElement& );
|
|
ListFormatProperty parseListProperty( QDomElement& );
|
|
|
|
const Document *mDocument;
|
|
const QDomDocument &mDomDocument;
|
|
StyleInformation *mStyleInformation;
|
|
bool mMasterPageNameSet;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|