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.
172 lines
4.0 KiB
172 lines
4.0 KiB
/***************************************************************************
|
|
copyright : (C) 2006 by Robby Stephenson
|
|
email : robby@periapsis.org
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 TQRegExp commaSplit = TQRegExp(TQString::tqfromLatin1("\\s*,\\s*"));
|
|
}
|
|
|
|
using Tellico::Config;
|
|
|
|
void Config::deleteAndReset() {
|
|
delete mSelf;
|
|
mSelf = 0;
|
|
}
|
|
|
|
TQStringList Config::noCapitalizationList() {
|
|
return TQStringList::split(commaSplit, Config::noCapitalizationString());
|
|
}
|
|
|
|
TQStringList Config::articleList() {
|
|
return TQStringList::split(commaSplit, Config::articlesString());
|
|
}
|
|
|
|
TQStringList Config::nameSuffixList() {
|
|
return TQStringList::split(commaSplit, Config::nameSuffixesString());
|
|
}
|
|
|
|
TQStringList Config::surnamePrefixList() {
|
|
return TQStringList::split(commaSplit, Config::surnamePrefixesString());
|
|
}
|
|
|
|
|
|
TQString Config::templateName(int type_) {
|
|
switch(type_) {
|
|
ALL_GET(template);
|
|
}
|
|
return TQString();
|
|
}
|
|
|
|
TQFont Config::templateFont(int type_) {
|
|
switch(type_) {
|
|
ALL_GET(font);
|
|
}
|
|
return TQFont();
|
|
}
|
|
|
|
TQColor Config::templateBaseColor(int type_) {
|
|
switch(type_) {
|
|
ALL_GET(baseColor)
|
|
}
|
|
return TQColor();
|
|
}
|
|
|
|
TQColor Config::templateTextColor(int type_) {
|
|
switch(type_) {
|
|
ALL_GET(textColor)
|
|
}
|
|
return TQColor();
|
|
}
|
|
|
|
TQColor Config::templateHighlightedBaseColor(int type_) {
|
|
switch(type_) {
|
|
ALL_GET(highlightedBaseColor)
|
|
}
|
|
return TQColor();
|
|
}
|
|
|
|
TQColor Config::templateHighlightedTextColor(int type_) {
|
|
switch(type_) {
|
|
ALL_GET(highlightedTextColor)
|
|
}
|
|
return TQColor();
|
|
}
|
|
|
|
void Config::setTemplateName(int type_, const TQString& name_) {
|
|
switch(type_) {
|
|
ALL_SET(setTemplate,name_)
|
|
}
|
|
}
|
|
|
|
void Config::setTemplateFont(int type_, const TQFont& font_) {
|
|
switch(type_) {
|
|
ALL_SET(setFont,font_)
|
|
}
|
|
}
|
|
|
|
void Config::setTemplateBaseColor(int type_, const TQColor& color_) {
|
|
switch(type_) {
|
|
ALL_SET(setBaseColor,color_)
|
|
}
|
|
}
|
|
|
|
void Config::setTemplateTextColor(int type_, const TQColor& color_) {
|
|
switch(type_) {
|
|
ALL_SET(setTextColor,color_)
|
|
}
|
|
}
|
|
|
|
void Config::setTemplateHighlightedBaseColor(int type_, const TQColor& color_) {
|
|
switch(type_) {
|
|
ALL_SET(setHighlightedBaseColor,color_)
|
|
}
|
|
}
|
|
|
|
void Config::setTemplateHighlightedTextColor(int type_, const TQColor& 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
|