summaryrefslogtreecommitdiffstats
path: root/src/collections/gamecollection.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-03-01 19:17:32 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-03-01 19:17:32 +0000
commite38d2351b83fa65c66ccde443777647ef5cb6cff (patch)
tree1897fc20e9f73a81c520a5b9f76f8ed042124883 /src/collections/gamecollection.cpp
downloadtellico-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/collections/gamecollection.cpp')
-rw-r--r--src/collections/gamecollection.cpp126
1 files changed, 126 insertions, 0 deletions
diff --git a/src/collections/gamecollection.cpp b/src/collections/gamecollection.cpp
new file mode 100644
index 0000000..b93176f
--- /dev/null
+++ b/src/collections/gamecollection.cpp
@@ -0,0 +1,126 @@
+/***************************************************************************
+ copyright : (C) 2005-2006 by Robby Stephenson
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * 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 "gamecollection.h"
+
+#include <klocale.h>
+
+namespace {
+ static const char* game_general = I18N_NOOP("General");
+ static const char* game_personal = I18N_NOOP("Personal");
+}
+
+using Tellico::Data::GameCollection;
+
+GameCollection::GameCollection(bool addFields_, const QString& title_ /*=null*/)
+ : Collection(title_.isEmpty() ? i18n("My Games") : title_) {
+ if(addFields_) {
+ addFields(defaultFields());
+ }
+ setDefaultGroupField(QString::fromLatin1("platform"));
+}
+
+Tellico::Data::FieldVec GameCollection::defaultFields() {
+ FieldVec list;
+ FieldPtr field;
+
+ field = new Field(QString::fromLatin1("title"), i18n("Title"));
+ field->setCategory(i18n(game_general));
+ field->setFlags(Field::NoDelete);
+ field->setFormatFlag(Field::FormatTitle);
+ list.append(field);
+
+ QStringList platform;
+ platform << i18n("Xbox 360") << i18n("Xbox")
+ << i18n("PlayStation3") << i18n("PlayStation2") << i18n("PlayStation") << i18n("PlayStation Portable", "PSP")
+ << i18n("Nintendo Wii") << i18n("Nintendo DS") << i18n("GameCube") << i18n("Dreamcast")
+ << i18n("Game Boy Advance") << i18n("Game Boy Color") << i18n("Game Boy")
+ << i18n("Windows Platform", "Windows") << i18n("Mac OS") << i18n("Linux");
+ field = new Field(QString::fromLatin1("platform"), i18n("Platform"), platform);
+ field->setCategory(i18n(game_general));
+ field->setFlags(Field::AllowGrouped);
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("genre"), i18n("Genre"));
+ field->setCategory(i18n(game_general));
+ field->setFlags(Field::AllowCompletion | Field::AllowMultiple | Field::AllowGrouped);
+ field->setFormatFlag(Field::FormatPlain);
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("year"), i18n("Release Year"), Field::Number);
+ field->setCategory(i18n(game_general));
+ field->setFlags(Field::AllowGrouped);
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("publisher"), i18n("Games - Publisher", "Publisher"));
+ field->setCategory(i18n(game_general));
+ field->setFlags(Field::AllowCompletion | Field::AllowMultiple | Field::AllowGrouped);
+ field->setFormatFlag(Field::FormatPlain);
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("developer"), i18n("Developer"));
+ field->setCategory(i18n(game_general));
+ field->setFlags(Field::AllowCompletion | Field::AllowMultiple | Field::AllowGrouped);
+ field->setFormatFlag(Field::FormatPlain);
+ list.append(field);
+
+ QStringList cert = QStringList::split(QRegExp(QString::fromLatin1("\\s*,\\s*")),
+ i18n("Video game ratings - "
+ "Unrated, Adults Only, Mature, Teen, Everyone, Early Childhood, Pending",
+ "Unrated, Adults Only, Mature, Teen, Everyone, Early Childhood, Pending"),
+ false);
+ field = new Field(QString::fromLatin1("certification"), i18n("ESRB Rating"), cert);
+ field->setCategory(i18n(game_general));
+ field->setFlags(Field::AllowGrouped);
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("description"), i18n("Description"), Field::Para);
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("rating"), i18n("Personal Rating"), Field::Rating);
+ field->setCategory(i18n(game_personal));
+ field->setFlags(Field::AllowGrouped);
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("completed"), i18n("Completed"), Field::Bool);
+ field->setCategory(i18n(game_personal));
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("pur_date"), i18n("Purchase Date"));
+ field->setCategory(i18n(game_personal));
+ field->setFormatFlag(Field::FormatDate);
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("gift"), i18n("Gift"), Field::Bool);
+ field->setCategory(i18n(game_personal));
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("pur_price"), i18n("Purchase Price"));
+ field->setCategory(i18n(game_personal));
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("loaned"), i18n("Loaned"), Field::Bool);
+ field->setCategory(i18n(game_personal));
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("cover"), i18n("Cover"), Field::Image);
+ list.append(field);
+
+ field = new Field(QString::fromLatin1("comments"), i18n("Comments"), Field::Para);
+ field->setCategory(i18n(game_personal));
+ list.append(field);
+
+ return list;
+}
+
+#include "gamecollection.moc"