644caec935e4bd29e3005bf1bc1e42406ebb736d
[situare] / src / ui / extendedlistitem.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 <QFontMetrics>
24 #include <QPainter>
25
26 #include "../common.h"
27 #include "extendedlistitemstore.h"
28 #include "listcommon.h"
29 #include "textmodifier.h"
30
31 #include "extendedlistitem.h"
32
33 ExtendedListItem::ExtendedListItem()
34     : m_selected(false),
35       m_expandedHeight(ITEM_MIN_HEIGHT),
36       m_normalHeight(ITEM_MIN_HEIGHT),
37       m_subItemTextWidth(0)
38
39 {
40     qDebug() << __PRETTY_FUNCTION__;
41
42     setSize(QSize(ITEM_WIDTH, ITEM_MIN_HEIGHT));
43
44     m_subItemStoreList = new QList<ExtendedListItemStore *>();
45     setData(SUBITEM_STORE_INDEX, qVariantFromValue((void *) m_subItemStoreList));
46 }
47
48 ExtendedListItem::~ExtendedListItem()
49 {
50     qDebug() << __PRETTY_FUNCTION__;
51
52     clearSubItems();
53     delete m_subItemStoreList;
54 }
55
56 void ExtendedListItem::addSubItem(const QString &text, const QPixmap &icon)
57 {
58     qDebug() << __PRETTY_FUNCTION__;
59
60     QPixmap p = QPixmap(ICON_WIDTH, ICON_HEIGHT);
61     QPainter painter(&p);
62     painter.setFont(NOKIA_FONT_SMALL);
63     QFontMetrics textMetrics = painter.fontMetrics();
64
65     QString expandedText = TextModifier::splitLongWords(textMetrics, text,
66                                                         m_subItemTextWidth);
67
68     ExtendedListItemStore *itemStore = new ExtendedListItemStore(expandedText);
69     itemStore->setIcon(icon);
70     itemStore->setShortenedText(shortenText(text, m_subItemTextWidth,
71                                             ListItem::TEXT_SIZE_SMALL));
72     itemStore->setTextRect(calculateExpandedTextRect(expandedText));
73
74     m_subItemStoreList->append(itemStore);
75 }
76
77 QRect ExtendedListItem::boundingRect(const QString &text)
78 {
79     qDebug() << __PRETTY_FUNCTION__;
80
81     QPixmap p = QPixmap(ICON_WIDTH, ICON_HEIGHT);
82     QPainter painter(&p);
83     painter.setFont(NOKIA_FONT_SMALL);
84
85     QFontMetrics textMetrics = painter.fontMetrics();
86     QRect textRect;
87     int rowHeight = textMetrics.ascent() + textMetrics.descent();
88     textRect.setSize(QSize(m_subItemTextWidth, rowHeight));
89
90     QStringList words = text.split(QRegExp("\\b"));
91     QString rowText;
92     foreach (QString word, words) {
93
94         if (word.contains("\n")) {
95             foreach (QChar c, word) {
96                 if (c == '\n')
97                     textRect.setHeight(textRect.height() + rowHeight);
98             }
99             rowText.clear();
100         } else {
101             rowText.append(word);
102             if (textMetrics.width(rowText) > m_subItemTextWidth) {
103                 textRect.setHeight(textRect.height() + rowHeight);
104                 rowText = word.simplified();
105             }
106         }
107     }
108
109     return textRect;
110 }
111
112 QRect ExtendedListItem::calculateExpandedTextRect(const QString &text)
113 {
114     qDebug() << __PRETTY_FUNCTION__;
115
116     const int TEXT_BOTTOM_MARGIN = 2;
117
118     QRect expandedTextRect = boundingRect(text);
119
120     m_normalHeight += SUBITEM_TEXT_ROW_HEIGHT + TEXT_BOTTOM_MARGIN;
121     m_expandedHeight += expandedTextRect.height() + TEXT_BOTTOM_MARGIN;
122     setSize(QSize(ITEM_WIDTH, m_normalHeight));
123
124     return expandedTextRect;
125 }
126
127 void ExtendedListItem::clearSubItems()
128 {
129     qDebug() << __PRETTY_FUNCTION__;
130
131     qDeleteAll(m_subItemStoreList->begin(), m_subItemStoreList->end());
132     m_subItemStoreList->clear();
133
134     m_expandedHeight = ITEM_MIN_HEIGHT;
135     m_normalHeight = ITEM_MIN_HEIGHT;
136 }
137
138 void ExtendedListItem::setSubitemTextWidth(int width)
139 {
140     qDebug() << __PRETTY_FUNCTION__;
141
142     m_subItemTextWidth = width;
143 }
144
145 void ExtendedListItem::setSelected(bool selected)
146 {
147     qDebug() << __PRETTY_FUNCTION__;
148
149     QListWidgetItem::setSelected(selected);
150     m_selected = selected;
151     setData(ITEM_EXPANDED_INDEX, m_selected);
152
153     if (m_selected)
154         setData(ITEM_SIZE_HINT_INDEX, QSize(ITEM_WIDTH, m_expandedHeight));
155     else
156         setData(ITEM_SIZE_HINT_INDEX, QSize(ITEM_WIDTH, m_normalHeight));
157 }
158
159 bool ExtendedListItem::toggleSelection()
160 {
161     qDebug() << __PRETTY_FUNCTION__;
162
163     setSelected(!m_selected);
164     return m_selected;
165 }