2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011 Philipp Spitzer, gregor herrmann
5 * This file is part of ConfClerk.
7 * ConfClerk is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the Free
9 * Software Foundation, either version 2 of the License, or (at your option)
12 * ConfClerk is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * ConfClerk. If not, see <http://www.gnu.org/licenses/>.
20 #include "tabcontainer.h"
23 #include <QMessageBox>
29 #include "eventdialog.h"
30 #include "mapwindow.h"
32 #include "errormessage.h"
34 #include "conflictsdialog.h"
36 TabContainer::TabContainer(QWidget *aParent)
41 treeView->setHeaderHidden(true);
42 treeView->setRootIsDecorated(false);
43 treeView->setIndentation(0);
44 treeView->setAnimated(true);
45 treeView->setModel(new EventModel());
46 treeView->setItemDelegate(new Delegate(treeView));
48 connect(dayNavigator, SIGNAL(dateChanged(const QDate &)), SLOT(updateTreeView(const QDate &)));
50 connect(treeView, SIGNAL(eventHasChanged(int,bool)), SIGNAL(eventHasChanged(int,bool)));
51 connect(treeView, SIGNAL(clicked(const QModelIndex &)), SLOT(itemClicked(const QModelIndex &)));
52 connect(treeView, SIGNAL(requestForMap(const QModelIndex &)), SLOT(displayMap(const QModelIndex &)));
53 connect(treeView, SIGNAL(requestForConflicts(const QModelIndex &)), SLOT(displayConflicts(const QModelIndex &)));
55 // day navigator is hidden by default
59 void TabContainer::updateTreeView(const QDate &aDate)
61 int active_id = Conference::activeConference();
64 loadEvents(aDate, active_id);
66 static_cast<EventModel*>(treeView->model())->clearModel();
70 void TabContainer::itemClicked(const QModelIndex &aIndex)
72 // have to handle only events, not time-groups
73 if(!aIndex.parent().isValid()) // time-group
76 EventDialog dialog(static_cast<Event*>(aIndex.internalPointer())->id(),this);
78 dialog.setFixedWidth(static_cast<QWidget*>(parent())->width());
80 connect(&dialog, SIGNAL(eventHasChanged(int,bool)), this, SIGNAL(eventHasChanged(int,bool)));
82 disconnect(&dialog, SIGNAL(eventHasChanged(int,bool)), this, SIGNAL(eventHasChanged(int,bool)));
85 void TabContainer::displayMap(const QModelIndex &aIndex)
87 Event *event = static_cast<Event*>(aIndex.internalPointer());
89 QVariant mapPathV = event->room()->map();
91 if (!mapPathV.isValid()) {
92 error_message("No map for this room");
95 mapPath = mapPathV.toString();
96 if (!QFile::exists(mapPath)) {
97 error_message("Map for this room not found: " + mapPath);
102 QPixmap map(mapPath);
103 MapWindow window(map, event->room()->name(),this);
107 void TabContainer::displayConflicts(const QModelIndex &aIndex)
109 ConflictsDialog dialog(static_cast<Event*>(aIndex.internalPointer())->id(),this);
111 dialog.setFixedWidth(static_cast<QWidget*>(parent())->width());
113 connect(&dialog, SIGNAL(eventHasChanged(int,bool)), this, SIGNAL(eventHasChanged(int,bool)));
115 disconnect(&dialog, SIGNAL(eventHasChanged(int,bool)), this, SIGNAL(eventHasChanged(int,bool)));
118 void TabContainer::updateTreeViewModel(int aEventId, bool aReloadModel)
122 // requires special handling
123 // eg. in case of favourities - some favourities may have changed
124 // and so we need to reload them
125 int confId = Conference::activeConference();
126 QDate startDate = Conference::getById(confId).start();
127 QDate endDate = Conference::getById(confId).end();
128 dayNavigator->setDates(startDate, endDate);
129 updateTreeView( Conference::getById(confId).start() );
133 // just update event in the question
134 static_cast<EventModel*>(treeView->model())->updateModel(aEventId);
138 void TabContainer::setDates(const QDate &aStart, const QDate &aEnd)
140 dayNavigator->setDates(aStart, aEnd);
143 void TabContainer::clearModel()
145 static_cast<EventModel*>(treeView->model())->clearModel();