]> ToastFreeware Gitweb - toast/confclerk.git/blob - src/gui/eventdialog.cpp
28e59143533cd4e14583ba5a9ff29b10d72923e0
[toast/confclerk.git] / src / gui / eventdialog.cpp
1 /*
2  * Copyright (C) 2010 Ixonos Plc.
3  * Copyright (C) 2011-2013 Philipp Spitzer, gregor herrmann, Stefan Stahl
4  *
5  * This file is part of ConfClerk.
6  *
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)
10  * any later version.
11  *
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
15  * more details.
16  *
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/>.
19  */
20 #include "eventdialog.h"
21 #include "conference.h"
22
23 #include <QScrollBar>
24
25 #ifdef MAEMO
26 #include "alarm.h"
27 #include "appsettings.h"
28 #endif
29
30 EventDialog::EventDialog(int conferenceId, int eventId, QWidget *parent): QDialog(parent), mConferenceId(conferenceId), mEventId(eventId) {
31     setupUi(this);
32
33 #ifdef MAEMO
34     showFullScreen();
35 #endif
36
37     Event event = Event::getById(mEventId, mConferenceId);
38
39     QString info;
40     // title
41     info.append(QString("<h1>%1</h1>\n").arg(event.title()));
42
43     // persons
44     info += QString("<h2>%1</h2>\n").arg(tr("Persons"));
45     info += QString("<p>%1</p>\n").arg(event.persons().join(", "));
46
47     // abstract
48     info += QString("<h2>%1</h2>\n").arg(tr("Abstract"));
49     info += QString("<p>%1</p>\n").arg(event.abstract());
50
51     // description
52     info += QString("<h2>%1</h2>\n").arg(tr("Description"));
53     info += QString("<p>%1</p>\n").arg(event.description());
54
55     // links
56     info += QString("<h2>%1</h2>\n<ul>\n").arg(tr("Links"));
57     QMapIterator<QString, QString> i(event.links());
58     while (i.hasNext()) {
59         i.next();
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);
65     }
66     info += QString("</ul>\n");
67     eventInfoTextBrowser->setHtml(info);
68
69     connect(favouriteButton, SIGNAL(clicked()), SLOT(favouriteClicked()));
70     connect(alarmButton, SIGNAL(clicked()), SLOT(alarmClicked()));
71
72     if(event.isFavourite())
73     {
74         favouriteButton->setIcon(QIcon(":/icons/favourite-on.png"));
75     }
76
77     if(event.hasAlarm())
78     {
79         alarmButton->setIcon(QIcon(":/icons/alarm-on.png"));
80     }
81 }
82
83 void EventDialog::favouriteClicked()
84 {
85     Event event = Event::getById(mEventId, mConferenceId);
86
87     QList<Event> conflicts = Event::conflictEvents(event.id(), mConferenceId);
88     if(event.isFavourite())
89     {
90         event.setFavourite(false);
91         favouriteButton->setIcon(QIcon(":/icons/favourite-off.png"));
92     }
93     else
94     {
95         event.setFavourite(true);
96         favouriteButton->setIcon(QIcon(":/icons/favourite-on.png"));
97     }
98     event.update("favourite");
99
100     if(event.isFavourite())
101     {
102         // event has became 'favourite' and so 'conflicts' list may have changed
103         conflicts = Event::conflictEvents(event.id(), mConferenceId);
104     }
105
106     // have to emit 'eventChanged' signal on all events in conflict
107     for(int i=0; i<conflicts.count(); i++)
108         emit eventChanged(conflicts[i].id(), false);
109
110     // since the Favourite icon has changed, update TreeViews accordingly
111     // all TreeViews have to listen on this signal
112     emit eventChanged(event.id(), true);
113 }
114
115 void EventDialog::alarmClicked()
116 {
117     Event event = Event::getById(mEventId, mConferenceId);
118
119     if(event.hasAlarm())
120     {
121         event.setHasAlarm(false); // update DB
122         alarmButton->setIcon(QIcon(":/icons/alarm-off.png"));
123 #ifdef MAEMO
124         // remove alarm from the 'alarmd' alarms list
125         Alarm alarm;
126         alarm.deleteAlarm(event.conferenceId(), event.id());
127         // TODO: test if removing was successfull
128 #endif /* MAEMO */
129     }
130     else
131     {
132         event.setHasAlarm(true);
133         alarmButton->setIcon(QIcon(":/icons/alarm-on.png"));
134 #ifdef MAEMO
135         // add alarm to the 'alarmd'
136         Alarm alarm;
137         alarm.addAlarm(event.conferenceId(), event.id(), event.title(), event.start().addSecs(-AppSettings::preEventAlarmSec()));
138 #endif /* MAEMO */
139     }
140     event.update("alarm");
141     // since the Alarm icon has changed, update TreeView accordingly
142     // all TreeViews have to listen on this signal
143     emit eventChanged(event.id(), false);
144 }
145