Tuning the ListItemContextButtonBar look
[situare] / src / ui / locationlistitem.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 LOCATIONLISTITEM_H
23 #define LOCATIONLISTITEM_H
24
25 #include "extendedlistitem.h"
26 #include "../routing/location.h"
27
28 /**
29 * @brief List item stores information about location results.
30 *
31 * @author Jussi Laitinen - jussi.laitinen (at) ixonos.com
32 */
33 class LocationListItem : public ExtendedListItem
34 {
35 public:
36     /**
37     * @brief Constructor.
38     *
39     * Sets sub items' text width.
40     */
41     LocationListItem();
42
43     /**
44     * @brief Destructor.
45     */
46     ~LocationListItem();
47
48 /******************************************************************************
49 * MEMBER FUNCTIONS AND SLOTS
50 ******************************************************************************/
51 public:
52     /**
53     * @brief Returns location bounds in parameters.
54     *
55     * @param swBound south-west bound in GeoCoorinate
56     * @param neBound north-east bound in GeoCoordinate
57     */
58     void bounds(GeoCoordinate &swBound, GeoCoordinate &neBound);
59
60     /**
61     * @brief Returns item's coordinates.
62     *
63     * @return item's coordinates
64     */
65     GeoCoordinate coordinates() const;
66
67     /**
68     * @brief Set location data for this item.
69     *
70     * @param location Location data
71     */
72     void setLocationData(const Location &location);
73
74 /******************************************************************************
75 * DATA MEMBERS
76 ******************************************************************************/
77 private:
78     Location m_location;    ///< Location data
79 };
80
81 #endif // LOCATIONLISTITEM_H