Files
ThirdParty-6/ParaView-5.0.1/Qt/Widgets/pqAnimationWidget.cxx

337 lines
10 KiB
C++

/*=========================================================================
Program: ParaView
Module: pqAnimationWidget.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 "pqAnimationWidget.h"
#include <QGraphicsView>
#include <QHBoxLayout>
#include <QHeaderView>
#include <QResizeEvent>
#include <QScrollBar>
#include <QStyle>
#include <QStyleOptionButton>
#include "pqAnimationModel.h"
#include "pqAnimationTrack.h"
pqAnimationWidget::pqAnimationWidget(QWidget* p)
: QAbstractScrollArea(p)
{
this->View = new QGraphicsView(this->viewport());
this->viewport()->setBackgroundRole(QPalette::Window);
this->View->setBackgroundRole(QPalette::Window);
this->View->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
this->View->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
this->View->setAlignment(Qt::AlignLeft | Qt::AlignTop);
this->View->setFrameShape(QFrame::NoFrame);
this->Model = new pqAnimationModel(this->View);
this->View->setScene(this->Model);
this->CreateDeleteHeader = new QHeaderView(Qt::Vertical, this);
this->CreateDeleteHeader->viewport()->setBackgroundRole(QPalette::Window);
this->CreateDeleteHeader->setSizePolicy(QSizePolicy::Minimum,
QSizePolicy::MinimumExpanding);
#if QT_VERSION >= 0x050000
this->CreateDeleteHeader->setSectionResizeMode(QHeaderView::Fixed);
this->CreateDeleteHeader->setSectionsClickable(true);
#else
this->CreateDeleteHeader->setResizeMode(QHeaderView::Fixed);
this->CreateDeleteHeader->setClickable(true);
#endif
this->CreateDeleteHeader->setModel(&this->CreateDeleteModel);
this->EnabledHeader = new QHeaderView(Qt::Vertical, this);
this->EnabledHeader->setObjectName("EnabledHeader");
this->EnabledHeader->viewport()->setBackgroundRole(QPalette::Window);
this->EnabledHeader->setSizePolicy(QSizePolicy::Preferred,
QSizePolicy::MinimumExpanding);
#if QT_VERSION >= 0x050000
this->EnabledHeader->setSectionResizeMode(QHeaderView::Fixed);
this->EnabledHeader->setSectionsClickable(true);
#else
this->EnabledHeader->setResizeMode(QHeaderView::Fixed);
this->EnabledHeader->setClickable(true);
#endif
this->EnabledHeader->setModel(this->Model->enabledHeader());
this->Header = new QHeaderView(Qt::Vertical, this);
this->Header->viewport()->setBackgroundRole(QPalette::Window);
this->Header->setObjectName("TrackHeader");
this->Header->setSizePolicy(QSizePolicy::Preferred,
QSizePolicy::MinimumExpanding);
this->View->setSizePolicy(QSizePolicy::Preferred,
QSizePolicy::MinimumExpanding);
#if QT_VERSION >= 0x050000
this->Header->setSectionResizeMode(QHeaderView::Fixed);
#else
this->Header->setResizeMode(QHeaderView::Fixed);
#endif
this->Header->setMinimumSectionSize(0);
this->Header->setModel(this->Model->header());
this->Model->setRowHeight(this->Header->defaultSectionSize());
this->CreateDeleteWidget = new QWidget(this);
this->CreateDeleteWidget->setObjectName("CreateDeleteWidget");
QObject::connect(this->Header->model(),
SIGNAL(rowsInserted(QModelIndex,int,int)),
this, SLOT(updateSizes()));
QObject::connect(this->Header->model(),
SIGNAL(headerDataChanged(Qt::Orientation, int, int)),
this, SLOT(updateSizes()));
QObject::connect(this->Header->model(),
SIGNAL(rowsRemoved(QModelIndex,int,int)),
this, SLOT(updateSizes()));
QObject::connect(this->Header,
SIGNAL(sectionDoubleClicked(int)),
this, SLOT(headerDblClicked(int)));
QObject::connect(this->Model,
SIGNAL(trackSelected(pqAnimationTrack*)),
this, SIGNAL(trackSelected(pqAnimationTrack*)));
QObject::connect(this->CreateDeleteHeader,
SIGNAL(sectionClicked(int)),
this, SLOT(headerDeleteClicked(int)));
QObject::connect(this->EnabledHeader,
SIGNAL(sectionClicked(int)),
this, SLOT(headerEnabledClicked(int)));
}
pqAnimationWidget::~pqAnimationWidget()
{
}
pqAnimationModel* pqAnimationWidget::animationModel() const
{
return this->Model;
}
QHeaderView* pqAnimationWidget::createDeleteHeader() const
{
return this->CreateDeleteHeader;
}
QHeaderView* pqAnimationWidget::enabledHeader() const
{
return this->EnabledHeader;
}
QWidget* pqAnimationWidget::createDeleteWidget() const
{
return this->CreateDeleteWidget;
}
void pqAnimationWidget::updateSizes()
{
this->CreateDeleteModel.clear();
this->CreateDeleteModel.insertRow(0);
this->CreateDeleteModel.setHeaderData(0, Qt::Vertical, QVariant(), Qt::DisplayRole);
int num = this->Model->count();
for(int i=0; i<num; i++)
{
this->CreateDeleteModel.insertRow(i+1);
if(this->Model->track(i)->isDeletable())
{
this->CreateDeleteModel.setHeaderData(i+1, Qt::Vertical,
QPixmap(":/QtWidgets/Icons/pqDelete16.png"), Qt::DecorationRole);
}
this->CreateDeleteModel.setHeaderData(i+1, Qt::Vertical, QVariant(), Qt::DisplayRole);
}
this->CreateDeleteModel.insertRow(this->Header->count());
this->CreateDeleteModel.setHeaderData(this->Header->count(), Qt::Vertical,
QPixmap(":/QtWidgets/Icons/pqPlus16.png"), Qt::DecorationRole);
this->updateGeometries();
}
void pqAnimationWidget::headerDblClicked(int which)
{
if(which > 0)
{
emit this->trackSelected(this->Model->track(which-1));
}
}
void pqAnimationWidget::updateGeometries()
{
int width1 = 0;
int width2 = 0;
int width3 = 0;
if(!this->CreateDeleteHeader->isHidden())
{
int tmp = qMax(this->CreateDeleteHeader->minimumWidth(),
this->CreateDeleteHeader->sizeHint().width());
width1 = qMin(tmp, this->CreateDeleteHeader->maximumWidth());
}
if(!this->Header->isHidden())
{
int tmp = qMax(this->Header->minimumWidth(),
this->Header->sizeHint().width());
width2 = qMin(tmp, this->Header->maximumWidth());
}
if (!this->EnabledHeader->isHidden())
{
// get the size of a checkbox in pixels. That's the width we want
// (+ padding) for the EnabledHeader.
QStyleOptionButton option;
QRect r = this->style()->subElementRect(
QStyle::SE_CheckBoxIndicator, &option, this);
width3 = r.width()+8;
}
this->setViewportMargins(width1 + width2 + width3, 0, 0, 0);
QRect vg = this->contentsRect();
this->CreateDeleteHeader->setGeometry(vg.left(), vg.top(), width1, vg.height());
this->EnabledHeader->setGeometry(vg.left()+width1, vg.top(), width3, vg.height());
this->Header->setGeometry(vg.left() + width1 + width3, vg.top(), width2, vg.height());
this->updateScrollBars();
}
void pqAnimationWidget::scrollContentsBy(int dx, int dy)
{
if(dy)
{
this->CreateDeleteHeader->setOffset(this->verticalScrollBar()->value());
this->Header->setOffset(this->verticalScrollBar()->value());
this->EnabledHeader->setOffset(this->verticalScrollBar()->value());
}
this->updateWidgetPosition();
QAbstractScrollArea::scrollContentsBy(dx, dy);
}
void pqAnimationWidget::updateScrollBars()
{
int h = this->View->sizeHint().height();
int extraw = 0;
int viewh = h;
if(this->CreateDeleteHeader->isVisible())
{
h = qMax(h, this->CreateDeleteHeader->length());
}
if (this->EnabledHeader->isVisible())
{
h = qMax(h, this->EnabledHeader->length());
}
if(this->Header->isVisible())
{
h = qMax(h, this->Header->length());
extraw = this->Header->width();
viewh = h;
}
QSize vsize = this->viewport()->size();
this->View->resize(vsize.width(), viewh);
this->CreateDeleteWidget->resize(vsize.width()+extraw,
this->Header->defaultSectionSize());
this->updateWidgetPosition();
this->verticalScrollBar()->setPageStep(vsize.height());
this->verticalScrollBar()->setRange(0, h-vsize.height());
}
void pqAnimationWidget::updateWidgetPosition()
{
int s = this->verticalScrollBar()->value();
this->View->move(0, -s);
if(this->CreateDeleteHeader->isVisible())
{
int xpos = this->CreateDeleteHeader->frameGeometry().right()+1;
int ypos = 2+(this->CreateDeleteHeader->count()-1)*
this->CreateDeleteHeader->defaultSectionSize() -
this->CreateDeleteHeader->offset();
this->CreateDeleteWidget->raise();
this->CreateDeleteWidget->move(xpos, ypos);
}
else
{
this->CreateDeleteWidget->lower();
}
}
bool pqAnimationWidget::event(QEvent* e)
{
if(e->type() == QEvent::FontChange)
{
this->Model->setRowHeight(this->Header->defaultSectionSize());
}
if(e->type() == QEvent::Show)
{
this->updateGeometries();
}
return QAbstractScrollArea::event(e);
}
void pqAnimationWidget::resizeEvent(QResizeEvent* e)
{
this->updateScrollBars();
QAbstractScrollArea::resizeEvent(e);
}
void pqAnimationWidget::headerDeleteClicked(int which)
{
if(which > 0)
{
if(which == this->CreateDeleteHeader->count() - 1)
{
emit this->createTrackClicked();
}
else
{
pqAnimationTrack* t = this->Model->track(which-1);
if(t && t->isDeletable())
{
emit this->deleteTrackClicked(t);
}
}
}
}
void pqAnimationWidget::headerEnabledClicked(int which)
{
if (which > 0)
{
pqAnimationTrack* track = this->Model->track(which-1);
if (track)
{
emit this->enableTrackClicked(track);
}
}
}