~ubuntu-branches/ubuntu/wily/kbibtex/wily

« back to all changes in this revision

Viewing changes to src/libkbibtexio/fileimporterbibutils.h

  • Committer: Package Import Robot
  • Author(s): Michael Hanke
  • Date: 2011-07-18 09:29:48 UTC
  • mfrom: (1.1.6) (2.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20110718092948-ksxjmg7kdfamolmg
Tags: 0.3-1
* First upstream release for KDE4 (Closes: #634255). A number of search
  engines are still missing, in comparison to the 0.2 series.
* Bumped Standards-Version to 3.9.2, no changes necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2004-2009 by Thomas Fischer                             *
 
3
 *   fischer@unix-ag.uni-kl.de                                             *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 
19
 ***************************************************************************/
 
20
#include <../config.h>
 
21
 
 
22
#ifdef HAVE_BIBUTILS
 
23
#ifndef BIBTEXFILEIMPORTBIBUTILS_H
 
24
#define BIBTEXFILEIMPORTBIBUTILS_H
 
25
 
 
26
#include <bibutils/bibutils.h>
 
27
 
 
28
#include <fileimporter.h>
 
29
#include <fileimporterbibtex.h>
 
30
 
 
31
/**
 
32
 @author Thomas Fischer <fischer@unix-ag.uni-kl.de>
 
33
*/
 
34
class FileImporterBibUtils : public FileImporter
 
35
{
 
36
public:
 
37
    enum InputFormat {ifRIS = BIBL_RISIN, ifMedLine = BIBL_MEDLINEIN, ifISI = BIBL_ISIIN, ifEndNote = BIBL_ENDNOTEIN, ifCOPAC = BIBL_COPACIN, ifMODS = BIBL_MODSIN, ifUndefined = -9999};
 
38
 
 
39
    FileImporterBibUtils(InputFormat inputFormat);
 
40
    ~FileImporterBibUtils();
 
41
 
 
42
    File* load(QIODevice *iodevice);
 
43
    static bool guessCanDecode(const QString & text);
 
44
    static InputFormat guessInputFormat(const QString &text);
 
45
 
 
46
public slots:
 
47
    void cancel();
 
48
 
 
49
private:
 
50
    bool m_cancelFlag;
 
51
    QString m_workingDir;
 
52
    InputFormat m_inputFormat;
 
53
    FileImporterBibTeX *m_bibTeXImporter;
 
54
 
 
55
    QString createTempDir();
 
56
    void deleteTempDir(const QString& directory);
 
57
 
 
58
};
 
59
 
 
60
#endif // BIBTEXFILEIMPORTBIBUTILS_H
 
61
#endif // HAVE_BIBUTILS