You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tellico/src/translators/tellicosaximporter.h

88 lines
2.2 KiB

/***************************************************************************
copyright : (C) 2008 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_IMPORT_TELLICOSAXIMPORTER_H
#define TELLICO_IMPORT_TELLICOSAXIMPORTER_H
#include "dataimporter.h"
#include "../datavectors.h"
#include "../stringset.h"
class TQBuffer;
class KZip;
class KArchiveDirectory;
namespace Tellico {
namespace Import {
/**
* @author Robby Stephenson
*/
class TellicoSaxImporter : public DataImporter {
Q_OBJECT
public:
enum Format { Unknown, Error, XML, Zip, Cancel };
/**
* @param url The tellico data file.
*/
TellicoSaxImporter(const KURL& url, bool loadAllImages=true);
/**
* Constructor used to convert arbitrary text to a @ref Collection
*
* @param text The text
*/
TellicoSaxImporter(const TQString& text);
virtual ~TellicoSaxImporter();
/**
* 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;
bool loadImage(const TQString& id_);
static bool loadAllImages(const KURL& url);
public slots:
void slotCancel();
private:
void loadXMLData(const TQByteArray& data, bool loadImages);
void loadZipData();
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