Added background for ListItemContextButtonBar
[situare] / src / ui / listitemcontextbuttonbar.cpp
index b9ef662..4a8edb5 100644 (file)
@@ -20,6 +20,7 @@
 */
 
 #include <QDebug>
+#include <QPainter>
 #include <QPropertyAnimation>
 #include <QStateMachine>
 
@@ -36,6 +37,15 @@ ListItemContextButtonBar::ListItemContextButtonBar(QWidget *parent) :
 {
     qDebug() << __PRETTY_FUNCTION__;
 
+    // --- BAR LOOK ---
+    const int BAR_HEIGHT = 78;
+    setFixedHeight(BAR_HEIGHT);
+
+    m_backgroundLeft = new QPixmap(":/res/images/list_item_context_button_bar_left.png");
+    m_backgroundMiddle = new QPixmap(":/res/images/list_item_context_button_bar_tile.png");
+    m_backgroundRight = new QPixmap(":/res/images/list_item_context_button_bar_right.png");
+
+    // --- ANIMATION ---
     const int ANIMATION_DURATION_MS = 150;
 
     m_animation = new QPropertyAnimation(this, "pos", this);
@@ -45,6 +55,20 @@ ListItemContextButtonBar::ListItemContextButtonBar(QWidget *parent) :
             this, SLOT(onAnimationFinished()));
 }
 
+ListItemContextButtonBar::~ListItemContextButtonBar()
+{
+    qDebug() << __PRETTY_FUNCTION__;
+
+    if (m_backgroundLeft)
+        delete m_backgroundLeft;
+
+    if (m_backgroundMiddle)
+        delete m_backgroundMiddle;
+
+    if (m_backgroundRight)
+        delete m_backgroundRight;
+}
+
 void ListItemContextButtonBar::changeButtons()
 {
     qDebug() << __PRETTY_FUNCTION__;
@@ -116,6 +140,19 @@ void ListItemContextButtonBar::onListItemSelectionChanged(bool itemIsSelected)
     }
 }
 
+void ListItemContextButtonBar::paintEvent(QPaintEvent *event)
+{
+    qDebug() << __PRETTY_FUNCTION__;
+
+    Q_UNUSED(event);
+
+    QPainter painter(this);
+
+    painter.drawPixmap(0, 0, *m_backgroundLeft);
+    painter.drawTiledPixmap(24, 0, width() - 2 * 24, 78, *m_backgroundMiddle);
+    painter.drawPixmap(width() - 24, 0, *m_backgroundRight);
+}
+
 void ListItemContextButtonBar::setContextButtons(QWidget *contextButtons)
 {
     qDebug() << __PRETTY_FUNCTION__;