You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.2 KiB
76 lines
2.2 KiB
/* 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 <tqstringlist.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 TQString& name, const TQString& fileName);
|
|
|
|
public:
|
|
/**Assembles the license to a string suitable for replacement of a %{LICENSE} .*/
|
|
TQString assemble(KDevFile::CommentingStyle commentingStyle, const TQString& author, const TQString& email, int leadingSpaces );
|
|
|
|
/**
|
|
* returns the name of this license.
|
|
*/
|
|
TQString 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.
|
|
*/
|
|
TQStringList copyFiles(){ return m_copyFiles; }
|
|
|
|
private:
|
|
void readFile( const TQString& fileName );
|
|
|
|
private:
|
|
/**
|
|
* Name of this license
|
|
*/
|
|
TQString m_name;
|
|
/**
|
|
* Raw lines of the license. Should contain no spaces at
|
|
* the start or end of each line.
|
|
*/
|
|
TQStringList m_rawLines;
|
|
/**
|
|
* List of files that must be added to the project, if any
|
|
* file in the project uses this license.
|
|
*/
|
|
TQStringList m_copyFiles;
|
|
};
|
|
|
|
#endif
|