blob: a794c8a5ae6abfbead851bc25df07420004fc972 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/***************************************************************************
copyright : (C) 2003-2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#ifndef TELLICO_IMPORTER_H
#define TELLICO_IMPORTER_H
class TQBuffer;
class KZip;
class KArchiveDirectory;
#include "dataimporter.h"
#include "../datavectors.h"
#include "../stringset.h"
class TQDomElement;
namespace Tellico {
namespace Import {
/**
* Reading the @ref Tellico data files is done by the TellicoImporter.
*
* @author Robby Stephenson
*/
class TellicoImporter : public DataImporter {
Q_OBJECT
TQ_OBJECT
public:
enum Format { Unknown, Error, XML, Zip, Cancel };
/**
* @param url The tellico data file.
*/
TellicoImporter(const KURL& url, bool loadAllImages=true);
/**
* Constructor used to convert arbitrary text to a @ref Collection
*
* @param text The text
*/
TellicoImporter(const TQString& text);
virtual ~TellicoImporter();
/**
* sometimes, a new document format might add data
*/
bool modifiedOriginal() const { return m_modified; }
/**
*/
virtual Data::CollPtr collection();
Format format() const { return m_format; }
bool hasImages() const { return m_hasImages; }
bool loadImage(const TQString& id_);
static bool loadAllImages(const KURL& url);
public slots:
void slotCancel();
private:
static bool versionConversion(uint from, uint to);
void loadXMLData(const TQByteArray& data, bool loadImages);
void loadZipData();
void readField(uint syntaxVersion, const TQDomElement& elem);
void readEntry(uint syntaxVersion, const TQDomElement& elem);
void readImage(const TQDomElement& elem, bool loadImage);
void readFilter(const TQDomElement& elem);
void readBorrower(const TQDomElement& elem);
void addDefaultFilters();
Data::CollPtr m_coll;
bool m_loadAllImages;
TQString m_namespace;
Format m_format;
bool m_modified : 1;
bool m_cancelled : 1;
bool m_hasImages : 1;
StringSet m_images;
TQBuffer* m_buffer;
KZip* m_zip;
const KArchiveDirectory* m_imgDir;
};
} // end namespace
} // end namespace
#endif
|