Merge branch 'master' into network_handler
[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 "common.h"
27 #include "imagebutton.h"
28 #include "../user/user.h"
29 #include "userinfo.h"
30
31 const int BACKGROUND_WIDTH = 240;           ///< Width for item
32 const int BACKGROUND_TOP_HEIGHT = 16;       ///< Height for item top
33 const int BACKGROUND_BOTTOM_HEIGHT = 15;    ///< Height for item bottom
34 const int ICON_HEIGHT = 24;                 ///< Icon height
35 const int ICON_WIDTH = 24;                  ///< Icon width
36 const int MARGIN = 5;                       ///< Icon margin
37 const int LINE_LENGTH = 17;                 ///< Line length
38 const int MOUSE_PRESS_AREA_WIDTH = 20;      ///< Area width for item height toggling
39 const int MOUSE_PRESS_AREA_HEIGHT = 20;     ///< Area height for item height toggling
40
41 /**
42 * @var LABEL_MAX_WIDTH
43 *
44 * @brief All label's maximum width
45 */
46 const int LABEL_MAX_WIDTH = BACKGROUND_WIDTH - 3 * MARGIN - ICON_WIDTH + 130;
47
48 UserInfo::UserInfo(QWidget *parent)
49     : QWidget(parent),
50       m_expanded(false),
51       m_messageUpdateVerified(false),
52       m_updateLocation(0)
53 {
54     qDebug() << __PRETTY_FUNCTION__;
55
56     QVBoxLayout *verticalLayout = new QVBoxLayout(this);
57     verticalLayout->setContentsMargins(MARGIN * 2, 0, MARGIN * 2, MARGIN * 2);
58     verticalLayout->setSpacing(0);
59     setLayout(verticalLayout);
60
61     QFormLayout *infoLayout = new QFormLayout();
62     infoLayout->setMargin(0);
63     infoLayout->setSpacing(0);
64
65     QHBoxLayout *buttonLayout = new QHBoxLayout();
66     buttonLayout->setMargin(0);
67     buttonLayout->setSpacing(0);
68
69     QLabel *envelopeLabel = new QLabel();
70     envelopeLabel->setPixmap(QPixmap(":/res/images/envelope.png"));
71     envelopeLabel->setContentsMargins(0, 0, MARGIN, 0);
72     envelopeLabel->setFixedSize(ICON_WIDTH + MARGIN, ICON_HEIGHT);
73     QLabel *compassLabel = new QLabel();
74     compassLabel->setPixmap(QPixmap(":/res/images/compass.png"));
75     compassLabel->setContentsMargins(0, 0, MARGIN, 0);
76     compassLabel->setFixedSize(ICON_WIDTH + MARGIN, ICON_HEIGHT);
77     QLabel *clockLabel = new QLabel();
78     clockLabel->setPixmap(QPixmap(":/res/images/clock.png"));
79     clockLabel->setContentsMargins(0, 0, MARGIN, 0);
80     clockLabel->setFixedSize(ICON_WIDTH + MARGIN, ICON_HEIGHT);
81
82     m_findButton = new ImageButton();
83
84     m_nameLabel = new QLabel();
85     m_nameLabel->setWordWrap(true);
86
87     m_statusTextLabel = new QLabel();
88     m_statusTextLabel->setWordWrap(true);
89     m_locationLabel = new QLabel();
90     m_locationLabel->setWordWrap(true);
91     m_updatedLabel = new QLabel();
92     m_updatedLabel->setWordWrap(true);
93
94     ImageButton *updateFriendsButton = new ImageButton(this, ":/res/images/refresh.png",
95                                                              ":/res/images/refresh_s.png");
96     ImageButton *updateStatusMessageButton = new ImageButton(this, ":/res/images/send_position.png",
97                                                                    ":/res/images/send_position_s.png");
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/user_info_item_top.png");
132     m_backgroundMiddleImage.load(":/res/images/user_info_item_middle.png");
133     m_backgroundBottomImage.load(":/res/images/user_info_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::setAddress(const QString &address)
154 {
155     qDebug() << __PRETTY_FUNCTION__;
156
157     m_locationLabel->setText(address);
158 }
159
160 void UserInfo::setCoordinates(const QPointF &coordinates)
161 {
162     qDebug() << __PRETTY_FUNCTION__;
163
164     m_coordinates = coordinates;
165 }
166
167 void UserInfo::setMessageText(const QString &text)
168 {
169     qDebug() << __PRETTY_FUNCTION__;
170
171     m_messageText = text;
172     m_expandedMessageText = text;
173     int textWidth = fontMetrics().width(m_expandedMessageText);
174
175     if (textWidth > 150){
176         QStringList words = m_expandedMessageText.split(" ");
177
178         for (int i = 0; i < words.count();i++){
179             QString temp = words.at(i);
180
181             if(temp.length() >= LINE_LENGTH) {
182                 temp.insert(LINE_LENGTH,QString("\n"));
183                 words.replace(i,temp);
184             }
185         }
186         m_expandedMessageText = words.join(" ");
187     }
188
189     setText(false);
190 }
191
192 void UserInfo::setProfileImage(const QPixmap &image)
193 {
194     qDebug() << __PRETTY_FUNCTION__;
195
196     m_findButton->setButtonIcon(image);
197 }
198
199 void UserInfo::setTime(const QString &time)
200 {
201     qDebug() << __PRETTY_FUNCTION__;
202
203     m_updatedLabel->setText(time);
204 }
205
206 void UserInfo::setUserName(const QString &name)
207 {
208     qDebug() << __PRETTY_FUNCTION__;
209
210     m_userName = name;
211     setText(false);
212 }
213
214 void UserInfo::setText(bool expanded)
215 {
216     qDebug() << __PRETTY_FUNCTION__;
217
218     if (expanded) {
219         m_statusTextLabel->setText(m_expandedMessageText);
220     }
221     else {
222         m_nameLabel->setText(shortenText(m_nameLabel, m_userName, LABEL_MAX_WIDTH));
223         m_statusTextLabel->setText(shortenText(m_statusTextLabel, m_messageText,
224                                                LABEL_MAX_WIDTH));
225     }
226 }
227
228 void UserInfo::backupUpdateLocationDialogData(const QString &status, bool publish)
229 {
230     qDebug() << __PRETTY_FUNCTION__;
231
232     m_backupMessage = status;
233     m_backupFacebookPublishPolicity = publish;
234
235     m_messageUpdateVerified = false;
236 }
237
238 void UserInfo::clearUpdateLocationDialogData()
239 {
240     qDebug() << __PRETTY_FUNCTION__;
241
242     m_backupMessage.clear();
243     m_backupFacebookPublishPolicity = false;
244 }
245
246 void UserInfo::findButtonClicked()
247 {
248     qDebug() << __PRETTY_FUNCTION__;
249
250     emit findUser(m_coordinates);
251 }
252
253 void UserInfo::mouseReleaseEvent(QMouseEvent *event)
254 {
255     qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
256
257     if ((abs(m_mousePosition.y() - event->pos().y()) <= MOUSE_PRESS_AREA_WIDTH) &&
258         (abs(m_mousePosition.x() - event->pos().x()) <= MOUSE_PRESS_AREA_HEIGHT)) {
259         if (m_expanded) {
260             setText(false);
261             m_expanded = false;
262         }
263         else {
264             setText(true);
265             m_expanded = true;
266         }
267     }
268 }
269
270 void UserInfo::mousePressEvent(QMouseEvent *event)
271 {
272     qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
273
274     m_mousePosition = event->pos();
275 }
276
277 void UserInfo::messageUpdate()
278 {
279     qDebug() << __PRETTY_FUNCTION__;
280
281     delete m_updateLocation;
282     m_updateLocation = new UpdateLocationDialog(m_backupMessage, m_backupFacebookPublishPolicity,
283                                                 this);
284
285     connect(this, SIGNAL(reverseGeoReady(QString)),
286             m_updateLocation, SLOT(setAddress(QString)));
287
288     connect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
289             this, SIGNAL(statusUpdate(QString,bool)));
290
291     connect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
292             this, SLOT(backupUpdateLocationDialogData(QString,bool)));
293
294     connect(m_updateLocation, SIGNAL(finished(int)),
295             this, SLOT(updateLocationDialogFinished(int)));
296
297     m_updateLocation->show();
298
299     emit requestReverseGeo();
300 }
301
302 void UserInfo::paintEvent(QPaintEvent *aPaintEvent)
303 {
304     qDebug() << __PRETTY_FUNCTION__ << " " << aPaintEvent->rect();
305
306     QPainter painter(this);
307
308     QRect topRect = QRect(0, MARGIN, BACKGROUND_WIDTH, BACKGROUND_TOP_HEIGHT);
309     QRect middleRect = QRect(0, topRect.bottom(), BACKGROUND_WIDTH,
310                              height() - BACKGROUND_TOP_HEIGHT - BACKGROUND_BOTTOM_HEIGHT);
311     QRect bottomRect = QRect(topRect.left(), middleRect.bottom(), BACKGROUND_WIDTH,
312                              BACKGROUND_BOTTOM_HEIGHT);
313
314     painter.drawPixmap(topRect, m_backgroundTopImage);
315     painter.drawPixmap(middleRect, m_backgroundMiddleImage);
316     painter.drawPixmap(bottomRect, m_backgroundBottomImage);
317 }
318
319 void UserInfo::restoreUnsendMessage()
320 {
321     qDebug() << __PRETTY_FUNCTION__;
322
323     QSettings settings(DIRECTORY_NAME, FILE_NAME);
324     m_backupMessage = settings.value(USER_UNSEND_MESSAGE, EMPTY).toString();
325     m_backupFacebookPublishPolicity =
326             settings.value(USER_UNSEND_MESSAGE_PUBLISH, false).toBool();
327 }
328
329 QString UserInfo::shortenText(const QLabel *label, const QString &text, int textMaxWidth)
330 {
331     qDebug() << __PRETTY_FUNCTION__;
332
333     QFontMetrics labelMetrics = label->fontMetrics();
334     QString textParam = text;
335     int index = textParam.indexOf('\n');
336     int textWidth = fontMetrics().width(textParam);
337
338         if (index > 0) {
339             textParam.truncate(index);
340             textParam.append("...");
341         }
342             if (textWidth > 150)
343                 textParam.insert(LINE_LENGTH, QString("\n"));
344
345    return labelMetrics.elidedText(textParam, Qt::ElideRight, textMaxWidth);
346 }
347
348 void UserInfo::verifyMessageUpdateFailure(const int error)
349 {
350     qDebug() << __PRETTY_FUNCTION__;
351
352     Q_UNUSED(error);
353
354     if (!m_messageUpdateVerified) {
355
356         if (m_messageText != m_backupMessage && !m_backupMessage.isEmpty())
357             emit notificateUpdateFailing(tr("Location update failed, please try again"), false);
358     }
359
360     m_messageUpdateVerified = true;
361 }
362
363 void UserInfo::updateLocationDialogFinished(int reason)
364 {
365     qDebug() << __PRETTY_FUNCTION__;
366
367     Q_UNUSED(reason);
368
369     if (m_updateLocation) {
370         disconnect(this, SIGNAL(reverseGeoReady(QString)),
371                 m_updateLocation, SLOT(setAddress(QString)));
372
373         disconnect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
374                 this, SIGNAL(statusUpdate(QString,bool)));
375
376         disconnect(m_updateLocation, SIGNAL(statusUpdate(QString,bool)),
377                 this, SLOT(backupUpdateLocationDialogData(QString,bool)));
378
379         disconnect(m_updateLocation, SIGNAL(finished(int)),
380                 this, SLOT(updateLocationDialogFinished(int)));
381
382         m_updateLocation->deleteLater();
383         m_updateLocation = 0;
384     }
385
386 }