The first "kind of" working version of the new panels
[situare] / src / ui / userinfopanel.h
1  /*
2     Situare - A location system for Facebook
3     Copyright (C) 2010  Ixonos Plc. Authors:
4
5         Kaj Wallin - kaj.wallin@ixonos.com
6         Katri Kaikkonen - katri.kaikkonen@ixonos.com
7
8     Situare is free software; you can redistribute it and/or
9     modify it under the terms of the GNU General Public License
10     version 2 as published by the Free Software Foundation.
11
12     Situare is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.
16
17     You should have received a copy of the GNU General Public License
18     along with Situare; if not, write to the Free Software
19     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
20     USA.
21  */
22
23 #ifndef USERPANEL_H
24 #define USERPANEL_H
25
26 #include <QtGui>
27
28 #include "../user/user.h"
29
30 class UserInfo;
31
32 /**
33 * @brief Class for sliding user information panel
34 *
35 * @author Kaj Wallin - kaj.wallin (at) ixonos.com
36 * @class UserInfoPanel
37 */
38 class UserInfoPanel : public QWidget
39 {
40     Q_OBJECT
41
42 public:
43     /**
44     * @brief Default constructor
45     *
46     * @param parent
47     */
48     UserInfoPanel(QWidget *parent = 0);
49
50 /*******************************************************************************
51  * MEMBER FUNCTIONS AND SLOTS
52  ******************************************************************************/
53 public slots:
54     /**
55     * @brief Slot to capture returning user data from situareService
56     *
57     * @param user
58     */
59     void userDataReceived(User *user);
60
61 /*******************************************************************************
62  * SIGNALS
63  ******************************************************************************/
64 signals:
65     /**
66     * @brief Signal for finding user.
67     *
68     * @param coordinates user geo coordinates
69     */
70     void findUser(const GeoCoordinate &coordinates);
71
72     /**
73     * @brief Signal that used to inform user that his message/location update tp Situare server
74     *        was failed.
75     *        This signal is originally sended from UserInfo
76     * @param message message for notification
77     * @param modal true if modal notification otherwice false
78     */
79     void notificateUpdateFailing(const QString &message, bool modal);
80
81     /**
82     * @brief Signal for refreshing user data.
83     *
84     */
85     void refreshUserData();
86
87     /**
88     * @brief Signal for requesting reverseGeo from SituareEngine
89     *
90     */
91     void requestReverseGeo();
92
93     /**
94     * @brief Signals, when address data is ready
95     *
96     * @param address Street address
97     */
98     void reverseGeoReady(const QString &address);
99
100     /**
101     * @brief Signal Signal for requestLocationUpdate from SituareEngine via MainWindow class
102     *
103     * @param status Status message
104     * @param publish Publish on Facebook
105     */
106     void statusUpdate(const QString &status, const bool &publish);
107
108     /**
109     * @brief Signals when updateLocationDialog's data must be cleared
110     *
111     */
112     void clearUpdateLocationDialogData();
113 /*******************************************************************************
114  * DATA MEMBERS
115  ******************************************************************************/
116 private:
117     UserInfo *m_userInfo; ///< Instance of the user info view
118
119 };
120 #endif // USERPANEL_H