cc8496c2e96f977d94c8604541b35ad048c8f46d
[situare] / src / ui / friendlistitem.h
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 #ifndef FRIENDLISTITEM_H
23 #define FRIENDLISTITEM_H
24
25 #include <QWidget>
26 #include <QTreeWidgetItem>
27 #include <QListWidgetItem>
28
29 #include "../user/user.h"
30
31 class QLabel;
32 class ImageButton;
33
34 /**
35 * @brief FriendListItem shows friend data in expandable item.
36 *
37 * @class FriendListItem friendlistitem.h "ui/friendlistitem.h"
38 */
39 class FriendListItem : public QWidget
40 {
41     Q_OBJECT
42
43 public:
44     /**
45     * @brief Construct FriendListItem.
46     *
47     * Initializes layouts and member variables. Sets stylesheet
48     * for this class.
49     * @param parent parent widget
50     */
51     FriendListItem(QWidget *parent = 0);
52
53 /*******************************************************************************
54  * BASE CLASS INHERITED AND REIMPLEMENTED MEMBER FUNCTIONS
55  ******************************************************************************/
56 protected:
57     /**
58     * @brief Set current mouse position to mouse event position.
59     *
60     * @param event QMouseEvent mouse press event
61     */
62     void mousePressEvent(QMouseEvent *event);
63
64     /**
65     * @brief Call toggleHeight if mouse position is unchanged.
66     *
67     * Check if current mouse position is same as mouse release position.
68     * @param event QMouseEvent mouse release event
69     */
70     void mouseReleaseEvent(QMouseEvent *event);
71
72     /**
73     * @brief Draws stylesheet used in this class.
74     *
75     * @param event QPaintEvent
76     */
77     void paintEvent(QPaintEvent *event);
78
79 /******************************************************************************
80 * MEMBER FUNCTIONS AND SLOTS
81 ******************************************************************************/
82 public:
83     /**
84     * @brief Set data for this item.
85     *
86     * @param user User pointer
87     */
88     void setData(User *user);
89
90 private:
91     /**
92     * @brief Set distance icon.
93     *
94     * Icon is selected by distance.
95     *
96     * @param value distance value
97     * @param unit distance unit
98     */
99     void setDistanceIcon(double value, const QString &unit);
100
101     /**
102     * @brief Set shortened or full-length text to labels.
103     *
104     * @param expanded true if full-length text is set, false otherwise
105     */
106     void setText(bool expanded);
107
108     /**
109     * @brief Set shortened texts from User data.
110     *
111     * Text length is defined by MAXIMUM_CHARS.
112     */
113     void shortenTexts();
114
115 private slots:
116     /**
117     * @brief Slot for find button click
118     */
119     void findButtonClicked();
120
121 /******************************************************************************
122 * SIGNALS
123 ******************************************************************************/
124 signals:
125     /**
126     * @brief Signal for finding friend.
127     *
128     * @param coordinates friend's geo coordinates
129     */
130     void findFriend(const QPointF &coordinates);
131
132 /******************************************************************************
133 * DATA MEMBERS
134 ******************************************************************************/
135 private:
136     QPixmap m_backgroundTopImage;   ///< Top background image
137     QPixmap m_backgroundMiddleImage;   ///< Middle background image
138     QPixmap m_backgroundBottomImage;   ///< Bottom background image
139     bool m_expanded;                ///< Item expanded state
140     QLabel *m_distanceImageLabel;   ///< Distance image for friend label
141     QLabel *m_distanceTextLabel;    ///< Distance text for friend label
142     ImageButton *m_findButton;      ///< Friend find button
143     QLabel *m_locationLabel;        ///< Location label
144     QPoint m_mousePosition;         ///< Current mouse press position
145     QLabel *m_nameLabel;            ///< Name label
146     QString m_shortenedLocation;    ///< Shortened location text
147     QString m_shortenedName;        ///< Shortened name text
148     QString m_shortenedStatusText;  ///< Shortened status text
149     QString m_shortenedUpdated;     ///< Shortened updated text
150     QLabel *m_statusTextLabel;      ///< Status text label
151     QLabel *m_updatedLabel;         ///< Updated label
152     User *m_user;                    ///< User data
153 };
154
155 #endif // FRIENDLISTITEM_H