Added minor changes to userinfo
[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
10    Situare is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License
12    version 2 as published by the Free Software Foundation.
13
14    Situare is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with Situare; if not, write to the Free Software
21    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
22    USA.
23 */
24
25 #include "imagebutton.h"
26 #include "../user/user.h"
27 #include "userinfo.h"
28
29 const int BACKGROUND_WIDTH = 240; ///< Width for item
30 const int BACKGROUND_TOP_HEIGHT = 16; ///< Height for item top
31 const int BACKGROUND_BOTTOM_HEIGHT = 15; ///< Height for item bottom
32 const QColor COLOR_GRAY = QColor(152, 152, 152); ///< Gray color
33 const QFont NOKIA_FONT_NORMAL = QFont("Nokia Sans", 18, QFont::Normal); ///< Normal font
34 const QFont NOKIA_FONT_SMALL = QFont("Nokia Sans", 13, QFont::Normal);  ///< Small font
35 const int ICON_HEIGHT = 24; ///< Icon height
36 const int ICON_WIDTH = 24;  ///< Icon width
37 const int IMAGE_HEIGHT = 60;    ///< Profile image height
38 const int IMAGE_WIDTH = 60;     ///< Profile image width
39 const int MARGIN = 5; ///< Icon margin
40 const int MOUSE_PRESS_AREA_WIDTH = 20;  ///< Area width for item height toggling
41 const int MOUSE_PRESS_AREA_HEIGHT = 20; ///< Area height for item height toggling
42
43 /**
44 * @var LABEL_MAX_WIDTH
45 *
46 * @brief All label's maximum width
47 */
48 const int LABEL_MAX_WIDTH = BACKGROUND_WIDTH - 3 * MARGIN - ICON_WIDTH + 130;
49
50 UserInfo::UserInfo(QWidget *parent)
51     : QWidget(parent),
52       m_expanded(false)
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     connect(updateFriendsButton,SIGNAL(clicked()),
114             this, SIGNAL(refreshUserData()));
115     connect(m_findButton, SIGNAL(clicked()),
116         this, SLOT(findButtonClicked()));
117
118     setFixedWidth(BACKGROUND_WIDTH);
119
120     this->setFont(NOKIA_FONT_SMALL);
121     m_nameLabel->setFont(NOKIA_FONT_NORMAL);
122     QPalette itemPalette = palette();
123     itemPalette.setColor(QPalette::Foreground, COLOR_GRAY);
124     setPalette(itemPalette);
125     QPalette namePalette = m_nameLabel->palette();
126     namePalette.setColor(QPalette::Foreground, Qt::white);
127     m_nameLabel->setPalette(namePalette);
128
129     m_backgroundTopImage.load(":/res/images/user_info_item_top.png");
130     m_backgroundMiddleImage.load(":/res/images/user_info_item_middle.png");
131     m_backgroundBottomImage.load(":/res/images/user_info_item_bottom.png");
132 }
133
134 void UserInfo::setAddress(const QString &address)
135 {
136     qDebug() << __PRETTY_FUNCTION__;
137
138     m_locationLabel->setText(address);
139 }
140
141 void UserInfo::setCoordinates(const QPointF &coordinates)
142 {
143     qDebug() << __PRETTY_FUNCTION__;
144
145     m_coordinates = coordinates;
146 }
147
148 void UserInfo::setMessageText(const QString &text)
149 {
150     qDebug() << __PRETTY_FUNCTION__;
151
152     m_messageText = text;
153     setText(false);
154 }
155
156 void UserInfo::setProfileImage(const QPixmap &image)
157 {
158     qDebug() << __PRETTY_FUNCTION__;
159
160     m_findButton->setIcon(image);
161 }
162
163 void UserInfo::setTime(const QString &time)
164 {
165     qDebug() << __PRETTY_FUNCTION__;
166
167     m_updatedLabel->setText(time);
168 }
169
170 void UserInfo::setUserName(const QString &name)
171 {
172     qDebug() << __PRETTY_FUNCTION__;
173
174     m_userName = name;
175     setText(false);
176 }
177
178 QString UserInfo::shortenText(const QLabel *label, const QString &text, int textMaxWidth)
179 {
180     qDebug() << __PRETTY_FUNCTION__;
181
182     QFontMetrics labelMetrics = label->fontMetrics();
183
184     QString textParam = text;
185     int index = textParam.indexOf('\n');
186
187     if (index > 0) {
188         textParam.truncate(index);
189         textParam.append("...");
190     }
191
192    return labelMetrics.elidedText(textParam, Qt::ElideRight, textMaxWidth);
193 }
194
195 void UserInfo::setText(bool expanded)
196 {
197     qDebug() << __PRETTY_FUNCTION__;
198
199     if (expanded) {
200         m_nameLabel->setText(m_userName);
201         m_statusTextLabel->setText(m_messageText);
202     }
203     else {
204         m_nameLabel->setText(shortenText(m_nameLabel, m_userName, LABEL_MAX_WIDTH));
205         m_statusTextLabel->setText(shortenText(m_statusTextLabel, m_messageText,
206                                                LABEL_MAX_WIDTH));
207     }
208 }
209
210 void UserInfo::mouseReleaseEvent(QMouseEvent *event)
211 {
212     qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
213
214     if ((abs(m_mousePosition.y() - event->pos().y()) <= MOUSE_PRESS_AREA_WIDTH) &&
215         (abs(m_mousePosition.x() - event->pos().x()) <= MOUSE_PRESS_AREA_HEIGHT)) {
216         if (m_expanded) {
217             setText(false);
218             m_expanded = false;
219         }
220         else {
221             setText(true);
222             m_expanded = true;
223         }
224     }
225 }
226 void UserInfo::paintEvent(QPaintEvent *aPaintEvent)
227 {
228     qDebug() << __PRETTY_FUNCTION__ << " " << aPaintEvent->rect();
229
230     QPainter painter(this);
231
232     QRect topRect = QRect(0, MARGIN, BACKGROUND_WIDTH, BACKGROUND_TOP_HEIGHT);
233     QRect middleRect = QRect(0, topRect.bottom(), BACKGROUND_WIDTH,
234                              height() - BACKGROUND_TOP_HEIGHT - BACKGROUND_BOTTOM_HEIGHT);
235     QRect bottomRect = QRect(topRect.left(), middleRect.bottom(), BACKGROUND_WIDTH,
236                              BACKGROUND_BOTTOM_HEIGHT);
237
238     painter.drawPixmap(topRect, m_backgroundTopImage);
239     painter.drawPixmap(middleRect, m_backgroundMiddleImage);
240     painter.drawPixmap(bottomRect, m_backgroundBottomImage);
241 }
242
243 void UserInfo::mousePressEvent(QMouseEvent *event)
244 {
245     qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
246
247     m_mousePosition = event->pos();
248 }
249
250 void UserInfo::findButtonClicked()
251 {
252     qDebug() << __PRETTY_FUNCTION__;
253
254     emit findUser(m_coordinates);
255 }
256
257 void UserInfo::messageUpdate()
258 {
259     qDebug() << __PRETTY_FUNCTION__;
260
261     UpdateLocationDialog updateLocationDialog(this);
262
263     emit requestReverseGeo();
264
265     connect(this, SIGNAL(reverseGeoReady(QString)),
266             &updateLocationDialog, SLOT(setAddress(QString)));
267     connect(&updateLocationDialog, SIGNAL(statusUpdate(QString, bool)),
268             this, SIGNAL(statusUpdate(QString, bool)));
269
270     updateLocationDialog.exec();
271 }
272