Deleted old ButtonItem class (+ unit tests) and changed infotab to utilize the new...
[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 #include "situareuser.h"
31
32 class QLabel;
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 * QPaintEvent unused
76     */
77     void paintEvent(QPaintEvent *);
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 shortened texts from User data.
93     *
94     * Text length is defined by MAXIMUM_CHARS.
95     */
96     void shortenTexts();
97
98     /**
99     * @brief Set shortened or full-length text to labels.
100     *
101     * @param expanded true if full-length text is set, false otherwise
102     */
103     void setText(bool expanded);
104
105 /******************************************************************************
106 * DATA MEMBERS
107 ******************************************************************************/
108 private:
109     bool m_expanded;                ///< Item expanded state
110     QLabel *m_imageLabel;           ///< Image label
111     QLabel *m_locationLabel;        ///< Location label
112     QPoint m_mousePosition;         ///< Current mouse press position
113     QLabel *m_nameLabel;            ///< Name label
114     QString m_shortenedLocation;    ///< Shortened location text
115     QString m_shortenedName;        ///< Shortened name text
116     QString m_shortenedStatusText;  ///< Shortened status text
117     QString m_shortenedUpdated;     ///< Shortened updated text
118     QLabel *m_statusTextLabel;      ///< Status text label
119     QLabel *m_updatedLabel;         ///< Updated label
120
121     User *m_user;                    ///< User data
122 };
123
124 #endif // FRIENDLISTITEM_H