/*
* Copyright (C) 2010 Ixonos Plc.
+ * Copyright (C) 2011 Philipp Spitzer, gregor herrmann
*
* This file is part of ConfClerk.
*
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();
QString mTitle;
int mFirstEventIndex;
int mChildCount;
+
+ void setTitle(const QList<Event>& mEvents);
};
private:
private:
QList<Event> mEvents;
QList<Group> mGroups;
- QHash<int, int> mParents;
+ QHash<int, int> mParents; ///< eventId, groupId
};
#endif // EVENTMODEL_H