summaryrefslogtreecommitdiffstats
path: root/parts/appwizard/kdevlicense.h
blob: 0f8a41cef3f80adabe4eecfb42d2d6a8b8427eaf (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
/* This file is part of the KDE project
   Copyright (C) 2004 Sascha Cunz <sascha@sacu.de>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
*/
#ifndef KDEVLICENSE_H
#define KDEVLICENSE_H

/**
@file kdevfile.h
The interface to installed licenses.
*/

#include <qstringlist.h>

#include "kdevfile.h"

/*The interface to installed licenses.*/
class KDevLicense
{
public:
    /**Constructs a KDevLicense and loads the given license template file.
    @param name The name of this license.
    @param fileName The file name where license template text is kept.*/
    KDevLicense(const QString& name, const QString& fileName);

public:
    /**Assembles the license to a string suitable for replacement of a %{LICENSE} .*/
    QString assemble(KDevFile::CommentingStyle commentingStyle, const QString& author, const QString& email, int leadingSpaces );

    /**
    * returns the name of this license.
    */
    QString name() const { return m_name; }

    /**
    * returns list of files tat must be present in the project's root directory
    * if any source files uses this license.
    */
    QStringList copyFiles(){ return m_copyFiles; }

private:
    void readFile( const QString& fileName );

private:
    /**
    * Name of this license
    */
    QString m_name;
    /**
    * Raw lines of the license. Should contain no spaces at
    * the start or end of each line.
    */
    QStringList m_rawLines;
    /**
    * List of files that must be added to the project, if any
    * file in the project uses this license.
    */
    QStringList m_copyFiles;
};

#endif