Merge branch 'master' into new_info_panels
[situare] / src / ui / userpanel.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 "userpanel.h"
23 #include "panelcommon.h"
24 #include "panelsliderbar.h"
25
26 UserInfoPanel::UserInfoPanel(QWidget *parent)
27     : QWidget(parent)
28 {
29     qDebug() << __PRETTY_FUNCTION__;
30
31     m_userPanelVBox = new QVBoxLayout(this);
32     m_panelBase = new QWidget(this);
33     m_panelBase->setLayout(m_userPanelVBox);
34     m_panelBase->move(TOP_CORNER_X,PANEL_TOP_Y);
35     m_panelBase->resize(USERPANEL_WIDTH, USERPANEL_HEIGHT);
36
37     QPalette pal = palette();
38     pal.setColor(QPalette::Background, QColor(0, 0, 0, 128));
39     m_panelBase->setPalette(pal);
40     m_panelBase->setAutoFillBackground(true);
41
42     PanelSliderBar *m_userPanelSlidingBar = new PanelSliderBar(this, LEFT);
43     m_userPanelSlidingBar->move(USERPANEL_WIDTH - SLIDINGBAR_WIDTH, PANEL_TOP_Y);
44
45     // set mask to allow clicking zoom button at their default position
46     setMask(QPixmap(":/res/images/userpanel_mask.png").mask());
47
48     m_userPanelStateMachine = new QStateMachine(this);
49     m_userPanelStateClosed = new QState(m_userPanelStateMachine);
50     m_userPanelStateClosed->assignProperty(this, "pos", QPoint(
51             USERPANEL_CLOSED_X, PANEL_TOP_Y));
52     m_userPanelStateMachine->setInitialState(m_userPanelStateClosed);
53
54     m_userPanelStateOpened = new QState(m_userPanelStateMachine);
55     m_userPanelStateOpened->assignProperty(this, "pos", QPoint(
56             USERPANEL_OPENED_X, PANEL_TOP_Y));
57
58     m_userPanelTransitionOpen = m_userPanelStateClosed->addTransition(
59             m_userPanelSlidingBar, SIGNAL(clicked()), m_userPanelStateOpened);
60     m_userPanelTransitionOpen->addAnimation(new QPropertyAnimation(this, "pos", this));
61
62     m_userPanelTransitionClose = m_userPanelStateOpened->addTransition(
63             m_userPanelSlidingBar, SIGNAL(clicked()), m_userPanelStateClosed);
64     m_userPanelTransitionClose->addAnimation(new QPropertyAnimation(this, "pos", this));
65
66     m_userPanelStateMachine->start();
67     setObjectName("UserPanel");
68 }
69
70 void UserInfoPanel::reDrawUserPanel(int width, int height)
71 {
72     qDebug() << __PRETTY_FUNCTION__;
73     Q_UNUSED(width);
74     resize(USERPANEL_WIDTH + SLIDINGBAR_WIDTH,height + MARGIN_CORRECTION);
75 }