Emit error signal when login fails
[situare] / src / ui / panelbar.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 "panelbar.h"
27
28 #include "panelcommon.h"
29
30 const int PANEL_BAR_RECT_X = 0;
31 const int PANEL_BAR_RECT_Y = 0;
32
33 PanelBar::PanelBar(QWidget *parent)
34     : QWidget(parent)
35 {
36     qDebug() << __PRETTY_FUNCTION__;
37
38     m_barTile.load(":/res/images/panel_bar_tile.png");
39     m_menuDropShadowTile.load(":/res/images/menu_bar_drop_shadow.png");
40     m_barRect.setRect(PANEL_BAR_RECT_X, PANEL_BAR_RECT_Y, PANEL_BAR_WIDTH, PANEL_HEIGHT);
41
42     resize(PANEL_BAR_WIDTH, PANEL_HEIGHT);
43 }
44
45 void PanelBar::paintEvent(QPaintEvent *event)
46 {
47     qDebug() << __PRETTY_FUNCTION__;
48
49     Q_UNUSED(event);
50
51     const int MENU_DROP_SHADOW_RECT_X = 0;
52     const int MENU_DROP_SHADOW_RECT_Y = 0;
53
54     QPainter painter(this);
55
56     painter.drawTiledPixmap(m_barRect, m_barTile);
57     painter.drawTiledPixmap(MENU_DROP_SHADOW_RECT_X, MENU_DROP_SHADOW_RECT_Y, PANEL_BAR_WIDTH,
58                             m_menuDropShadowTile.height(), m_menuDropShadowTile);
59 }
60
61 void PanelBar::resizeBar(const QSize &size)
62 {
63     qDebug() << __PRETTY_FUNCTION__;
64
65     m_barRect.setRect(PANEL_BAR_RECT_X, PANEL_BAR_RECT_Y, PANEL_BAR_WIDTH, size.height());
66
67     resize(PANEL_BAR_WIDTH, size.height() - PANEL_TOP_PADDING - PANEL_BOTTOM_PADDING);
68 }