dc04d2f4267bc9680b74c5460a0d44be28f7a173
[situare] / src / ui / listview.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 LISTVIEW_H
23 #define LISTVIEW_H
24
25 #include <QListWidget>
26
27 class GeoCoordinate;
28 class ListItem;
29
30 /**
31 * @brief View for ListItems.
32 *
33 * ListView is used to show ListItems in list view. Items can be added, removed or
34 * filtered.
35 *
36 * @author Jussi Laitinen - jussi.laitinen (at) ixonos.com
37 */
38 class ListView : public QListWidget
39 {
40     Q_OBJECT
41
42 public:
43     /**
44     * @brief Constructor.
45     *
46     * @param parent QWidget
47     */
48     ListView(QWidget *parent = 0);
49
50     /**
51     * @brief Destructor.
52     *
53     * Calls ListView::clearList().
54     */
55     ~ListView();
56
57 /******************************************************************************
58 * MEMBER FUNCTIONS AND SLOTS
59 ******************************************************************************/
60 public:
61     /**
62     * @brief Add item to view and item list.
63     *
64     * @param key user ID
65     * @param item item to add to view and list
66     */
67     void addListItem(const QString &key, ListItem *item);
68
69     /**
70     * @brief Adds item to view.
71     *
72     * @param item FriendListItem
73     */
74     void addListItemToView(ListItem *item);
75
76     /**
77     * @brief Clear unused items from view.
78     *
79     * Clears items which are not in item ID's list from the view and items list.
80     *
81     * @param itemIDs list of item ID's to keep in list view
82     */
83     void clearUnused(const QStringList &itemIDs);
84
85     /**
86     * @brief Clears filtering from list.
87     *
88     * Clears m_filteredItemIDs and shows all items.
89     */
90     void clearFilter();
91
92     void clearItemSelection();
93
94     /**
95     * @brief Clears list.
96     *
97     * Items are removed from view and item list.
98     */
99     void clearList();
100
101     /**
102     * @brief Checks if view contains item with userID.
103     *
104     * @param userID user's ID
105     * @return true if view contains item, false otherwise
106     */
107     bool contains(const QString &userID);
108
109     /**
110     * @brief Filters list by item IDs.
111     *
112     * Hide all items that are not in the itemIDs list.
113     *
114     * @param itemIDs item ID's for items that are shown
115     */
116     void filter(const QList<QString> &itemIDs);
117
118     /**
119     * @brief Filters list by text pattern.
120     *
121     * Filtering uses item names. If filtering by item IDs is on, filters only those items.
122     *
123     * @param pattern text pattern to filter
124     */
125     void filter(const QString &pattern);
126
127     /**
128     * @brief Takes item from view.
129     *
130     * Item is not deleted.
131     *
132     * @param itemID item's ID
133     * @return ListItem
134     */
135     ListItem *takeListItemFromView(const QString &itemID);
136
137     /**
138     * @brief Returns ListItem with itemID.
139     *
140     * @param itemID item's ID
141     * @return ListItem
142     */
143     ListItem *listItem(const QString &itemID);
144
145     /**
146     * @brief Returns ListItem by index.
147     *
148     * @param index item's index
149     * @return ListItem
150     */
151     ListItem *listItemAt(int index);
152
153     /**
154     * @brief Returns selected ListItem.
155     *
156     * @return ListItem if there is selected, 0 otherwise
157     */
158     ListItem *selectedItem();
159
160     /**
161     * @brief Sets selected item.
162     *
163     * @param item ListItem to select
164     */
165     void setSelectedItem(ListItem *item);
166
167 protected slots:
168     /**
169     * @brief Slot for list item clicked.
170     *
171     * Toggles items selection state and emits listItemClicked signal.
172     * @return true if item was selected, false otherwise
173     */
174     virtual bool listItemClicked(ListItem *item);
175
176 private slots:
177     /**
178     * @brief Slot for list item clicked.
179     *
180     * Calls listItemClicked(ListItem *item)
181     */
182     void listItemClicked(QListWidgetItem *item);
183
184 /*******************************************************************************
185  * DATA MEMBERS
186  ******************************************************************************/
187 private:
188     QHash<QString, ListItem *> m_listItems; ///< List of items in this view. Key = user ID
189
190     QList<QString> m_filteredItemIDs;       ///< List of filtered item IDs
191
192     ListItem *m_previousItem;               ///< Previously selected item
193 };
194
195 #endif // LISTVIEW_H