Added a preliminary class and images for panel context button bar
[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_RECT_X = 0;
28 const int CONTEXT_BUTTON_BAR_WIDTH = 78;
29 const int CONTEXT_BUTTON_BAR_HEIGHT = 16;
30 const int CONTEXT_BUTTON_BAR_TOP_HEIGHT = 32;
31
32 PanelContextButtonBar::PanelContextButtonBar(QWidget *parent)
33     : QWidget(parent)
34 {
35     qDebug() << __PRETTY_FUNCTION__;
36
37     m_barTile.load(":/res/images/panel_context_button_bar_tile.png");
38     m_barTop.load(":/res/images/panel_context_button_bar_top.png");
39
40     m_barRect.setRect(CONTEXT_BUTTON_BAR_RECT_X, CONTEXT_BUTTON_BAR_TOP_HEIGHT,
41                       CONTEXT_BUTTON_BAR_WIDTH, CONTEXT_BUTTON_BAR_HEIGHT);
42
43     resize(CONTEXT_BUTTON_BAR_WIDTH, CONTEXT_BUTTON_BAR_HEIGHT + CONTEXT_BUTTON_BAR_TOP_HEIGHT);
44 }
45
46 void PanelContextButtonBar::paintEvent(QPaintEvent *event)
47 {
48     qDebug() << __PRETTY_FUNCTION__;
49
50     Q_UNUSED(event);
51
52     const int CONTEXT_BUTTON_BAR_TOP_X = 0;
53     const int CONTEXT_BUTTON_BAR_TOP_Y = 0;
54
55     QPainter painter(this);
56
57     painter.drawPixmap(CONTEXT_BUTTON_BAR_TOP_X, CONTEXT_BUTTON_BAR_TOP_Y, m_barTop);
58     painter.drawTiledPixmap(m_barRect, m_barTile);
59
60 }