Searched refs:m_zoomAnimation (Results 1 – 2 of 2) sorted by relevance
46 , m_zoomAnimation(0) in LauncherWindow()598 if (!m_zoomAnimation) { in applyZoom()599 m_zoomAnimation = new QPropertyAnimation(view, "scale"); in applyZoom()600 m_zoomAnimation->setStartValue(view->scale()); in applyZoom()601 connect(m_zoomAnimation, SIGNAL(finished()), this, SLOT(zoomAnimationFinished())); in applyZoom()603 m_zoomAnimation->stop(); in applyZoom()604 m_zoomAnimation->setStartValue(m_zoomAnimation->currentValue()); in applyZoom()607 m_zoomAnimation->setDuration(300); in applyZoom()608 m_zoomAnimation->setEndValue(qreal(m_currentZoom) / 100.); in applyZoom()609 m_zoomAnimation->start(); in applyZoom()
237 QPropertyAnimation* m_zoomAnimation; variable