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.
tellico/src/collections/winecollection.cpp

121 lines
4.5 KiB

/***************************************************************************
copyright : (C) 2003-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 "winecollection.h"
#include <tdelocale.h>
namespace {
static const char* wine_general = I18N_NOOP("General");
static const char* wine_personal = I18N_NOOP("Personal");
}
using Tellico::Data::WineCollection;
WineCollection::WineCollection(bool addFields_, const TQString& title_ /*=null*/)
: Collection(title_.isEmpty() ? i18n("My Wines") : title_) {
if(addFields_) {
addFields(defaultFields());
}
setDefaultGroupField(TQString::fromLatin1("type"));
}
Tellico::Data::FieldVec WineCollection::defaultFields() {
FieldVec list;
FieldPtr field;
field = new Field(TQString::fromLatin1("title"), i18n("Title"), Field::Dependent);
field->setCategory(i18n(wine_general));
field->setDescription(TQString::fromLatin1("%{vintage} %{producer} %{varietal}"));
field->setFlags(Field::NoDelete);
list.append(field);
field = new Field(TQString::fromLatin1("producer"), i18n("Producer"));
field->setCategory(i18n(wine_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
field->setFormatFlag(Field::FormatPlain);
list.append(field);
field = new Field(TQString::fromLatin1("appellation"), i18n("Appellation"));
field->setCategory(i18n(wine_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
field->setFormatFlag(Field::FormatPlain);
list.append(field);
field = new Field(TQString::fromLatin1("varietal"), i18n("Varietal"));
field->setCategory(i18n(wine_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
field->setFormatFlag(Field::FormatPlain);
list.append(field);
field = new Field(TQString::fromLatin1("vintage"), i18n("Vintage"), Field::Number);
field->setCategory(i18n(wine_general));
field->setFlags(Field::AllowGrouped);
list.append(field);
TQStringList type;
type << i18n("Red Wine") << i18n("White Wine") << i18n("Sparkling Wine");
field = new Field(TQString::fromLatin1("type"), i18n("Type"), type);
field->setCategory(i18n(wine_general));
field->setFlags(Field::AllowGrouped);
list.append(field);
field = new Field(TQString::fromLatin1("country"), i18n("Country"));
field->setCategory(i18n(wine_general));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
field->setFormatFlag(Field::FormatPlain);
list.append(field);
field = new Field(TQString::fromLatin1("pur_date"), i18n("Purchase Date"));
field->setCategory(i18n(wine_personal));
field->setFormatFlag(Field::FormatDate);
list.append(field);
field = new Field(TQString::fromLatin1("pur_price"), i18n("Purchase Price"));
field->setCategory(i18n(wine_personal));
list.append(field);
field = new Field(TQString::fromLatin1("location"), i18n("Location"));
field->setCategory(i18n(wine_personal));
field->setFlags(Field::AllowCompletion | Field::AllowGrouped);
list.append(field);
field = new Field(TQString::fromLatin1("quantity"), i18n("Quantity"), Field::Number);
field->setCategory(i18n(wine_personal));
list.append(field);
field = new Field(TQString::fromLatin1("drink-by"), i18n("Drink By"), Field::Number);
field->setCategory(i18n(wine_personal));
field->setFlags(Field::AllowGrouped);
list.append(field);
field = new Field(TQString::fromLatin1("rating"), i18n("Rating"), Field::Rating);
field->setCategory(i18n(wine_personal));
field->setFlags(Field::AllowGrouped);
list.append(field);
field = new Field(TQString::fromLatin1("gift"), i18n("Gift"), Field::Bool);
field->setCategory(i18n(wine_personal));
list.append(field);
field = new Field(TQString::fromLatin1("label"), i18n("Label Image"), Field::Image);
list.append(field);
field = new Field(TQString::fromLatin1("comments"), i18n("Comments"), Field::Para);
list.append(field);
return list;
}
#include "winecollection.moc"