adb89ee25dbd7b2844c138b67a9da996bf292a98
[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
220     const int MOUSE_PRESS_AREA_WIDTH = 20;
221     const int MOUSE_PRESS_AREA_HEIGHT = 20;
222
223     if ((abs(m_mousePosition.y() - event->pos().y()) <= MOUSE_PRESS_AREA_WIDTH) &&
224         (abs(m_mousePosition.x() - event->pos().x()) <= MOUSE_PRESS_AREA_HEIGHT)) {
225         if (m_expanded) {
226             setExpanded(false);
227             m_expanded = false;
228         }
229         else {
230             setExpanded(true);
231             m_expanded = true;
232         }
233     }
234 }
235
236 void UserInfo::paintEvent(QPaintEvent *aPaintEvent)
237 {
238     qDebug() << __PRETTY_FUNCTION__ << " " << aPaintEvent->rect();
239
240     QPainter painter(this);
241
242     QRect topRect = QRect(0, MARGIN, BACKGROUND_WIDTH, BACKGROUND_TOP_HEIGHT);
243
244     QRect middleRect = QRect(topRect.left(), topRect.bottom() + 1, BACKGROUND_WIDTH,
245                              this->height() - BACKGROUND_TOP_HEIGHT - BACKGROUND_BOTTOM_HEIGHT);
246
247     QRect bottomRect = QRect(topRect.left(), middleRect.bottom() + 1, BACKGROUND_WIDTH,
248                              BACKGROUND_BOTTOM_HEIGHT);
249
250     painter.drawPixmap(topRect, m_backgroundTopImage);
251     painter.drawPixmap(middleRect, m_backgroundMiddleImage);
252     painter.drawPixmap(bottomRect, m_backgroundBottomImage);
253 }
254
255 void UserInfo::restoreUnsendMessage()
256 {
257     qDebug() << __PRETTY_FUNCTION__;
258
259     QSettings settings(DIRECTORY_NAME, FILE_NAME);
260     m_backupMessage = settings.value(USER_UNSEND_MESSAGE, EMPTY).toString();
261     m_backupFacebookPublishPolicity = settings.value(USER_UNSEND_MESSAGE_PUBLISH, false).toBool();
262 }
263
264 void UserInfo::setAddress(const QString &address)
265 {
266     qDebug() << __PRETTY_FUNCTION__;
267
268     m_locationLabel->setText(address);
269 }
270
271 void UserInfo::setCoordinates(const GeoCoordinate &coordinates)
272 {
273     qDebug() << __PRETTY_FUNCTION__;
274
275     m_coordinates = coordinates;
276 }
277
278 void UserInfo::setMessageText(const QString &text)
279 {
280     qDebug() << __PRETTY_FUNCTION__;
281
282     QStringList list;
283     list = text.split(' ');
284
285     for (int i = 0; i < list.count(); i++) {
286         if (fontMetrics().width(list.at(i)) > LABEL_MAX_WIDTH)
287             list.replace(i, splitWord(list.at(i)));
288     }
289
290     m_messageText = list.join(" ");
291     m_statusTextLabel->setText(m_messageText);
292     setExpanded(false);
293 }
294
295 void UserInfo::setProfileImage(const QPixmap &image)
296 {
297     qDebug() << __PRETTY_FUNCTION__;
298
299     if(!image.isNull())
300         m_findButton->setButtonIcon(image);
301 }
302
303 void UserInfo::setExpanded(bool expanded)
304 {
305     qDebug() << __PRETTY_FUNCTION__;
306
307     if (expanded) {
308         m_statusTextLabel->setText(m_messageText);
309     }
310     else {
311         m_nameLabel->setText(shortenText(m_nameLabel, m_userName, LABEL_MAX_WIDTH));
312         m_statusTextLabel->setText(shortenText(m_statusTextLabel, m_messageText,
313                                                LABEL_MAX_WIDTH));
314     }
315 }
316
317 void UserInfo::setTime(const QString &time)
318 {
319     qDebug() << __PRETTY_FUNCTION__;
320
321     m_updatedLabel->setText(time);
322 }
323
324 void UserInfo::setUserName(const QString &name)
325 {
326     qDebug() << __PRETTY_FUNCTION__;
327
328     m_userName = name;
329     setExpanded(false);
330 }
331
332 QString UserInfo::shortenText(const QLabel *label, const QString &text, int textMaxWidth)
333 {
334     qDebug() << __PRETTY_FUNCTION__;
335
336     QFontMetrics labelMetrics = label->fontMetrics();
337     QString textParam = text;
338     int index = textParam.indexOf('\n');
339
340         if (index > 0) {
341             textParam.truncate(index);
342             textParam.append("...");
343         }
344
345    return labelMetrics.elidedText(textParam, Qt::ElideRight, textMaxWidth);
346 }
347
348 QString UserInfo::splitWord(const QString &word) const
349 {
350     qDebug() << __PRETTY_FUNCTION__;
351
352     QString result;
353     QString temp;
354
355     for (int i = 0; i < word.length(); i++) {
356         if (fontMetrics().width(temp.append(word.at(i))) > LABEL_MAX_WIDTH)
357         {
358             temp.append(" ");
359             result.append(temp);
360             temp.clear();
361         }
362     }
363
364     result.append(temp);
365
366     return result;
367 }
368
369 void UserInfo::updateLocationDialogFinished(int reason)
370 {
371     qDebug() << __PRETTY_FUNCTION__;
372
373     Q_UNUSED(reason);
374
375     if (m_updateLocation) {
376         disconnect(this, SIGNAL(reverseGeoReady(QString)),
377                 m_updateLocation, SLOT(setAddress(QString)));
378
379         disconnect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
380                 this, SIGNAL(statusUpdate(QString,bool)));
381
382         disconnect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
383                 this, SLOT(backupUpdateLocationDialogData(QString,bool)));
384
385         disconnect(m_updateLocation, SIGNAL(finished(int)),
386                 this, SLOT(updateLocationDialogFinished(int)));
387
388         m_updateLocation->deleteLater();
389         m_updateLocation = 0;
390     }
391 }