/*========================================================================= Program: ParaView Module: pqDataInformationWidget.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 "pqDataInformationWidget.h" // Qt includes. #include #include #include #include #include // ParaView includes. #include "pqActiveObjects.h" #include "pqApplicationCore.h" #include "pqDataInformationModel.h" #include "pqNonEditableStyledItemDelegate.h" #include "pqOutputPort.h" #include "pqPipelineSource.h" #include "pqSectionVisibilityContextMenu.h" #include "pqSelectionAdaptor.h" #include "pqServerManagerModel.h" #include "pqSetName.h" #include "vtkSMOutputPort.h" namespace { class pqDataInformationModelSelectionAdaptor : public pqSelectionAdaptor { public: pqDataInformationModelSelectionAdaptor( QItemSelectionModel* diModel) : pqSelectionAdaptor(diModel) { } protected: /// subclasses can override this method to provide model specific selection /// overrides such as QItemSelection::Rows or QItemSelection::Columns etc. virtual QItemSelectionModel::SelectionFlag qtSelectionFlags() const { return QItemSelectionModel::Rows; } /// Maps a pqServerManagerModelItem to an index in the QAbstractItemModel. virtual QModelIndex mapFromItem(pqServerManagerModelItem* item) const { const pqDataInformationModel* pM = qobject_cast( this->getQModel()); pqOutputPort* outputPort = qobject_cast(item); if (outputPort) { return pM->getIndexFor(outputPort); } pqPipelineSource* src = qobject_cast(item); return pM->getIndexFor(src? src->getOutputPort(0) : 0); } /// Maps a QModelIndex to a pqServerManagerModelItem. virtual pqServerManagerModelItem* mapToItem(const QModelIndex& index) const { const pqDataInformationModel* pM = qobject_cast( this->getQModel()); return pM->getItemFor(index); } }; } //----------------------------------------------------------------------------- pqDataInformationWidget::pqDataInformationWidget(QWidget* _parent /*=0*/) : QWidget(_parent) { this->Model = new pqDataInformationModel(this); this->View = new QTableView(this); this->View->setItemDelegate(new pqNonEditableStyledItemDelegate(this)); // We provide the sorting proxy model QSortFilterProxyModel *proxyModel = new QSortFilterProxyModel(this); proxyModel->setSourceModel(this->Model); this->View->setModel(proxyModel); this->View->verticalHeader()->hide(); this->View->installEventFilter(this); #if QT_VERSION >= 0x050000 this->View->horizontalHeader()->setSectionsMovable(true); #else this->View->horizontalHeader()->setMovable(true); #endif this->View->horizontalHeader()->setHighlightSections(false); this->View->horizontalHeader()->setStretchLastSection(true); //this->View->horizontalHeader()->setSortIndicatorShown(true); this->View->setSelectionBehavior(QAbstractItemView::SelectRows); //this->View->sortByColumn(0); QVBoxLayout * _layout = new QVBoxLayout(this); if (_layout) { _layout->setMargin(0); _layout->addWidget(this->View); } pqServerManagerModel* smModel = pqApplicationCore::instance()->getServerManagerModel(); QObject::connect(smModel, SIGNAL(sourceAdded(pqPipelineSource*)), this->Model, SLOT(addSource(pqPipelineSource*))); QObject::connect(smModel, SIGNAL(sourceRemoved(pqPipelineSource*)), this->Model, SLOT(removeSource(pqPipelineSource*))); QObject::connect(&pqActiveObjects::instance(), SIGNAL(viewChanged(pqView*)), this->Model, SLOT(setActiveView(pqView*))); this->Model->setActiveView(pqActiveObjects::instance().activeView()); // Clicking on the header should sort the column. QObject::connect(this->View->horizontalHeader(), SIGNAL(sectionClicked(int)), this->View, SLOT(sortByColumn(int))); // Set the context menu policy for the header. this->View->horizontalHeader()->setContextMenuPolicy(Qt::CustomContextMenu); QObject::connect(this->View->horizontalHeader(), SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showHeaderContextMenu(const QPoint&))); this->View->setContextMenuPolicy(Qt::CustomContextMenu); QObject::connect(this->View, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showBodyContextMenu(const QPoint&))); new pqDataInformationModelSelectionAdaptor(this->View->selectionModel()); } //----------------------------------------------------------------------------- pqDataInformationWidget::~pqDataInformationWidget() { delete this->View; delete this->Model; } //----------------------------------------------------------------------------- bool pqDataInformationWidget::eventFilter(QObject* object, QEvent *evt) { return QWidget::eventFilter(object, evt); } //----------------------------------------------------------------------------- void pqDataInformationWidget::showHeaderContextMenu(const QPoint& _pos) { QHeaderView* header = this->View->horizontalHeader(); pqSectionVisibilityContextMenu menu; menu.setObjectName("DataInformationHeaderContextMenu"); menu.setHeaderView(header); menu.exec(this->View->mapToGlobal(_pos)); } //----------------------------------------------------------------------------- void pqDataInformationWidget::showBodyContextMenu(const QPoint& _pos) { QMenu menu; menu.setObjectName("DataInformationBodyContextMenu"); QAction* action = menu.addAction("Column Titles") << pqSetName("ColumnTitles"); action->setCheckable(true); action->setChecked(this->View->horizontalHeader()->isVisible()); if (menu.exec(this->View->mapToGlobal(_pos)) == action) { this->View->horizontalHeader()->setVisible(action->isChecked()); } }