Modified TagsDialog.
[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(QListWidget *parent, int type)
32     : QListWidgetItem(parent, type)
33 {
34     qDebug() << __PRETTY_FUNCTION__;
35
36     setSize(QSize(ITEM_WIDTH, ITEM_MIN_HEIGHT));
37 }
38
39 QString ListItem::title()
40 {
41     qDebug() << __PRETTY_FUNCTION__;
42
43     return data(TITLE_DISPLAY_INDEX).toString();
44 }
45
46 void ListItem::setImage(const QPixmap &image)
47 {
48     qDebug() << __PRETTY_FUNCTION__;
49
50     setData(ITEM_HAS_IMAGE_INDEX, true);
51     setData(AVATAR_IMAGE_INDEX, image);
52
53 }
54
55 void ListItem::setTitle(const QString &title)
56 {
57     qDebug() << __PRETTY_FUNCTION__;
58
59     setData(TITLE_DISPLAY_INDEX, title);
60 }
61
62 void ListItem::setSize(const QSize &size)
63 {
64     qDebug() << __PRETTY_FUNCTION__;
65
66     setData(ITEM_SIZE_HINT_INDEX, size);
67 }
68
69 QString ListItem::shortenText(const QString &text, int textWidth, TextSize textSize)
70 {
71     qDebug() << __PRETTY_FUNCTION__;
72
73     QPixmap p = QPixmap(ICON_WIDTH, ICON_HEIGHT);
74     QPainter painter(&p);
75
76     if (textSize == ListItem::TEXT_SIZE_NORMAL)
77         painter.setFont(NOKIA_FONT_NORMAL);
78     else
79         painter.setFont(NOKIA_FONT_SMALL);
80
81     QFontMetrics textMetrics = painter.fontMetrics();
82
83     return TextModifier::shortenText(textMetrics, text, textWidth);
84 }