diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 19:17:32 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-03-01 19:17:32 +0000 |
commit | e38d2351b83fa65c66ccde443777647ef5cb6cff (patch) | |
tree | 1897fc20e9f73a81c520a5b9f76f8ed042124883 /src/core/tellico_config_addons.cpp | |
download | tellico-e38d2351b83fa65c66ccde443777647ef5cb6cff.tar.gz tellico-e38d2351b83fa65c66ccde443777647ef5cb6cff.zip |
Added KDE3 version of Tellico
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1097620 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/core/tellico_config_addons.cpp')
-rw-r--r-- | src/core/tellico_config_addons.cpp | 171 |
1 files changed, 171 insertions, 0 deletions
diff --git a/src/core/tellico_config_addons.cpp b/src/core/tellico_config_addons.cpp new file mode 100644 index 0000000..9b388d5 --- /dev/null +++ b/src/core/tellico_config_addons.cpp @@ -0,0 +1,171 @@ +/*************************************************************************** + copyright : (C) 2006 by Robby Stephenson + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of version 2 of the GNU General Public License as * + * published by the Free Software Foundation; * + * * + ***************************************************************************/ + +#include "tellico_config.h" +#include "../collection.h" + +#define COLL Data::Collection:: +#define CLASS Config:: +#define P1 ( +#define P2 ) +#define CASE1(a,b) case COLL b: return CLASS a ## b P1 P2; +#define CASE2(a,b,c) case COLL b: CLASS a ## b P1 c P2; break; +#define GET(name,type) \ + CASE1(name,type) +#define SET(name,type,value) \ + CASE2(name,type,value) +#define ALL_GET(name) \ + GET(name, Base) \ + GET(name, Book) \ + GET(name, Video) \ + GET(name, Album) \ + GET(name, Bibtex) \ + GET(name, ComicBook) \ + GET(name, Wine) \ + GET(name, Coin) \ + GET(name, Stamp) \ + GET(name, Card) \ + GET(name, Game) \ + GET(name, File) \ + GET(name, BoardGame) +#define ALL_SET(name,value) \ + SET(name, Base, value) \ + SET(name, Book, value) \ + SET(name, Video, value) \ + SET(name, Album, value) \ + SET(name, Bibtex, value) \ + SET(name, ComicBook, value) \ + SET(name, Wine, value) \ + SET(name, Coin, value) \ + SET(name, Stamp, value) \ + SET(name, Card, value) \ + SET(name, Game, value) \ + SET(name, File, value) \ + SET(name, BoardGame, value) + +namespace { + static const QRegExp commaSplit = QRegExp(QString::fromLatin1("\\s*,\\s*")); +} + +using Tellico::Config; + +void Config::deleteAndReset() { + delete mSelf; + mSelf = 0; +} + +QStringList Config::noCapitalizationList() { + return QStringList::split(commaSplit, Config::noCapitalizationString()); +} + +QStringList Config::articleList() { + return QStringList::split(commaSplit, Config::articlesString()); +} + +QStringList Config::nameSuffixList() { + return QStringList::split(commaSplit, Config::nameSuffixesString()); +} + +QStringList Config::surnamePrefixList() { + return QStringList::split(commaSplit, Config::surnamePrefixesString()); +} + + +QString Config::templateName(int type_) { + switch(type_) { + ALL_GET(template); + } + return QString(); +} + +QFont Config::templateFont(int type_) { + switch(type_) { + ALL_GET(font); + } + return QFont(); +} + +QColor Config::templateBaseColor(int type_) { + switch(type_) { + ALL_GET(baseColor) + } + return QColor(); +} + +QColor Config::templateTextColor(int type_) { + switch(type_) { + ALL_GET(textColor) + } + return QColor(); +} + +QColor Config::templateHighlightedBaseColor(int type_) { + switch(type_) { + ALL_GET(highlightedBaseColor) + } + return QColor(); +} + +QColor Config::templateHighlightedTextColor(int type_) { + switch(type_) { + ALL_GET(highlightedTextColor) + } + return QColor(); +} + +void Config::setTemplateName(int type_, const QString& name_) { + switch(type_) { + ALL_SET(setTemplate,name_) + } +} + +void Config::setTemplateFont(int type_, const QFont& font_) { + switch(type_) { + ALL_SET(setFont,font_) + } +} + +void Config::setTemplateBaseColor(int type_, const QColor& color_) { + switch(type_) { + ALL_SET(setBaseColor,color_) + } +} + +void Config::setTemplateTextColor(int type_, const QColor& color_) { + switch(type_) { + ALL_SET(setTextColor,color_) + } +} + +void Config::setTemplateHighlightedBaseColor(int type_, const QColor& color_) { + switch(type_) { + ALL_SET(setHighlightedBaseColor,color_) + } +} + +void Config::setTemplateHighlightedTextColor(int type_, const QColor& color_) { + switch(type_) { + ALL_SET(setHighlightedTextColor,color_) + } +} + +#undef COLL +#undef CLASS +#undef P1 +#undef P2 +#undef CASE1 +#undef CASE2 +#undef GET +#undef SET +#undef ALL_GET +#undef ALL_SET |