Emit error signal when login fails
[situare] / src / ui / listitem.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 <QDebug>
23 #include <QPainter>
24
25 #include "../common.h"
26 #include "listcommon.h"
27 #include "textmodifier.h"
28
29 #include "listitem.h"
30
31 ListItem::ListItem()
32 {
33     qDebug() << __PRETTY_FUNCTION__;
34
35     setSize(QSize(ITEM_WIDTH, ITEM_MIN_HEIGHT));
36 }
37
38 QString ListItem::title() const
39 {
40     qDebug() << __PRETTY_FUNCTION__;
41
42     return data(TITLE_DISPLAY_INDEX).toString();
43 }
44
45 void ListItem::setImage(const QPixmap &image)
46 {
47     qDebug() << __PRETTY_FUNCTION__;
48
49     setData(ITEM_HAS_IMAGE_INDEX, true);
50     setData(AVATAR_IMAGE_INDEX, image);
51
52 }
53
54 void ListItem::setTitle(const QString &title)
55 {
56     qDebug() << __PRETTY_FUNCTION__;
57
58     setData(TITLE_DISPLAY_INDEX, title);
59 }
60
61 void ListItem::setSize(const QSize &size)
62 {
63     qDebug() << __PRETTY_FUNCTION__;
64
65     setData(ITEM_SIZE_HINT_INDEX, size);
66 }
67
68 QString ListItem::shortenText(const QString &text, int textWidth, TextSize textSize)
69 {
70     qDebug() << __PRETTY_FUNCTION__;
71
72     QPixmap p = QPixmap(ICON_WIDTH, ICON_HEIGHT);
73     QPainter painter(&p);
74
75     if (textSize == ListItem::TEXT_SIZE_NORMAL)
76         painter.setFont(NOKIA_FONT_NORMAL);
77     else
78         painter.setFont(NOKIA_FONT_SMALL);
79
80     QFontMetrics textMetrics = painter.fontMetrics();
81
82     return TextModifier::shortenText(textMetrics, text, textWidth);
83 }