a305b7d8190252de5b61bdc4c24a08211d7b60a8
[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 { color: #989898; }" \
68                            "#nameLabel { 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(clockLabel, m_updatedLabel);
117     infoLayout->addRow(envelopeLabel, m_statusTextLabel);
118     infoLayout->addRow(compassLabel, m_locationLabel);
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
140 void FriendListItem::setData(User *user)
141 {
142     qDebug() << __PRETTY_FUNCTION__;
143
144     if (user) {
145         m_user = user;
146         shortenTexts();
147
148         m_imageLabel->setPixmap(m_user->profileImage());
149         setText(false);
150     }
151 }
152
153 void FriendListItem::shortenTexts()
154 {
155     qDebug() << __PRETTY_FUNCTION__;
156
157     QFontMetrics nameLabelMetrics = m_nameLabel->fontMetrics();
158     QFontMetrics otherLabelsMetrics = m_updatedLabel->fontMetrics();
159
160     QString name = m_user->name();
161     QString updated = m_user->timestamp();
162     QString statusText = m_user->note();
163     QString location = m_user->address();
164
165     int nameIndex = name.indexOf('\n');
166     int updatedIndex = updated.indexOf('\n');
167     int statusTextIndex = statusText.indexOf('\n');
168     int locationIndex = location.indexOf('\n');
169
170     if (nameIndex > 0) {
171         name.truncate(nameIndex);
172         name.append("...");
173     }
174     if (updatedIndex > 0) {
175         updated.truncate(updatedIndex);
176         updated.append("...");
177     }
178     if (statusTextIndex > 0) {
179         statusText.truncate(statusTextIndex);
180         statusText.append("...");
181     }
182     if (locationIndex > 0) {
183         location.truncate(locationIndex);
184         location.append("...");
185     }
186
187
188     m_shortenedName = nameLabelMetrics.elidedText(name, Qt::ElideRight, LABEL_MAX_WIDTH + 30);
189     m_shortenedUpdated = otherLabelsMetrics.elidedText(updated, Qt::ElideRight, LABEL_MAX_WIDTH);
190     m_shortenedStatusText = otherLabelsMetrics.elidedText(statusText, Qt::ElideRight,
191                                                           LABEL_MAX_WIDTH);
192     m_shortenedLocation = otherLabelsMetrics.elidedText(location, Qt::ElideRight, LABEL_MAX_WIDTH);
193 }
194
195 void FriendListItem::setText(bool expanded)
196 {
197     qDebug() << __PRETTY_FUNCTION__;
198
199     if (expanded) {
200         m_nameLabel->setText(m_shortenedName);
201         m_updatedLabel->setText(m_user->timestamp());
202         m_statusTextLabel->setText(m_user->note());
203         m_locationLabel->setText(m_user->address());
204     }
205     else {
206         m_nameLabel->setText(m_shortenedName);
207         m_updatedLabel->setText(m_shortenedUpdated);
208         m_statusTextLabel->setText(m_shortenedStatusText);
209         m_locationLabel->setText(m_shortenedLocation);
210     }
211 }
212
213 void FriendListItem::mousePressEvent(QMouseEvent *event)
214 {
215     qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
216
217     m_mousePosition = event->pos();
218 }
219
220 void FriendListItem::mouseReleaseEvent(QMouseEvent *event)
221 {
222     qDebug() << __PRETTY_FUNCTION__ << " " << event->pos();
223
224     if ((abs(m_mousePosition.y() - event->pos().y()) <= MOUSE_PRESS_AREA_WIDTH) &&
225         (abs(m_mousePosition.x() - event->pos().x()) <= MOUSE_PRESS_AREA_HEIGHT)) {
226         if (m_expanded) {
227             setText(false);
228             m_expanded = false;
229         }
230         else {
231             setText(true);
232             m_expanded = true;
233         }
234     }
235 }
236
237 void FriendListItem::paintEvent(QPaintEvent *event)
238 {
239 //    qDebug() << __PRETTY_FUNCTION__ << " " << event->rect();
240
241     QStyleOption option;
242     option.init(this);
243
244     QStylePainter painter(this);
245     style()->drawPrimitive(QStyle::PE_Widget, &option, &painter, this);
246 }