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/alexandriaimporter.h

74 lines
2.0 KiB

/***************************************************************************
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 ALEXANDRIAIMPORTER_H
#define ALEXANDRIAIMPORTER_H
class KComboBox;
#include "importer.h"
#include "../datavectors.h"
#include <tqdir.h>
namespace Tellico {
namespace Import {
/**
* An importer for importing collections used by Alexandria, the Gnome book collection manager.
*
* The libraries are assumed to be in $HOME/.alexandria. The file format is YAML, but instead
* using a real YAML reader, the file is parsed line-by-line, so it's very crude. When Alexandria
* adds new fields or types, this will have to be updated.
*
* @author Robby Stephenson
*/
class AlexandriaImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
/**
*/
AlexandriaImporter() : Importer(), m_coll(0), m_widget(0), m_cancelled(false) {}
/**
*/
virtual ~AlexandriaImporter() {}
/**
*/
virtual Data::CollPtr collection();
/**
*/
virtual TQWidget* widget(TQWidget* parent, const char* name=0);
virtual bool canImport(int type) const;
public slots:
void slotCancel();
private:
static TQString& cleanLine(TQString& str);
static TQString clean(TQString& str);
Data::CollPtr m_coll;
TQWidget* m_widget;
KComboBox* m_library;
TQDir m_libraryDir;
bool m_cancelled : 1;
};
} // end namespace
} // end namespace
#endif