Made a few cosmetic changes
[situare] / src / ui / friendlistpanel.cpp
1  /*
2     Situare - A location system for Facebook
3     Copyright (C) 2010  Ixonos Plc. Authors:
4
5         Kaj Wallin - kaj.wallin@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 #include "friendlistpanel.h"
23 #include "friendlistview.h"
24 #include "friendlistitem.h"
25 #include "panelcommon.h"
26 #include "panelsliderbar.h"
27
28 FriendListPanel::FriendListPanel(QWidget *parent)
29     : QWidget(parent)
30 {
31     qDebug() << __PRETTY_FUNCTION__;
32     m_friendsPanelVBox = new QVBoxLayout(this);
33     m_friendsPanelVBox->setMargin(0);
34     m_friendsPanelVBox->setContentsMargins(SLIDINGBAR_WIDTH+1, 0, SIDEBAR_WIDTH, 0);
35     m_friendsPanelVBox->setSpacing(0);
36     setLayout(m_friendsPanelVBox);
37
38     m_friendListView = new FriendListView(this);
39     QScrollArea *friendListScroll = new QScrollArea(this);
40     friendListScroll->setWidgetResizable(false);
41     friendListScroll->setWidget(m_friendListView);
42     friendListScroll->viewport()->setAutoFillBackground(false);
43     friendListScroll->widget()->setAutoFillBackground(false);
44
45     m_friendsPanelVBox->addWidget(friendListScroll);
46
47     setAutoFillBackground(true);
48     QPalette pal = palette();
49     pal.setColor(QPalette::Background, QColor(0, 0, 0, 128));
50     setPalette(pal);
51
52     m_friendsPanelSlidingBar = new PanelSliderBar(this, RIGHT);
53     m_friendsPanelSlidingBar->move(TOP_CORNER_X, PANEL_TOP_Y);
54
55     m_friendsPanelStateMachine = new QStateMachine(this);
56     m_friendsPanelStateClosed = new QState(m_friendsPanelStateMachine);
57     m_friendsPanelStateClosed->assignProperty(this, "pos", QPoint(
58             FRIENDPANEL_CLOSED_X, PANEL_TOP_Y));
59     m_friendsPanelStateMachine->setInitialState(m_friendsPanelStateClosed);
60
61     m_friendsPanelStateOpened = new QState(m_friendsPanelStateMachine);
62     m_friendsPanelStateOpened->assignProperty(this, "pos", QPoint(
63             FRIENDPANEL_OPENED_X, PANEL_TOP_Y));
64
65     m_friendsPanelTransitionOpen = m_friendsPanelStateClosed->addTransition(
66             m_friendsPanelSlidingBar, SIGNAL(clicked()), m_friendsPanelStateOpened);
67     m_friendsPanelTransitionOpen->addAnimation(new QPropertyAnimation(this, "pos", this));
68
69     m_friendsPanelTransitionClose = m_friendsPanelStateOpened->addTransition(
70             m_friendsPanelSlidingBar, SIGNAL(clicked()), m_friendsPanelStateClosed);
71     m_friendsPanelTransitionClose->addAnimation(new QPropertyAnimation(this, "pos", this));
72
73     m_friendsPanelStateMachine->start();
74     setObjectName("FriendsPanel");
75 }
76
77 void FriendListPanel::friendInfoReceived(QList<User *> &friendList)
78 {
79     qDebug() << __PRETTY_FUNCTION__;
80
81     m_friendListView->clear();
82
83     foreach (User *user, friendList) {
84         FriendListItem *item = new FriendListItem(m_friendListView);
85         item->setData(user);
86         connect(item, SIGNAL(findFriend(QPointF)),
87             this, SIGNAL(findFriend(QPointF)));
88         m_friendListView->addWidget(item);
89     }
90 }
91
92 void FriendListPanel::reDrawFriendsPanel(int width, int height)
93 {
94     qDebug() << __PRETTY_FUNCTION__;
95     resize(FRIENDPANEL_WIDTH,height + MARGIN_CORRECTION);
96     m_friendsPanelStateClosed->assignProperty(this, "pos", QPoint(
97             width - PANEL_PEEK_AMOUNT, PANEL_TOP_Y));
98     m_friendsPanelStateOpened->assignProperty(this, "pos", QPoint(
99             width - FRIENDPANEL_WIDTH + MARGIN_CORRECTION, PANEL_TOP_Y));
100     move(width - PANEL_PEEK_AMOUNT, PANEL_TOP_Y);
101 }