diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-03-02 20:05:33 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2014-03-02 20:05:33 +0100 |
commit | 722ce1efbac31c61b1d4b13f7e075c9f311e3e73 (patch) | |
tree | db1b6b28566e5fe9accb4a688f7257673cecb080 /parts/appwizard/tdevlicense.h | |
parent | afb74575caf7dd8ccb6c235b1c8d788e320c19da (diff) | |
download | tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.tar.gz tdevelop-722ce1efbac31c61b1d4b13f7e075c9f311e3e73.zip |
Finish renaming tdevelop components
Diffstat (limited to 'parts/appwizard/tdevlicense.h')
-rw-r--r-- | parts/appwizard/tdevlicense.h | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/parts/appwizard/tdevlicense.h b/parts/appwizard/tdevlicense.h new file mode 100644 index 00000000..d61aebc3 --- /dev/null +++ b/parts/appwizard/tdevlicense.h @@ -0,0 +1,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 TDEVLICENSE_H +#define TDEVLICENSE_H + +/** +@file tdevfile.h +The interface to installed licenses. +*/ + +#include <tqstringlist.h> + +#include "tdevfile.h" + +/*The interface to installed licenses.*/ +class TDevLicense +{ +public: + /**Constructs a TDevLicense 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.*/ + TDevLicense(const TQString& name, const TQString& fileName); + +public: + /**Assembles the license to a string suitable for replacement of a %{LICENSE} .*/ + TQString assemble(TDevFile::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 |