X-Git-Url: https://git.toastfreeware.priv.at/toast/confclerk.git/blobdiff_plain/ca90cb156a47f3e9545a53bb6fbe669e9b0ce8d7..080dc7d603d45ba0662aa731418993ddd45b5fe8:/src/mvc/eventmodel.h
diff --git a/src/mvc/eventmodel.h b/src/mvc/eventmodel.h
index 9e90ec4..1439edb 100644
--- a/src/mvc/eventmodel.h
+++ b/src/mvc/eventmodel.h
@@ -1,20 +1,21 @@
/*
* Copyright (C) 2010 Ixonos Plc.
+ * Copyright (C) 2011-2024 Philipp Spitzer, gregor herrmann, Stefan Stahl
*
- * This file is part of fosdem-schedule.
+ * This file is part of ConfClerk.
*
- * fosdem-schedule is free software: you can redistribute it and/or modify it
+ * ConfClerk is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 2 of the License, or (at your option)
* any later version.
*
- * fosdem-schedule is distributed in the hope that it will be useful, but
+ * ConfClerk is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
- * fosdem-schedule. If not, see .
+ * ConfClerk. If not, see .
*/
#ifndef EVENTMODEL_H
#define EVENTMODEL_H
@@ -26,7 +27,7 @@
class EventModel : public QAbstractItemModel
{
public:
- static const QString COMMA_SEPARATOR;
+ static const QString COMMA_SEPARATOR; // ", "
public:
EventModel();
QVariant data(const QModelIndex& index, int role) const;
@@ -38,9 +39,9 @@ public:
void loadFavEvents(const QDate &aDate, int aConferenceId); // loads Favourite events from the DB
void loadEventsByTrack(const QDate &aDate, int aConferenceId); // loads Events sorted by Track id and Event start from the DB
int loadSearchResultEvents(const QDate &aDate, int aConferenceId);
- void loadNowEvents(int aConferenceId); // loads Now events from the DB
void loadEventsByRoom(const QDate &aDate, int aConferenceId);
void loadConflictEvents(int aEventId, int aConferenceId); // loads events in conflict
+ void clearModel();
private:
struct Group
@@ -48,21 +49,22 @@ private:
Group(const QString & title,
int firstEventIndex) :
- mTitle(title),
- mFirstEventIndex(firstEventIndex),
- mChildCount(0)
+ mTitle(title), // e.g. "16:00 - 17:30"
+ mFirstEventIndex(firstEventIndex), // first index within mEvents
+ mChildCount(0) // number of events in mEvents
{}
QString mTitle;
int mFirstEventIndex;
int mChildCount;
+
+ void setTitle(const QList& mEvents);
};
private:
void createTimeGroups();
void createTrackGroups();
void createTrackGroupsNew();
- void clearModel();
void createRoomGroups();
public slots:
@@ -71,7 +73,7 @@ public slots:
private:
QList mEvents;
QList mGroups;
- QHash mParents;
+ QHash mParents; ///< eventId, groupId
};
#endif // EVENTMODEL_H