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

« back to all changes in this revision

Viewing changes to src/libkbibtexio/comment.cpp

  • 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-2010 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 <QRegExp>
 
21
#include <QStringList>
 
22
 
 
23
#include <comment.h>
 
24
 
 
25
/**
 
26
 * Private class to store internal variables that should not be visible
 
27
 * in the interface as defined in the header file.
 
28
 */
 
29
class Comment::CommentPrivate
 
30
{
 
31
public:
 
32
    QString text;
 
33
    bool useCommand;
 
34
};
 
35
 
 
36
Comment::Comment(const QString& text, bool useCommand)
 
37
        : Element(), d(new Comment::CommentPrivate)
 
38
{
 
39
    d->text = text;
 
40
    d->useCommand = useCommand;
 
41
}
 
42
 
 
43
Comment::Comment(const Comment& other)
 
44
        : Element(), d(new Comment::CommentPrivate)
 
45
{
 
46
    d->text = other.d->text;
 
47
    d->useCommand = other.d->useCommand;
 
48
}
 
49
 
 
50
Comment::~Comment()
 
51
{
 
52
    // nothing
 
53
}
 
54
 
 
55
QString Comment::text() const
 
56
{
 
57
    return d->text;
 
58
}
 
59
 
 
60
void Comment::setText(const QString &text)
 
61
{
 
62
    d->text = text;
 
63
}
 
64
 
 
65
bool Comment::useCommand() const
 
66
{
 
67
    return d->useCommand;
 
68
}
 
69
 
 
70
void Comment::setUseCommand(bool useCommand)
 
71
{
 
72
    d->useCommand = useCommand;
 
73
}