mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
200 lines
6.1 KiB
C++
200 lines
6.1 KiB
C++
/*=========================================================================
|
|
|
|
Program: ParaView
|
|
Module: pqAnimationKeyFrame.cxx
|
|
|
|
Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
|
|
All rights reserved.
|
|
|
|
ParaView is a free software; you can redistribute it and/or modify it
|
|
under the terms of the ParaView license version 1.2.
|
|
|
|
See License_v1.2.txt for the full ParaView license.
|
|
A copy of this license can be obtained by contacting
|
|
Kitware Inc.
|
|
28 Corporate Drive
|
|
Clifton Park, NY 12065
|
|
USA
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
=========================================================================*/
|
|
|
|
#include "pqAnimationKeyFrame.h"
|
|
|
|
#include <QPainter>
|
|
#include <QFontMetrics>
|
|
#include <QWidget>
|
|
#include <QGraphicsView>
|
|
#include "pqAnimationTrack.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
pqAnimationKeyFrame::pqAnimationKeyFrame(pqAnimationTrack* p)
|
|
: QObject(p), QGraphicsItem(p),
|
|
NormalizedStartTime(0), NormalizedEndTime(1),
|
|
Rect(0,0,1,1)
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
pqAnimationKeyFrame::~pqAnimationKeyFrame()
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
pqAnimationTrack* pqAnimationKeyFrame::parentTrack() const
|
|
{
|
|
return qobject_cast<pqAnimationTrack*>(this->QObject::parent());
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
QVariant pqAnimationKeyFrame::startValue() const
|
|
{
|
|
return this->StartValue;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
QVariant pqAnimationKeyFrame::endValue() const
|
|
{
|
|
return this->EndValue;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
QIcon pqAnimationKeyFrame::icon() const
|
|
{
|
|
return this->Icon;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
double pqAnimationKeyFrame::normalizedStartTime() const
|
|
{
|
|
return this->NormalizedStartTime;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
double pqAnimationKeyFrame::normalizedEndTime() const
|
|
{
|
|
return this->NormalizedEndTime;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqAnimationKeyFrame::setNormalizedStartTime(double t)
|
|
{
|
|
this->NormalizedStartTime = t;
|
|
this->adjustRect();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqAnimationKeyFrame::setNormalizedEndTime(double t)
|
|
{
|
|
this->NormalizedEndTime = t;
|
|
this->adjustRect();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqAnimationKeyFrame::setStartValue(const QVariant& v)
|
|
{
|
|
this->StartValue = v;
|
|
this->update();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqAnimationKeyFrame::setEndValue(const QVariant& v)
|
|
{
|
|
this->EndValue = v;
|
|
this->update();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqAnimationKeyFrame::setIcon(const QIcon& i)
|
|
{
|
|
this->Icon = i;
|
|
this->update();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
QRectF pqAnimationKeyFrame::boundingRect() const
|
|
{
|
|
return this->Rect;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqAnimationKeyFrame::setBoundingRect(const QRectF& r)
|
|
{
|
|
this->removeFromIndex();
|
|
this->Rect = r;
|
|
this->addToIndex();
|
|
this->update();
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqAnimationKeyFrame::adjustRect()
|
|
{
|
|
pqAnimationTrack* track = qobject_cast<pqAnimationTrack*>(this->parent());
|
|
QRectF trackRect = track->boundingRect();
|
|
|
|
double w = trackRect.width();
|
|
|
|
double left = trackRect.left() + w * this->normalizedStartTime();
|
|
double right = trackRect.left() + w * this->normalizedEndTime();
|
|
|
|
this->setBoundingRect(QRectF(left, trackRect.top(), right-left, trackRect.height()));
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqAnimationKeyFrame::paint(QPainter* painter,
|
|
const QStyleOptionGraphicsItem *,
|
|
QWidget * widget)
|
|
{
|
|
painter->save();
|
|
if (this->parentTrack()->isEnabled())
|
|
{
|
|
// change brush only when parent track is enabled.
|
|
painter->setBrush(QBrush(QColor(255,255,255)));
|
|
}
|
|
QPen pen(QColor(0,0,0));
|
|
pen.setWidth(0);
|
|
painter->setPen(pen);
|
|
QRectF keyFrameRect(this->boundingRect());
|
|
painter->drawRect(keyFrameRect);
|
|
|
|
QFontMetrics metrics(widget->font());
|
|
double halfWidth = keyFrameRect.width()/2.0 - 5;
|
|
|
|
double iconWidth = keyFrameRect.width();
|
|
|
|
QString label = metrics.elidedText(startValue().toString(), Qt::ElideRight,
|
|
qRound(halfWidth));
|
|
QPointF pt(keyFrameRect.left()+3.0,
|
|
keyFrameRect.top() + 0.5*keyFrameRect.height() + metrics.height() / 2.0 - 1.0);
|
|
painter->drawText(pt, label);
|
|
iconWidth -= metrics.width(label);
|
|
|
|
label = metrics.elidedText(endValue().toString(), Qt::ElideRight,
|
|
qRound(halfWidth));
|
|
pt = QPointF(keyFrameRect.right() - metrics.width(label) - 3.0,
|
|
keyFrameRect.top() + 0.5*keyFrameRect.height() + metrics.height() / 2.0 - 1.0);
|
|
painter->drawText(pt, label);
|
|
iconWidth -= metrics.width(label);
|
|
|
|
if(iconWidth >= 16)
|
|
{
|
|
QPixmap pix = this->Icon.pixmap(16);
|
|
painter->drawPixmap(keyFrameRect.center() - QPointF(8.0,8.0), pix);
|
|
}
|
|
|
|
painter->restore();
|
|
}
|
|
|