d59e401c531139b17c44196dbb7a65c9a38fdaab
[situare] / src / ui / panelcontentstack.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         Pekka Nissinen - pekka.nissinen@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 #include <QDebug>
24 #include <QPainter>
25
26 #include "panelcommon.h"
27
28 #include "panelcontentstack.h"
29
30 PanelContentStack::PanelContentStack(QWidget *parent)
31     : QStackedWidget(parent)
32 {
33     qDebug() << __PRETTY_FUNCTION__;
34
35     resize(PANEL_WIDTH, PANEL_HEIGHT);
36
37     m_menuDropShadowTile.load(":res/images/menu_bar_drop_shadow.png");
38
39     QPalette pal = palette();
40     pal.setColor(QPalette::Background, QColor(0, 0, 0, 128));
41     setPalette(pal);
42     setAutoFillBackground(true);
43 }
44
45 void PanelContentStack::paintEvent(QPaintEvent *event)
46 {
47     qDebug() << __PRETTY_FUNCTION__;
48
49     Q_UNUSED(event);
50
51     QPainter painter(this);
52
53     QRect shadowRect = QRect(0, 0, this->rect().width(), m_menuDropShadowTile.height());
54     painter.drawTiledPixmap(shadowRect, m_menuDropShadowTile);
55 }
56
57 void PanelContentStack::resizePanelContentStack(const QSize &size)
58 {
59     qDebug() << __PRETTY_FUNCTION__;
60
61     resize(PANEL_WIDTH, size.height() - PANEL_TOP_PADDING - PANEL_BOTTOM_PADDING);
62 }