2 * Copyright (C) 2010 Ixonos Plc.
4 * This file is part of fosdem-schedule.
6 * fosdem-schedule is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation, either version 2 of the License, or (at your option)
11 * fosdem-schedule is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * fosdem-schedule. If not, see <http://www.gnu.org/licenses/>.
24 #include <QStringList>
26 #include <ormrecord.h>
28 class Conference : public OrmRecord<Conference>
31 static QSqlRecord const sColumns;
32 static QString const sTableName;
35 static Conference getById(int id);
36 static QList<Conference> getAll();
37 static int activeConference();
40 int id() const { return value("id").toInt(); }
41 QString title() const { return value("title").toString(); }
42 QString subtitle() const { return value("subtitle").toString(); }
43 QString venue() const { return value("venue").toString(); }
44 QString city() const { return value("city").toString(); }
45 QDate start() const { return value("start").toDate(); }
46 QDate end() const { return value("end").toDate(); }
47 int days() const { return value("days").toInt(); }
48 int dayChange() const { return value("day_change").toInt(); } // in seconds from 00:00
49 int timeslotDuration() const { return value("timeslot_duration").toInt(); } // in seconds
50 bool isActive() const { return value("active").toBool(); }
51 QString getUrl() const
53 QVariant val = value("url");
54 qDebug() << __PRETTY_FUNCTION__ << val;
56 return val.toString();
62 void setId(int id) { setValue("id", id); }
63 void setTitle(const QString& title) { setValue("title", title); }
64 void setSubtitle(const QString& subtitle) { setValue("subtitle", subtitle); }
65 void setVenue(const QString& venue) { setValue("venue", venue); }
66 void setCity(const QString& city) { setValue("city", city); }
67 void setStart(const QDate& start) { setValue("start", start); }
68 void setEnd(const QDate& end) { setValue("end", end); }
69 void setDays(int days) { setValue("days", days); }
70 void setDayChange(int dayChange) { setValue("day_change", dayChange); }
71 void setTimeslotDuration(int timeslotDuration) { setValue("timeslot_duration", timeslotDuration); }
72 void setActive(bool active) { setValue("active", (int)((active))); }
73 void setUrl(const QString& url) { setValue("url", url.isNull() ? QVariant() : url); }
76 #endif /* CONFERENCE_H */