diff options
| author | craig <craig@11d20701-8431-0410-a711-e3c959e3b870> | 2012-01-01 11:40:09 +0000 |
|---|---|---|
| committer | craig <craig@11d20701-8431-0410-a711-e3c959e3b870> | 2012-01-01 11:40:09 +0000 |
| commit | 7ed83b6c6666eb8b6b104c211ae7e52907350372 (patch) | |
| tree | 4430b556abac0ad660a0aacf1887d77f85d8be02 /scribus/documentinformation.cpp | |
| download | scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.tar.gz scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.tar.xz scribus-7ed83b6c6666eb8b6b104c211ae7e52907350372.zip | |
Branch 1.3.5 tree to 1.4.x tree, goodbye 1.3.x
git-svn-id: svn://scribus.net/branches/Version14x/Scribus@17163 11d20701-8431-0410-a711-e3c959e3b870
Diffstat (limited to 'scribus/documentinformation.cpp')
| -rw-r--r-- | scribus/documentinformation.cpp | 192 |
1 files changed, 192 insertions, 0 deletions
diff --git a/scribus/documentinformation.cpp b/scribus/documentinformation.cpp new file mode 100644 index 0000000..c22cd43 --- /dev/null +++ b/scribus/documentinformation.cpp @@ -0,0 +1,192 @@ +/* +For general Scribus (>=1.3.2) copyright and licensing information please refer +to the COPYING file provided with the program. Following this notice may exist +a copyright and/or license notice that predates the release of Scribus 1.3.2 +for which a new license (GPL+exception) is in place. +*/ +/*************************************************************************** + begin : Apr 2005 + copyright : (C) 2005 by Craig Bradney + email : cbradney@zip.com.au +***************************************************************************/ + +/*************************************************************************** +* * +* ScMW 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. * +* * +***************************************************************************/ + +#include "documentinformation.h" + +DocumentInformation::DocumentInformation() +{ + author = ""; + comments = ""; + contrib = ""; + cover = ""; + date = ""; + format = ""; + ident = ""; + keywords = ""; + langInfo = ""; + publisher = ""; + relation = ""; + rights = ""; + source = ""; + title = ""; + type = ""; +} + +const QString DocumentInformation::getAuthor() +{ + return author; +} + +const QString DocumentInformation::getComments() +{ + return comments; +} + +const QString DocumentInformation::getContrib() +{ + return contrib; +} + +const QString DocumentInformation::getCover() +{ + return cover; +} + +const QString DocumentInformation::getDate() +{ + return date; +} + +const QString DocumentInformation::getFormat() +{ + return format; +} + +const QString DocumentInformation::getIdent() +{ + return ident; +} + +const QString DocumentInformation::getKeywords() +{ + return keywords; +} + +const QString DocumentInformation::getLangInfo() +{ + return langInfo; +} + +const QString DocumentInformation::getPublisher() +{ + return publisher; +} + +const QString DocumentInformation::getRelation() +{ + return relation; +} + +const QString DocumentInformation::getRights() +{ + return rights; +} + +const QString DocumentInformation::getSource() +{ + return source; +} + +const QString DocumentInformation::getTitle() +{ + return title; +} + +const QString DocumentInformation::getType() +{ + return type; +} + + +void DocumentInformation::setAuthor(const QString &_author) +{ + author=_author; +} + +void DocumentInformation::setComments(const QString &_comments) +{ + comments=_comments; +} + +void DocumentInformation::setContrib(const QString &_contrib) +{ + contrib=_contrib; +} + +void DocumentInformation::setCover(const QString &_cover) +{ + cover=_cover; +} + +void DocumentInformation::setDate(const QString &_date) +{ + date=_date; +} + +void DocumentInformation::setFormat(const QString &_format) +{ + format=_format; +} + +void DocumentInformation::setIdent(const QString &_ident) +{ + ident=_ident; +} + +void DocumentInformation::setKeywords(const QString &_keywords) +{ + keywords=_keywords; +} + +void DocumentInformation::setLangInfo(const QString &_langInfo) +{ + langInfo=_langInfo; +} + +void DocumentInformation::setPublisher(const QString &_publisher) +{ + publisher=_publisher; +} + +void DocumentInformation::setRelation(const QString &_relation) +{ + relation=_relation; +} + +void DocumentInformation::setRights(const QString &_rights) +{ + rights=_rights; +} + +void DocumentInformation::setSource(const QString &_source) +{ + source=_source; +} + +void DocumentInformation::setTitle(const QString &_title) +{ + title=_title; +} + +void DocumentInformation::setType(const QString &_type) +{ + type=_type; +} |
