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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/***************************************************************************
xmlutils.h - description
-------------------
begin : Mit Mai 7 2003
copyright : (C) 2003 by Dominik Seichter
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* 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 XMLUTILS_H
#define XMLUTILS_H
#include <qmap.h>
#include <qsortedlist.h>
class DocumentItem;
class BarcodeItem;
class Barkode;
class Definition;
class TokenProvider;
class MyCanvasView;
class QColor;
class QDomDocument;
class QDomElement;
class QDomNode;
class QRect;
class QString;
class QWidget;
typedef QSortedList<DocumentItem> DocumentItemList;
/** This class provides helper function for saving and reading to XML files.
*
* @author Dominik Seichter
*/
class XMLUtils {
public:
XMLUtils();
~XMLUtils();
void readXMLHeader( QDomDocument* doc, QString & description, bool & kbarcode18, Definition** def );
void writeXMLHeader( QDomNode* root, const QString & description, Definition* def );
void readDocumentItems( DocumentItemList* list, QDomDocument* doc, TokenProvider* token, bool kbarcode18 );
void writeXMLDocumentItem( QDomElement* root, DocumentItem** item );
bool readXMLDocumentItem( QDomElement* tag, DocumentItem** item, TokenProvider* token );
void writeXMLColor( QDomElement* tag, const QString & prefix, QColor c ) const;
QColor readXMLColor( QDomElement* tag, const QString & prefix, QColor c );
//void writeXMLRect( QDomElement* tag, QRect r, QPoint ptOrigin ) const;
QRect readXMLRect( QDomElement* tag );
void writeDefinition( QDomElement* tag, Definition* d ) const;
Definition* readDefinition( QDomElement* tag );
void writeBarcode( QDomElement* tag, const Barkode* data, bool cache = false ) const;
void readBarcode( QDomElement* tag, Barkode* bcode );
private:
static QMap<QString,QString> legacy;
};
#endif
|