mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
153 lines
5.3 KiB
C++
153 lines
5.3 KiB
C++
/*=========================================================================
|
|
|
|
Program: ParaView
|
|
Module: pqPluginTreeWidgetEventTranslator.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 "pqPluginTreeWidgetEventTranslator.h"
|
|
|
|
#include "pqPluginTreeWidget.h"
|
|
|
|
#include <QTreeView>
|
|
#include <QEvent>
|
|
|
|
//-----------------------------------------------------------------------------
|
|
pqPluginTreeWidgetEventTranslator::pqPluginTreeWidgetEventTranslator(QObject* parentObject)
|
|
: Superclass(parentObject)
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
pqPluginTreeWidgetEventTranslator::~pqPluginTreeWidgetEventTranslator()
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
bool pqPluginTreeWidgetEventTranslator::translateEvent(
|
|
QObject* object, QEvent* tr_event, bool& /*error*/)
|
|
{
|
|
pqPluginTreeWidget* treeWidget = qobject_cast<pqPluginTreeWidget*>(object);
|
|
if(!treeWidget)
|
|
{
|
|
// mouse events go to the viewport widget
|
|
treeWidget = qobject_cast<pqPluginTreeWidget*>(object->parent());
|
|
}
|
|
if(!treeWidget)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (tr_event->type() == QEvent::FocusIn)
|
|
{
|
|
if(this->TreeView)
|
|
{
|
|
QObject::disconnect(this->TreeView, 0, this, 0);
|
|
QObject::disconnect(this->TreeView->selectionModel(), 0, this, 0);
|
|
}
|
|
|
|
QObject::connect(treeWidget, SIGNAL(clicked(const QModelIndex&)),
|
|
this, SLOT(onItemChanged(const QModelIndex&)));
|
|
QObject::connect(treeWidget, SIGNAL(expanded(const QModelIndex&)),
|
|
this, SLOT(onExpanded(const QModelIndex&)));
|
|
QObject::connect(treeWidget, SIGNAL(collapsed(const QModelIndex&)),
|
|
this, SLOT(onCollapsed(const QModelIndex&)));
|
|
QObject::connect(treeWidget->selectionModel(),
|
|
SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)),
|
|
this, SLOT(onCurrentChanged(const QModelIndex&)));
|
|
this->TreeView = treeWidget;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqPluginTreeWidgetEventTranslator::onItemChanged(
|
|
const QModelIndex& index)
|
|
{
|
|
QTreeView* treeWidget = qobject_cast<QTreeView*>(this->sender());
|
|
QString str_index = this->getIndexAsString(index);
|
|
if ( (index.model()->flags(index) & Qt::ItemIsUserCheckable) != 0)
|
|
{
|
|
// record the check state change if the item is user-checkable.
|
|
emit this->recordEvent( treeWidget, "setCheckState",
|
|
QString("%1,%3").arg(str_index).arg(
|
|
index.model()->data(index,Qt::CheckStateRole).toInt()));
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqPluginTreeWidgetEventTranslator::onExpanded(const QModelIndex& index)
|
|
{
|
|
QTreeView* treeWidget = qobject_cast<QTreeView*>(this->sender());
|
|
|
|
// record the check state change if the item is user-checkable.
|
|
emit this->recordEvent( treeWidget, "expand",
|
|
this->getIndexAsString(index));
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqPluginTreeWidgetEventTranslator::onCollapsed(const QModelIndex& index)
|
|
{
|
|
QTreeView* treeWidget = qobject_cast<QTreeView*>(this->sender());
|
|
|
|
// record the check state change if the item is user-checkable.
|
|
emit this->recordEvent( treeWidget, "collapse",
|
|
this->getIndexAsString(index));
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
QString pqPluginTreeWidgetEventTranslator::getIndexAsString(const QModelIndex& index)
|
|
{
|
|
QModelIndex curIndex = index;
|
|
QString str_index;
|
|
while (curIndex.isValid())
|
|
{
|
|
str_index.prepend(QString("%1.%2.").arg(curIndex.row()).arg(curIndex.column()));
|
|
curIndex = curIndex.parent();
|
|
}
|
|
|
|
// remove the last ".".
|
|
str_index.chop(1);
|
|
return str_index;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqPluginTreeWidgetEventTranslator::onCurrentChanged(const QModelIndex& index)
|
|
{
|
|
pqPluginTreeWidget * treeWidget = this->TreeView;
|
|
|
|
if (treeWidget && index.isValid())
|
|
{
|
|
QTreeWidgetItem * currentItem = treeWidget->currentItem();
|
|
if(currentItem)
|
|
{
|
|
emit this->recordEvent(treeWidget, "setCurrent", currentItem->text(0));
|
|
}
|
|
}
|
|
}
|