Updated list_item images with new ones.
[situare] / src / ui / friendlistitem.cpp
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5        Jussi Laitinen - jussi.laitinen@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #include <QVBoxLayout>
23 #include <QPushButton>
24 #include <QPainter>
25 #include <QDebug>
26 #include <QPaintEvent>
27 #include <QLabel>
28 #include <QPixmap>
29 #include <QFormLayout>
30 #include <QSpacerItem>
31 #include <QStylePainter>
32 #include <math.h>
33
34 #include "friendlistitem.h"
35 #include "../user/user.h"
36
37 const QString BACKGROUND_PATH = ":/res/images/list_item.png";   ///< Background image path
38 //const QString BACKGROUND_TOP_PATH = ":/res/images/list_item_top.png";   ///< Background image path
39 //const QString BACKGROUND_MIDDLE_PATH = ":/res/images/list_item_middle.png";   ///< Background image path
40 //const QString BACKGROUND_BOTTOM_PATH = ":/res/images/list_item_bottom.png";   ///< Background image path
41 const QString CLOCK_PATH = ":/res/images/clock.png";        ///< Clock image path
42 const QString COMPASS_PATH = ":/res/images/compass.png";    ///< Compass image path
43 const QString ENVELOPE_PATH = ":/res/images/envelope.png";  ///< Envelope image path
44
45 const int ICON_MARGIN = 5;   ///< Icon margin
46 const int IMAGE_HEIGHT = 60; ///< Friend image height
47 const int IMAGE_WIDTH = 60;  ///< Friend image width
48
49 const int ITEM_MAX_HEIGHT = 240; ///< Maximum height for item
50 const int ITEM_MAX_WIDTH = 368;  ///< Maximum width for item
51 const int ITEM_MIN_HEIGHT = 141; ///< Minimum height for item
52 const int ITEM_MIN_WIDTH = 368;  ///< Minimum width for item
53 const int LABEL_MAX_WIDTH = 247;   ///< Label maximum width
54
55 const int MOUSE_PRESS_AREA_WIDTH = 20;  ///< Area width for item height toggling
56 const int MOUSE_PRESS_AREA_HEIGHT = 20; ///< Area height for item height toggling
57
58 const QFont NOKIA_FONT_NORMAL = QFont( "Nokia Sans", 18, QFont::Normal);    ///< Normal font
59 const QFont NOKIA_FONT_SMALL = QFont( "Nokia Sans", 13, QFont::Normal);     ///< Small font
60
61 /**
62 * @var STYLESHEET
63 * @brief Stylesheet for FriendListItem
64 */
65 const QString STYLESHEET = "QWidget#listItem { border-image: url(:/res/images/list_item.png) 20%; " \
66                            "border-width: 20px 14px 16px 14px; } " \
67                            "QLabel { font-size: 13pt; color: #989898; }" \
68                            "#nameLabel { font-size: 18pt; color: #ffffff }";
69
70 FriendListItem::FriendListItem(QWidget *parent)
71     : QWidget(parent)
72     , m_expanded(false)
73     , m_user(0)
74 {
75     qDebug() << __PRETTY_FUNCTION__;
76
77     QVBoxLayout *layout = new QVBoxLayout(this);
78     this->setLayout(layout);
79
80     QHBoxLayout *topLayout = new QHBoxLayout();
81     topLayout->setMargin(0);
82     topLayout->setSpacing(0);
83
84     QHBoxLayout *bottomLayout = new QHBoxLayout();
85     bottomLayout->setMargin(0);
86     bottomLayout->setSpacing(0);
87
88     QFormLayout *infoLayout = new QFormLayout();
89     infoLayout->setMargin(0);
90     infoLayout->setSpacing(0);
91
92     QLabel *clockLabel = new QLabel();
93     clockLabel->setPixmap(QPixmap(CLOCK_PATH));
94     clockLabel->setContentsMargins(0, 0, ICON_MARGIN, 0);
95     QLabel *envelopeLabel = new QLabel();
96     envelopeLabel->setPixmap(QPixmap(ENVELOPE_PATH));
97     envelopeLabel->setContentsMargins(0, 0, ICON_MARGIN, 0);
98     QLabel *compassLabel = new QLabel();
99     compassLabel->setPixmap(QPixmap(COMPASS_PATH));
100     compassLabel->setContentsMargins(0, 0, ICON_MARGIN, 0);
101
102     m_imageLabel = new QLabel();
103     m_imageLabel->setFixedSize(IMAGE_WIDTH, IMAGE_HEIGHT);
104
105     m_nameLabel = new QLabel();
106     m_nameLabel->setFixedHeight(IMAGE_HEIGHT);
107     m_nameLabel->setFont(NOKIA_FONT_NORMAL);
108
109     m_updatedLabel = new QLabel();
110     m_updatedLabel->setWordWrap(true);
111     m_statusTextLabel = new QLabel();
112     m_statusTextLabel->setWordWrap(true);
113     m_locationLabel = new QLabel();
114     m_locationLabel->setWordWrap(true);
115
116     infoLayout->addRow(envelopeLabel, m_statusTextLabel);
117     infoLayout->addRow(compassLabel, m_locationLabel);
118     infoLayout->addRow(clockLabel, m_updatedLabel);
119
120     topLayout->addWidget(m_imageLabel);
121     topLayout->addWidget(m_nameLabel);
122
123     bottomLayout->addSpacing(IMAGE_WIDTH);
124     bottomLayout->addLayout(infoLayout, 1);
125
126     layout->addLayout(topLayout, 0);
127     layout->addLayout(bottomLayout, 1);
128
129     setObjectName("listItem");
130     m_nameLabel->setObjectName("nameLabel");
131
132     setFont(NOKIA_FONT_SMALL);
133
134 //    setStyleSheet(STYLESHEET);
135
136     setMinimumSize(ITEM_MIN_WIDTH, ITEM_MIN_HEIGHT);
137     setMaximumSize(ITEM_MIN_WIDTH, ITEM_MAX_HEIGHT);
138
139     BACKGROUND_TOP_PATH.load(":/res/images/list_item_top.png");   ///< Background image path
140     BACKGROUND_MIDDLE_PATH.load(":/res/images/list_item_middle.png");   ///< Background image path
141     BACKGROUND_BOTTOM_PATH.load(":/res/images/list_item_bottom.png");   ///< Background image path
142 }
143
144 void FriendListItem::setData(User *user)
145 {
146     qDebug() << __PRETTY_FUNCTION__;
147
148     if (user) {
149         m_user = user;
150         shortenTexts();
151
152         m_imageLabel->setPixmap(m_user->profileImage());
153         setText(false);
154     }
155 }
156
157 void FriendListItem::shortenTexts()
158 {
159     qDebug() << __PRETTY_FUNCTION__;
160
161     QFontMetrics nameLabelMetrics = m_nameLabel->fontMetrics();
162     QFontMetrics otherLabelsMetrics = m_updatedLabel->fontMetrics();
163
164     QString name = m_user->name();
165     QString updated = m_user->timestamp();
166     QString statusText = m_user->note();
167     QString location = m_user->address();
168
169     int nameIndex = name.indexOf('\n');
170     int updatedIndex = updated.indexOf('\n');
171     int statusTextIndex = statusText.indexOf('\n');
172     int locationIndex = location.indexOf('\n');
173
174     if (nameIndex > 0) {
175         name.truncate(nameIndex);
176         name.append("...");
177     }
178     if (updatedIndex > 0) {
179         updated.truncate(updatedIndex);
180         updated.append("...");
181     }
182     if (statusTextIndex > 0) {
183         statusText.truncate(statusTextIndex);
184         statusText.append("...");
185     }
186     if (locationIndex > 0) {
187         location.truncate(locationIndex);
188         location.append("...");
189     }
190
191
192     m_shortenedName = nameLabelMetrics.elidedText(name, Qt::ElideRight, LABEL_MAX_WIDTH + 30);
193     m_shortenedUpdated = otherLabelsMetrics.elidedText(updated, Qt::ElideRight, LABEL_MAX_WIDTH);
194     m_shortenedStatusText = otherLabelsMetrics.elidedText(statusText, Qt::ElideRight,
195                                                           LABEL_MAX_WIDTH);
196     m_shortenedLocation = otherLabelsMetrics.elidedText(location, Qt::ElideRight, LABEL_MAX_WIDTH);
197 }
198
199 void FriendListItem::setText(bool expanded)
200 {
201     qDebug() << __PRETTY_FUNCTION__;
202
203     if (expanded) {
204         m_nameLabel->setText(m_shortenedName);
205         m_updatedLabel->setText(m_user->timestamp());
206         m_statusTextLabel->setText(m_user->note());
207         m_locationLabel->setText(m_user->address());
208     }
209     else {
210         m_nameLabel->setText(m_shortenedName);
211         m_updatedLabel->setText(m_shortenedUpdated);
212         m_statusTextLabel->setText(m_shortenedStatusText);
213         m_locationLabel->setText(m_shortenedLocation);
214     }
215 }
216
217 void FriendListItem::mousePressEvent(QMouseEvent *event)
218 {
219     qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
220
221     m_mousePosition = event->pos();
222 }
223
224 void FriendListItem::mouseReleaseEvent(QMouseEvent *event)
225 {
226     qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
227
228     if ((abs(m_mousePosition.y() - event->pos().y()) <= MOUSE_PRESS_AREA_WIDTH) &&
229         (abs(m_mousePosition.x() - event->pos().x()) <= MOUSE_PRESS_AREA_HEIGHT)) {
230         if (m_expanded) {
231             setText(false);
232             m_expanded = false;
233         }
234         else {
235             setText(true);
236             m_expanded = true;
237         }
238     }
239 }
240
241 void FriendListItem::paintEvent(QPaintEvent *event)
242 {
243     qDebug() << __PRETTY_FUNCTION__ << " " << event->rect();
244
245     QPainter painter(this);
246
247 //        QRect topRect = QRect(event->rect().left(), event->rect().y(), event->rect().width(), 20);
248 //        QRect middleRect = QRect(topRect.left(), topRect.bottom() + 1, event->rect().width(),
249 //                                 event->rect().height() - 20 - 15);
250 //        QRect bottomRect = QRect(topRect.left(), middleRect.bottom() + 1, event->rect().width(),
251 //                                 15);
252
253     int height = event->rect().height();
254
255     if (event->rect().height() < 148)
256         height = 148;
257
258     QRect topRect = QRect(0, 0, event->rect().width(), 20);
259     QRect middleRect = QRect(0, topRect.bottom() + 1, event->rect().width(),
260                              height - 20 - 15);
261     QRect bottomRect = QRect(topRect.left(), middleRect.bottom() + 1, event->rect().width(),
262                              15);
263
264     painter.drawPixmap(topRect, BACKGROUND_TOP_PATH);
265     painter.drawPixmap(middleRect, BACKGROUND_MIDDLE_PATH);
266     painter.drawPixmap(bottomRect, BACKGROUND_BOTTOM_PATH);
267 }