Modified text rect calculation.
[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
64     QFontMetrics textMetrics = painter.fontMetrics();
65
66     QString expandedText = TextModifier::splitLongWords(textMetrics, text, m_subItemTextWidth);
67
68     ExtendedListItemStore *itemStore = new ExtendedListItemStore(expandedText);
69     itemStore->setIcon(icon);
70     itemStore->setShortenedText(shortenText(expandedText, 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     QFontMetrics textMetrics = painter.fontMetrics();
85
86     QRect textRect;
87     textRect.setSize(QSize(m_subItemTextWidth, textMetrics.height()));
88
89     QStringList lines = text.split("\n");
90     for (int i = 1; i  < lines.count(); ++i) {
91         textRect.setHeight(textRect.height() + textMetrics.height());
92     }
93
94     QStringList words = text.split(" ");
95     QString textLine;
96     for (int i = 0; i < words.count(); ++i) {
97
98         if (i == 0)
99             textLine.append(words.at(i));
100         else
101             textLine.append(" " + words.at(i));
102
103         if ((textMetrics.width(textLine) > m_subItemTextWidth) && !textLine.contains("\n")) {
104             textRect.setHeight(textRect.height() + textMetrics.height());
105             textLine.clear();
106             textLine.append(words.at(i));
107         }
108     }
109
110     return textRect;
111 }
112
113 QRect ExtendedListItem::calculateExpandedTextRect(const QString &text)
114 {
115     qDebug() << __PRETTY_FUNCTION__;
116
117     const int TEXT_BOTTOM_MARGIN = 2;
118
119     QRect textRect = boundingRect(text);
120     QRect expandedTextRect = textRect;
121
122     m_normalHeight += SUBITEM_TEXT_ROW_HEIGHT + TEXT_BOTTOM_MARGIN;
123     m_expandedHeight += expandedTextRect.height() + TEXT_BOTTOM_MARGIN;
124     setSize(QSize(ITEM_WIDTH, m_normalHeight));
125
126     return expandedTextRect;
127 }
128
129 void ExtendedListItem::clearSubItems()
130 {
131     qDebug() << __PRETTY_FUNCTION__;
132
133     qDeleteAll(m_subItemStoreList->begin(), m_subItemStoreList->end());
134     m_subItemStoreList->clear();
135
136     m_expandedHeight = ITEM_MIN_HEIGHT;
137     m_normalHeight = ITEM_MIN_HEIGHT;
138 }
139
140 void ExtendedListItem::setSubitemTextWidth(int width)
141 {
142     qDebug() << __PRETTY_FUNCTION__;
143
144     m_subItemTextWidth = width;
145 }
146
147 void ExtendedListItem::setSelected(bool selected)
148 {
149     qDebug() << __PRETTY_FUNCTION__;
150
151     QListWidgetItem::setSelected(selected);
152     m_selected = selected;
153     setData(ITEM_EXPANDED_INDEX, m_selected);
154
155     if (m_selected)
156         setData(ITEM_SIZE_HINT_INDEX, QSize(ITEM_WIDTH, m_expandedHeight));
157     else
158         setData(ITEM_SIZE_HINT_INDEX, QSize(ITEM_WIDTH, m_normalHeight));
159 }
160
161 bool ExtendedListItem::toggleSelection()
162 {
163     qDebug() << __PRETTY_FUNCTION__;
164
165     setSelected(!m_selected);
166     return m_selected;
167 }