03dfd1e40c5e0288c417b6187fa5e6985f56ada6
[situare] / src / ui / panelcontextbuttonbar.cpp
1 /*
2     Situare - A location system for Facebook
3     Copyright (C) 2010  Ixonos Plc. Authors:
4
5         Pekka Nissinen - pekka.nissinen@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 <QDebug>
23 #include <QPainter>
24
25 #include "panelcontextbuttonbar.h"
26
27 const int CONTEXT_BUTTON_BAR_WIDTH = 78;
28
29 PanelContextButtonBar::PanelContextButtonBar(QWidget *parent)
30     : QWidget(parent),
31       m_contextButtons(0)
32 {
33     qDebug() << __PRETTY_FUNCTION__;
34
35     m_barTile.load(":/res/images/panel_context_button_bar_tile.png");
36     m_barTop.load(":/res/images/panel_context_button_bar_top.png");
37
38     setFixedWidth(CONTEXT_BUTTON_BAR_WIDTH);
39 }
40
41 void PanelContextButtonBar::paintEvent(QPaintEvent *event)
42 {
43     qDebug() << __PRETTY_FUNCTION__;
44
45     Q_UNUSED(event);
46
47     const int CONTEXT_BUTTON_BAR_RECT_X = 0;
48
49     const int CONTEXT_BUTTON_BAR_TOP_HEIGHT = 32;
50     const int CONTEXT_BUTTON_BAR_TOP_X = 0;
51     const int CONTEXT_BUTTON_BAR_TOP_Y = 0;
52
53     QPainter painter(this);
54
55     m_barRect.setRect(CONTEXT_BUTTON_BAR_RECT_X, CONTEXT_BUTTON_BAR_TOP_HEIGHT,
56                       CONTEXT_BUTTON_BAR_WIDTH, height() - CONTEXT_BUTTON_BAR_TOP_HEIGHT);
57
58     painter.drawPixmap(CONTEXT_BUTTON_BAR_TOP_X, CONTEXT_BUTTON_BAR_TOP_Y, m_barTop);
59     painter.drawTiledPixmap(m_barRect, m_barTile);
60
61 }
62
63 void PanelContextButtonBar::setContextButtons(QWidget *contextButtons)
64 {
65     qDebug() << __PRETTY_FUNCTION__;
66
67     // Hide previous buttons (if any)
68     if (m_contextButtons)
69         m_contextButtons->setParent(0);
70
71     m_contextButtons = contextButtons;
72
73     m_contextButtons->setParent(this);
74     m_contextButtons->setVisible(true);
75
76     setFixedHeight(m_contextButtons->height());
77
78     emit positionChangeRequested();
79 }