X-Git-Url: https://git.toastfreeware.priv.at/toast/confclerk.git/blobdiff_plain/6df32f20316aab78c979f50ff17798cc6dd7e9e0..080dc7d603d45ba0662aa731418993ddd45b5fe8:/src/mvc/eventmodel.h diff --git a/src/mvc/eventmodel.h b/src/mvc/eventmodel.h index e8642fe..1439edb 100644 --- a/src/mvc/eventmodel.h +++ b/src/mvc/eventmodel.h @@ -1,5 +1,6 @@ /* * Copyright (C) 2010 Ixonos Plc. + * Copyright (C) 2011-2024 Philipp Spitzer, gregor herrmann, Stefan Stahl * * This file is part of ConfClerk. * @@ -38,7 +39,6 @@ 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(); @@ -57,6 +57,8 @@ private: QString mTitle; int mFirstEventIndex; int mChildCount; + + void setTitle(const QList& mEvents); }; private: @@ -71,7 +73,7 @@ public slots: private: QList mEvents; QList mGroups; - QHash mParents; + QHash mParents; ///< eventId, groupId }; #endif // EVENTMODEL_H