2 * Copyright (C) 2010 Ixonos Plc.
3 * Copyright (C) 2011-2013 Philipp Spitzer, gregor herrmann, Stefan Stahl
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 "eventdialog.h"
21 #include "conference.h"
27 #include "appsettings.h"
30 EventDialog::EventDialog(int conferenceId, int eventId, QWidget *parent): QDialog(parent), mConferenceId(conferenceId), mEventId(eventId) {
37 Event event = Event::getById(mEventId, mConferenceId);
41 info.append(QString("<h1>%1</h1>\n").arg(event.title()));
44 info += QString("<h2>%1</h2>\n").arg(tr("Persons"));
45 info += QString("<p>%1</p>\n").arg(event.persons().join(", "));
48 info += QString("<h2>%1</h2>\n").arg(tr("Abstract"));
49 info += QString("<p>%1</p>\n").arg(event.abstract());
52 info += QString("<h2>%1</h2>\n").arg(tr("Description"));
53 info += QString("<p>%1</p>\n").arg(event.description());
56 info += QString("<h2>%1</h2>\n<ul>\n").arg(tr("Links"));
57 QMapIterator<QString, QString> i(event.links());
60 QString url(i.value());
61 QString name(i.key());
62 if (url.isEmpty() || url == "http://") continue;
63 if (name.isEmpty()) name = url;
64 info += QString("<li><a href=\"%1\">%2</a></li>\n").arg(url, name);
66 info += QString("</ul>\n");
67 eventInfoTextBrowser->setHtml(info);
69 // make sure colours are the same as usual
70 eventInfoTextBrowser->setPalette(qApp->palette());
71 // reduce font size, on maemo
73 QFont font = eventInfoTextBrowser->font();
74 font.setPointSizeF(font.pointSizeF()*0.8);
75 eventInfoTextBrowser->setFont(font);
78 connect(favouriteButton, SIGNAL(clicked()), SLOT(favouriteClicked()));
79 connect(alarmButton, SIGNAL(clicked()), SLOT(alarmClicked()));
81 if(event.isFavourite())
83 favouriteButton->setIcon(QIcon(":/icons/favourite-on.png"));
88 alarmButton->setIcon(QIcon(":/icons/alarm-on.png"));
92 void EventDialog::favouriteClicked()
94 Event event = Event::getById(mEventId, mConferenceId);
96 QList<Event> conflicts = Event::conflictEvents(event.id(), mConferenceId);
97 if(event.isFavourite())
99 event.setFavourite(false);
100 favouriteButton->setIcon(QIcon(":/icons/favourite-off.png"));
104 event.setFavourite(true);
105 favouriteButton->setIcon(QIcon(":/icons/favourite-on.png"));
107 event.update("favourite");
109 if(event.isFavourite())
111 // event has became 'favourite' and so 'conflicts' list may have changed
112 conflicts = Event::conflictEvents(event.id(), mConferenceId);
115 // have to emit 'eventChanged' signal on all events in conflict
116 for(int i=0; i<conflicts.count(); i++)
117 emit eventChanged(conflicts[i].id(), false);
119 // since the Favourite icon has changed, update TreeViews accordingly
120 // all TreeViews have to listen on this signal
121 emit eventChanged(event.id(), true);
124 void EventDialog::alarmClicked()
126 Event event = Event::getById(mEventId, mConferenceId);
130 event.setHasAlarm(false); // update DB
131 alarmButton->setIcon(QIcon(":/icons/alarm-off.png"));
133 // remove alarm from the 'alarmd' alarms list
135 alarm.deleteAlarm(event.conferenceId(), event.id());
136 // TODO: test if removing was successfull
141 event.setHasAlarm(true);
142 alarmButton->setIcon(QIcon(":/icons/alarm-on.png"));
144 // add alarm to the 'alarmd'
146 alarm.addAlarm(event.conferenceId(), event.id(), event.title(), event.start().addSecs(-AppSettings::preEventAlarmSec()));
149 event.update("alarm");
150 // since the Alarm icon has changed, update TreeView accordingly
151 // all TreeViews have to listen on this signal
152 emit eventChanged(event.id(), false);