Added background for ListItemContextButtonBar
[situare] / src / ui / listitemcontextbuttonbar.cpp
index 722f123..4a8edb5 100644 (file)
@@ -20,6 +20,9 @@
 */
 
 #include <QDebug>
+#include <QPainter>
+#include <QPropertyAnimation>
+#include <QStateMachine>
 
 #include "panelcommon.h"
 
 
 ListItemContextButtonBar::ListItemContextButtonBar(QWidget *parent) :
     QWidget(parent),
-    m_contextButtons(0)
+    m_waitForOpen(false),
+    m_contextButtons(0),
+    m_newContextButtons(0),
+    m_state(StateHidden)
 {
     qDebug() << __PRETTY_FUNCTION__;
-}
 
-void ListItemContextButtonBar::hideContextButtonBar()
-{
-    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);
+    m_animation->setDuration(ANIMATION_DURATION_MS);
+
+    connect(m_animation, SIGNAL(finished()),
+            this, SLOT(onAnimationFinished()));
 }
 
-void ListItemContextButtonBar::onListItemSelectionChanged(bool itemIsSelected)
+ListItemContextButtonBar::~ListItemContextButtonBar()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
-    m_contextButtons->setVisible(itemIsSelected);
+    if (m_backgroundLeft)
+        delete m_backgroundLeft;
+
+    if (m_backgroundMiddle)
+        delete m_backgroundMiddle;
+
+    if (m_backgroundRight)
+        delete m_backgroundRight;
 }
 
-void ListItemContextButtonBar::setContextButtons(QWidget *contextButtons)
+void ListItemContextButtonBar::changeButtons()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
+    Q_ASSERT(m_animation->state() == QAbstractAnimation::Stopped);
+
     // Hide previous buttons (if any)
     if (m_contextButtons)
         m_contextButtons->setParent(0);
 
-    m_contextButtons = contextButtons;
-
+    m_contextButtons = m_newContextButtons;
+    m_newContextButtons = 0;
     m_contextButtons->setParent(this);
-
-    // widget must be temporarily visible so we can get the size, doesn't work with invisible widget
-    m_contextButtons->setVisible(true);
+    m_contextButtons->show();
     setFixedSize(m_contextButtons->size());
-    m_contextButtons->setVisible(false);
 
-    // center this widget horizontally to middle of the panel contents area
+    // center this widget horizontally to middle of the panel contents area and set outside of
+    // the view
     const int FROM_PANEL_CONTENTS_LEFT = PANEL_WIDTH / 2 - m_contextButtons->width() / 2;
+    move(PANEL_TAB_BAR_WIDTH + PANEL_BAR_WIDTH + FROM_PANEL_CONTENTS_LEFT, -size().height());
+
+    // update new target values for animations
+    m_animation->setStartValue(pos());
     const int Y = 0;
-    move(PANEL_TAB_BAR_WIDTH + PANEL_BAR_WIDTH + FROM_PANEL_CONTENTS_LEFT, Y);
+    m_animation->setEndValue(QPoint(pos().x(), Y));
+}
+
+void ListItemContextButtonBar::hideContextButtonBar()
+{
+    qDebug() << __PRETTY_FUNCTION__;
+
+    m_state = StateClosing;
+    m_animation->setDirection(QAbstractAnimation::Backward);
+    m_animation->start();
+}
+
+void ListItemContextButtonBar::onAnimationFinished()
+{
+    qDebug() << __PRETTY_FUNCTION__;
+
+    if (m_animation->direction() == QAbstractAnimation::Backward) {
+        m_state = StateHidden;
+        if (m_newContextButtons) {
+            changeButtons();
+            if (m_waitForOpen) {
+                m_waitForOpen = false;
+                showContextButtonBar();
+            }
+        }
+    } else {
+        m_state = StateVisible;
+    }
+}
+
+void ListItemContextButtonBar::onListItemSelectionChanged(bool itemIsSelected)
+{
+    qDebug() << __PRETTY_FUNCTION__;
+
+    if (itemIsSelected) {
+        if (m_newContextButtons)
+            m_waitForOpen = true;
+        else if (m_state != StateVisible)
+            showContextButtonBar();
+    } else {
+        if (m_newContextButtons)
+            m_waitForOpen = false;
+        else if (m_state != StateHidden)
+            hideContextButtonBar();
+    }
+}
+
+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__;
+
+    m_newContextButtons = contextButtons;
+    m_waitForOpen = false;
+
+    if (m_state != StateHidden)
+        hideContextButtonBar();
+    else
+        changeButtons();
 }
 
 void ListItemContextButtonBar::showContextButtonBar()
 {
     qDebug() << __PRETTY_FUNCTION__;
 
+    m_state = StateOpening;
+    m_animation->setDirection(QAbstractAnimation::Forward);
+    m_animation->start();
 }