244041ed979d21d29876a56fbdbb60d13f706db4
[situare] / src / ui / userinfo.cpp
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Jukka Saastamoinen - jukka.saastamoinen@ixonos.com
6        Jussi Laitinen - jussi.laitinen@ixonos.com
7        Katri Kaikkonen - katri.kaikkonen@ixonos.com
8        Henri Lampela - henri.lampela@ixonos.com
9        Ville Tiensuu - ville.tiensuu@ixonos.com
10
11    Situare is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License
13    version 2 as published by the Free Software Foundation.
14
15    Situare is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with Situare; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
23    USA.
24 */
25
26 #include <QFormLayout>
27 #include <QLabel>
28 #include <QMouseEvent>
29 #include <QPainter>
30 #include <QSettings>
31 #include <QVBoxLayout>
32
33 #include "common.h"
34 #include "imagebutton.h"
35 #include "user/user.h"
36
37 #include "userinfo.h"
38
39 const int BACKGROUND_BOTTOM_HEIGHT = 15;
40 const int BACKGROUND_TOP_HEIGHT = 20;
41 const int BACKGROUND_WIDTH = 368;
42 const int ICON_HEIGHT = 24;
43 const int ICON_WIDTH = 24;
44 const int LABEL_MAX_WIDTH = 300;
45 const int MARGIN = 5;
46
47 UserInfo::UserInfo(QWidget *parent)
48     : QWidget(parent),
49       m_expanded(false),
50       m_updateLocation(0)
51 {
52     qDebug() << __PRETTY_FUNCTION__;
53
54     QVBoxLayout *verticalLayout = new QVBoxLayout(this);
55     verticalLayout->setContentsMargins(MARGIN * 2, 0, MARGIN * 2, MARGIN * 2);
56     verticalLayout->setSpacing(0);
57     setLayout(verticalLayout);
58
59     QFormLayout *infoLayout = new QFormLayout();
60     infoLayout->setMargin(0);
61     infoLayout->setSpacing(0);
62
63     QHBoxLayout *buttonLayout = new QHBoxLayout();
64     buttonLayout->setMargin(0);
65     buttonLayout->setSpacing(0);
66
67     QLabel *envelopeLabel = new QLabel();
68     envelopeLabel->setPixmap(QPixmap(":/res/images/envelope.png"));
69     envelopeLabel->setContentsMargins(0, 0, MARGIN, 0);
70     envelopeLabel->setFixedSize(ICON_WIDTH + MARGIN, ICON_HEIGHT);
71     QLabel *compassLabel = new QLabel();
72     compassLabel->setPixmap(QPixmap(":/res/images/compass.png"));
73     compassLabel->setContentsMargins(0, 0, MARGIN, 0);
74     compassLabel->setFixedSize(ICON_WIDTH + MARGIN, ICON_HEIGHT);
75     QLabel *clockLabel = new QLabel();
76     clockLabel->setPixmap(QPixmap(":/res/images/clock.png"));
77     clockLabel->setContentsMargins(0, 0, MARGIN, 0);
78     clockLabel->setFixedSize(ICON_WIDTH + MARGIN, ICON_HEIGHT);
79
80     m_findButton = new ImageButton();
81
82     m_nameLabel = new QLabel();
83     m_nameLabel->setWordWrap(true);
84
85     m_statusTextLabel = new QLabel();
86     m_statusTextLabel->setWordWrap(true);
87     m_locationLabel = new QLabel();
88     m_locationLabel->setWordWrap(true);
89     m_updatedLabel = new QLabel();
90     m_updatedLabel->setWordWrap(true);
91
92     ImageButton *updateFriendsButton = new ImageButton(":/res/images/refresh.png",
93                                                        ":/res/images/refresh_s.png",
94                                                        "", this);
95     ImageButton *updateStatusMessageButton = new ImageButton(":/res/images/send_position.png",
96                                                              ":/res/images/send_position_s.png",
97                                                              "", this);
98
99     buttonLayout->addWidget(updateFriendsButton);
100     buttonLayout->addWidget(updateStatusMessageButton);
101
102     infoLayout->addRow(envelopeLabel, m_statusTextLabel);
103     infoLayout->addRow(compassLabel, m_locationLabel);
104     infoLayout->addRow(clockLabel, m_updatedLabel);
105
106     verticalLayout->addWidget(m_findButton, 0, Qt::AlignHCenter);
107     verticalLayout->addWidget(m_nameLabel, 0, Qt::AlignHCenter);
108     verticalLayout->addLayout(infoLayout);
109     verticalLayout->addLayout(buttonLayout);
110
111     connect(updateStatusMessageButton,SIGNAL(clicked()),
112             this,SLOT(messageUpdate()));
113
114     connect(updateFriendsButton,SIGNAL(clicked()),
115             this, SIGNAL(refreshUserData()));
116
117     connect(m_findButton, SIGNAL(clicked()),
118             this, SLOT(findButtonClicked()));
119
120     setFixedWidth(BACKGROUND_WIDTH);
121
122     this->setFont(NOKIA_FONT_SMALL);
123     m_nameLabel->setFont(NOKIA_FONT_NORMAL);
124     QPalette itemPalette = palette();
125     itemPalette.setColor(QPalette::Foreground, COLOR_GRAY);
126     setPalette(itemPalette);
127     QPalette namePalette = m_nameLabel->palette();
128     namePalette.setColor(QPalette::Foreground, Qt::white);
129     m_nameLabel->setPalette(namePalette);
130
131     m_backgroundTopImage.load(":/res/images/list_item_top.png");
132     m_backgroundMiddleImage.load(":/res/images/list_item_middle.png");
133     m_backgroundBottomImage.load(":/res/images/list_item_bottom.png");
134
135     restoreUnsendMessage();
136 }
137
138 UserInfo::~UserInfo()
139 {
140     qDebug() << __PRETTY_FUNCTION__;
141
142     QSettings settings(DIRECTORY_NAME, FILE_NAME);
143
144     if (!m_backupMessage.isEmpty()) {
145         settings.setValue(USER_UNSEND_MESSAGE, m_backupMessage.toAscii());
146         settings.setValue(USER_UNSEND_MESSAGE_PUBLISH, m_backupFacebookPublishPolicity);
147     } else {
148         settings.remove(USER_UNSEND_MESSAGE);
149         settings.remove(USER_UNSEND_MESSAGE_PUBLISH);
150     }
151 }
152
153 void UserInfo::backupUpdateLocationDialogData(const QString &status, bool publish)
154 {
155     qDebug() << __PRETTY_FUNCTION__;
156
157     m_backupMessage = status;
158     m_backupFacebookPublishPolicity = publish;
159 }
160
161 void UserInfo::clearUpdateLocationDialogData()
162 {
163     qDebug() << __PRETTY_FUNCTION__;
164
165     m_backupMessage.clear();
166     m_backupFacebookPublishPolicity = false;
167 }
168
169 void UserInfo::collapse()
170 {
171     qDebug() << __PRETTY_FUNCTION__;
172
173     setExpanded(false);
174 }
175
176 void UserInfo::findButtonClicked()
177 {
178     qDebug() << __PRETTY_FUNCTION__;
179
180     emit findUser(m_coordinates);
181 }
182
183 void UserInfo::messageUpdate()
184 {
185     qDebug() << __PRETTY_FUNCTION__;
186
187     delete m_updateLocation;
188     m_updateLocation = new UpdateLocationDialog(m_backupMessage, m_backupFacebookPublishPolicity,
189                                                 this);
190
191     connect(this, SIGNAL(reverseGeoReady(QString)),
192             m_updateLocation, SLOT(setAddress(QString)));
193
194     connect(m_updateLocation, SIGNAL(statusUpdate(QString, bool)),
195             this, SIGNAL(statusUpdate(QString, bool)));
196
197     connect(m_updateLocation, SIGNAL(statusUpdate(QString, bool)),
198             this, SLOT(backupUpdateLocationDialogData(QString, bool)));
199
200     connect(m_updateLocation, SIGNAL(finished(int)),
201             this, SLOT(updateLocationDialogFinished(int)));
202
203     m_updateLocation->show();
204
205     emit requestReverseGeo();
206 }
207
208 void UserInfo::mousePressEvent(QMouseEvent *event)
209 {
210     qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
211
212     m_mousePosition = event->pos();
213 }
214
215 void UserInfo::mouseReleaseEvent(QMouseEvent *event)
216 {
217     qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
218
219     const int MOUSE_PRESS_AREA_HEIGHT = 20;
220     const int MOUSE_PRESS_AREA_WIDTH = 20;
221
222     if ((abs(m_mousePosition.y() - event->pos().y()) <= MOUSE_PRESS_AREA_WIDTH)
223         && (abs(m_mousePosition.x() - event->pos().x()) <= MOUSE_PRESS_AREA_HEIGHT)) {
224         if (m_expanded) {
225             setExpanded(false);
226             m_expanded = false;
227         }
228         else {
229             setExpanded(true);
230             m_expanded = true;
231         }
232     }
233 }
234
235 void UserInfo::paintEvent(QPaintEvent *event)
236 {
237     qDebug() << __PRETTY_FUNCTION__ << " " << event->rect();
238
239     QPainter painter(this);
240
241     QRect topRect = QRect(0, MARGIN, BACKGROUND_WIDTH, BACKGROUND_TOP_HEIGHT);
242
243     QRect middleRect = QRect(topRect.left(), topRect.bottom() + 1, BACKGROUND_WIDTH,
244                              this->height() - BACKGROUND_TOP_HEIGHT - BACKGROUND_BOTTOM_HEIGHT);
245
246     QRect bottomRect = QRect(topRect.left(), middleRect.bottom() + 1, BACKGROUND_WIDTH,
247                              BACKGROUND_BOTTOM_HEIGHT);
248
249     painter.drawPixmap(topRect, m_backgroundTopImage);
250     painter.drawPixmap(middleRect, m_backgroundMiddleImage);
251     painter.drawPixmap(bottomRect, m_backgroundBottomImage);
252 }
253
254 void UserInfo::restoreUnsendMessage()
255 {
256     qDebug() << __PRETTY_FUNCTION__;
257
258     QSettings settings(DIRECTORY_NAME, FILE_NAME);
259     m_backupMessage = settings.value(USER_UNSEND_MESSAGE, EMPTY).toString();
260     m_backupFacebookPublishPolicity = settings.value(USER_UNSEND_MESSAGE_PUBLISH, false).toBool();
261 }
262
263 void UserInfo::setAddress(const QString &address)
264 {
265     qDebug() << __PRETTY_FUNCTION__;
266
267     m_locationLabel->setText(address);
268 }
269
270 void UserInfo::setCoordinates(const GeoCoordinate &coordinates)
271 {
272     qDebug() << __PRETTY_FUNCTION__;
273
274     m_coordinates = coordinates;
275 }
276
277 void UserInfo::setMessageText(const QString &text)
278 {
279     qDebug() << __PRETTY_FUNCTION__;
280
281     QStringList list;
282     list = text.split(' ');
283
284     for (int i = 0; i < list.count(); i++) {
285         if (fontMetrics().width(list.at(i)) > LABEL_MAX_WIDTH)
286             list.replace(i, splitWord(list.at(i)));
287     }
288
289     m_messageText = list.join(" ");
290
291     setExpanded(false);
292 }
293
294 void UserInfo::setProfileImage(const QPixmap &image)
295 {
296     qDebug() << __PRETTY_FUNCTION__;
297
298     if(!image.isNull())
299         m_findButton->setButtonIcon(image);
300 }
301
302 void UserInfo::setExpanded(bool expanded)
303 {
304     qDebug() << __PRETTY_FUNCTION__;
305
306     if (expanded)
307         m_statusTextLabel->setText(m_messageText);
308     else
309         m_statusTextLabel->setText(shortenText(m_statusTextLabel, m_messageText, LABEL_MAX_WIDTH));
310 }
311
312 void UserInfo::setTime(const QString &time)
313 {
314     qDebug() << __PRETTY_FUNCTION__;
315
316     m_updatedLabel->setText(time);
317 }
318
319 void UserInfo::setUserName(const QString &name)
320 {
321     qDebug() << __PRETTY_FUNCTION__;
322
323     m_userName = name;
324
325     m_nameLabel->setText(shortenText(m_nameLabel, m_userName, LABEL_MAX_WIDTH));
326 }
327
328 QString UserInfo::shortenText(const QLabel *label, const QString &text, int textMaxWidth)
329 {
330     qDebug() << __PRETTY_FUNCTION__;
331
332     QFontMetrics labelMetrics = label->fontMetrics();
333     QString copiedText = text;
334     int index = copiedText.indexOf('\n');
335
336     if (index >= 0) {
337         copiedText.truncate(index);
338         copiedText.append("...");
339     }
340
341     return labelMetrics.elidedText(copiedText, Qt::ElideRight, textMaxWidth);
342 }
343
344 QString UserInfo::splitWord(const QString &word) const
345 {
346     qDebug() << __PRETTY_FUNCTION__;
347
348     QString result;
349     QString temp;
350
351     for (int i = 0; i < word.length(); i++) {
352         if (fontMetrics().width(temp.append(word.at(i))) > LABEL_MAX_WIDTH) {
353             result.append(temp.left(temp.length() - 1));
354             result.append(" ");
355             temp.remove(0, temp.length() - 1);
356         }
357     }
358
359     result.append(temp);
360
361     return result;
362 }
363
364 void UserInfo::updateLocationDialogFinished(int reason)
365 {
366     qDebug() << __PRETTY_FUNCTION__;
367
368     Q_UNUSED(reason);
369
370     if (m_updateLocation) {
371         disconnect(this, SIGNAL(reverseGeoReady(QString)),
372                 m_updateLocation, SLOT(setAddress(QString)));
373
374         disconnect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
375                 this, SIGNAL(statusUpdate(QString,bool)));
376
377         disconnect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
378                 this, SLOT(backupUpdateLocationDialogData(QString,bool)));
379
380         disconnect(m_updateLocation, SIGNAL(finished(int)),
381                 this, SLOT(updateLocationDialogFinished(int)));
382
383         m_updateLocation->deleteLater();
384         m_updateLocation = 0;
385     }
386 }