summaryrefslogtreecommitdiffstats
path: root/kbarcode/xmlutils.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-15 18:34:54 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-15 18:34:54 +0000
commit8805e6b17b1460f3316ccb28629e8ad78e4b9c2c (patch)
treedc9b702962ecf0060cc473397b9f80268c2456c9 /kbarcode/xmlutils.h
downloadkbarcode-8805e6b17b1460f3316ccb28629e8ad78e4b9c2c.tar.gz
kbarcode-8805e6b17b1460f3316ccb28629e8ad78e4b9c2c.zip
Added abandoned KDE3 version of kbarcode
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbarcode@1090667 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbarcode/xmlutils.h')
-rw-r--r--kbarcode/xmlutils.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/kbarcode/xmlutils.h b/kbarcode/xmlutils.h
new file mode 100644
index 0000000..3cd6b5c
--- /dev/null
+++ b/kbarcode/xmlutils.h
@@ -0,0 +1,72 @@
+/***************************************************************************
+ xmlutils.h - description
+ -------------------
+ begin : Mit Mai 7 2003
+ copyright : (C) 2003 by Dominik Seichter
+ email : domseichter@web.de
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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