summaryrefslogtreecommitdiffstats
path: root/src/value.h
blob: 3c7d8761484f128cd5701317c3f85a28fb7fe647 (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/***************************************************************************
*   Copyright (C) 2004-2006 by Thomas Fischer                             *
*   fischer@unix-ag.uni-kl.de                                             *
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                                   *
*                                                                         *
*   This program is distributed in the hope that it will be useful,       *
*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
*   GNU General Public License for more details.                          *
*                                                                         *
*   You should have received a copy of the GNU General Public License     *
*   along with this program; if not, write to the                         *
*   Free Software Foundation, Inc.,                                       *
*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
***************************************************************************/
#ifndef BIBTEXVALUE_H
#define BIBTEXVALUE_H

#include <qvaluelist.h>

class QStringList;

namespace BibTeX
{
    class ValueTextInterface
    {
    public:
        ValueTextInterface( const ValueTextInterface* other );
        ValueTextInterface( const QString& text );
        virtual ~ValueTextInterface() {};

        virtual void setText( const QString& text );
        virtual QString text() const;
        QString simplifiedText() const;
        virtual void replace( const QString &before, const QString &after );
        virtual bool containsPattern( const QString &pattern, bool caseSensitive );

    private:
        QString m_text;
    };

    class ValueItem: public ValueTextInterface
    {
    public:
        ValueItem( const QString& text );

        virtual ValueItem *clone()
        {
            return NULL;
        };
    };

    class Keyword: public ValueTextInterface
    {
    public:
        Keyword( Keyword *other );
        Keyword( const QString& text );

        Keyword *clone();
    };

    class KeywordContainer: public ValueItem
    {
    public:
        KeywordContainer();
        KeywordContainer( const QString& text );
        KeywordContainer( KeywordContainer *other );
        KeywordContainer( const QStringList& list );

        ValueItem *clone();
        void setList( const QStringList& list );
        void append( const QString& text );
        void remove( const QString& text );
        void setText( const QString& text );
        QString text() const;
        void replace( const QString &before, const QString &after );

        QValueList<Keyword*> keywords;
    };

    class Person: public ValueTextInterface
    {
    public:
        Person( const QString& text, bool firstNameFirst = FALSE );
        Person( const QString& firstName, const QString& lastName, bool firstNameFirst = FALSE );

        Person *clone();
        void setText( const QString& text );
        QString text() const;
        QString text( bool firstNameFirst ) const;

        QString firstName();
        QString lastName();

    protected:
        QString m_firstName;
        QString m_lastName;
        bool m_firstNameFirst;

        bool splitName( const QString& text, QStringList& segments );
    };

    class PersonContainer: public ValueItem
    {
    public:
        PersonContainer( bool firstNameFirst = FALSE );
        PersonContainer( const QString& text, bool firstNameFirst = FALSE );

        ValueItem *clone();
        void setText( const QString& text );
        QString text() const;
        void replace( const QString &before, const QString &after );

        QValueList<Person*> persons;

    private:
        bool m_firstNameFirst;
    };

    class MacroKey: public ValueItem
    {
    private:
        bool m_isValid;
        bool isValidInternal();

    public:
        MacroKey( const QString& text );

        ValueItem *clone();

        void setText( const QString& text );
        bool isValid();
    };

    class PlainText: public ValueItem
    {
    public:
        PlainText( const QString& text );

        ValueItem *clone();
    };

    class Value: public ValueTextInterface
    {
    public:
        Value();
        Value( const Value *other );
        Value( const QString& text, bool isMacroKey = false );

        void setText( const QString& text );
        QString text() const;
        void replace( const QString &before, const QString &after );

        QValueList<ValueItem*> items;
    };
}

#endif