~ubuntu-branches/ubuntu/precise/kbibtex/precise

« back to all changes in this revision

Viewing changes to src/fileexporterbibtex.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-2006 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
 
#ifndef BIBTEXFILEEXPORTERBIBTEX_H
21
 
#define BIBTEXFILEEXPORTERBIBTEX_H
22
 
 
23
 
#include <iconv.h>
24
 
 
25
 
#include <element.h>
26
 
#include <entryfield.h>
27
 
#include <fileexporter.h>
28
 
 
29
 
class QChar;
30
 
 
31
 
namespace BibTeX
32
 
{
33
 
    class Comment;
34
 
    class Preamble;
35
 
    class Macro;
36
 
 
37
 
    /**
38
 
    @author Thomas Fischer
39
 
    */
40
 
 
41
 
    class FileExporterBibTeX : public FileExporter
42
 
    {
43
 
    public:
44
 
        enum KeywordCasing {kcLowerCase, kcInitialCapital, kcCamelCase, kcCapital};
45
 
 
46
 
        FileExporterBibTeX();
47
 
        ~FileExporterBibTeX();
48
 
 
49
 
        bool save( QIODevice* iodevice, const File* bibtexfile, QStringList *errorLog = NULL );
50
 
        bool save( QIODevice* iodevice, const Element* element, QStringList *errorLog = NULL );
51
 
 
52
 
        void setStringDelimiter( const QChar& stringOpenDelimiter, const QChar& stringCloseDelimiter );
53
 
        void setKeywordCasing( const KeywordCasing keywordCasing );
54
 
        void setEncoding( const QString& encoding );
55
 
        void setEnclosingCurlyBrackets( bool protectCasing );
56
 
 
57
 
    public slots:
58
 
        void cancel();
59
 
 
60
 
    private:
61
 
        iconv_t m_iconvHandle;
62
 
        char *m_iconvBuffer;
63
 
        const int m_iconvBufferSize;
64
 
 
65
 
        QChar m_stringOpenDelimiter;
66
 
        QChar m_stringCloseDelimiter;
67
 
        KeywordCasing m_keywordCasing;
68
 
        QString m_encoding;
69
 
        bool m_protectCasing;
70
 
        bool cancelFlag;
71
 
 
72
 
        bool writeEntry( QIODevice &device, const Entry* entry );
73
 
        bool writeMacro( QIODevice &device, const Macro *macro );
74
 
        bool writeComment( QIODevice &device, const Comment *comment );
75
 
        bool writePreamble( QIODevice &device, const  Preamble* preamble );
76
 
        bool writeString( QIODevice &device, const QString& text );
77
 
 
78
 
        QString valueToString( const Value *value, const EntryField::FieldType fieldType = EntryField::ftUnknown, const QString &fieldTypeName = QString::null );
79
 
 
80
 
        void removeBackslashQuoting( QString &text );
81
 
        QString applyKeywordCasing( const QString &keyword );
82
 
        bool requiresPersonQuoting( const QString &text, bool isLastName );
83
 
        void addProtectiveCasing( QString &text );
84
 
    };
85
 
 
86
 
}
87
 
 
88
 
#endif