/usr/include/paraview/pqSignalAdaptorCompositeTreeWidget.h is in paraview-dev 5.0.1+dfsg1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 | /*=========================================================================
Program: ParaView
Module: pqSignalAdaptorCompositeTreeWidget.h
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.
========================================================================*/
#ifndef pqSignalAdaptorCompositeTreeWidget_h
#define pqSignalAdaptorCompositeTreeWidget_h
#include <QObject>
#include <QVariant>
#include "pqComponentsModule.h"
class pqTreeWidgetItem;
class QTreeWidget;
class QTreeWidgetItem;
class vtkPVDataInformation;
class vtkSMIntVectorProperty;
class vtkSMOutputPort;
class vtkSMSourceProxy;
/// pqSignalAdaptorCompositeTreeWidget is used to connect a property with
/// vtkSMCompositeTreeDomain as its domain to a Tree widget. It updates the tree
/// to show composite data tree.
/// Caveats: This widget does not handle SINGLE_ITEM selection where non-leaves
/// are acceptable.
class PQCOMPONENTS_EXPORT pqSignalAdaptorCompositeTreeWidget : public QObject
{
Q_OBJECT
typedef QObject Superclass;
Q_PROPERTY(QList<QVariant> values READ values WRITE setValues)
public:
enum IndexModes
{
INDEX_MODE_FLAT,
INDEX_MODE_LEVEL_INDEX, // this mode works only for 1 level deep trees.
INDEX_MODE_LEVEL, // this mode works only for 1 level deep trees.
};
/// Constructor. \c domain is used to build the tree layout to show in the
/// widget.
/// \c autoUpdateWidgetVisibility - is true, the tree widget is hidden if the
/// data information says that the data is
/// not composite.
/// \c showSelectedElementCounts - when true, next to each leaf node, an entry
/// will be added showing the number of
/// selected elements (cells|points).
pqSignalAdaptorCompositeTreeWidget(QTreeWidget*, vtkSMIntVectorProperty* smproperty,
bool autoUpdateWidgetVisibility=false,
bool showSelectedElementCounts=false);
/// Alternate constructor.
/// \c outputport - the output port producing the composite dataset to show.
/// \c domainMode - vtkSMCompositeTreeDomain::ALL|LEAVES|NON_LEAVES|NONE.
/// Indicates what types of nodes in the composite tree
/// are selectable.
/// \c indexMode - indicates how the values are set/get (using
/// composite-flat-index, using level-dataset-index or using
/// only the level number.
/// \c selectMultiple - true if possible to select multiple nodes.
/// \c autoUpdateWidgetVisibility - is true, the tree widget is hidden if the
/// data information says that the data is
/// not composite.
/// \c showSelectedElementCounts - when true, next to each leaf node, an entry
/// will be added showing the number of
/// selected elements (cells|points).
pqSignalAdaptorCompositeTreeWidget(QTreeWidget*, vtkSMOutputPort* outputport,
int domainMode,
IndexModes indexMode=INDEX_MODE_FLAT,
bool selectMultiple=false,
bool autoUpdateWidgetVisibility=false,
bool showSelectedElementCounts=false);
/// Destructor
virtual ~pqSignalAdaptorCompositeTreeWidget();
/// Returns the current value.
/// This is a QList of unsigned ints.
QList<QVariant> values() const;
/// When set, the adaptor will update the visibility of the widget depending
/// on whether the data is composite or not.
void setAutoUpdateWidgetVisibility(bool val)
{ this->AutoUpdateWidgetVisibility = val; }
bool autoUpdateWidgetVisibility() const
{ return this->AutoUpdateWidgetVisibility; }
/// Select the item with the given flat index.
void select(unsigned int flatIndex);
/// API to get information about the currently selected item.
/// Returns the flat index for the current item.
unsigned int getCurrentFlatIndex(bool* valid=NULL);
/// API to get information about an item.
/// Returns the block name for the item.
QString blockName(const QTreeWidgetItem* item) const;
/// API to get information about an item.
/// Returns the AMR level for the item if valid.
unsigned int hierarchicalLevel(const QTreeWidgetItem* item) const;
/// API to get information about an item.
/// Returns the AMR block number for the item if valid.
unsigned int hierarchicalBlockIndex(const QTreeWidgetItem* item) const;
/// API to get information about an item.
/// Returns the flat index for the item.
unsigned int flatIndex(const QTreeWidgetItem* item) const;
public slots:
/// Set the values.
void setValues(const QList<QVariant>& values);
/// Called when domain changes.
void domainChanged();
/// Called when the output port says that the data information has been
/// updated.
void portInformationChanged();
signals:
/// Fired when the widget value changes.
void valuesChanged();
private slots:
/// Called to update the labels to show the current selected elements
/// information.
void updateSelectionCounts();
private:
pqSignalAdaptorCompositeTreeWidget(const pqSignalAdaptorCompositeTreeWidget&); // Not implemented.
void operator=(const pqSignalAdaptorCompositeTreeWidget&); // Not implemented.
/// Set up the callback to know when the selection changes, so that we can
/// update the selected cells/points counts.
void setupSelectionUpdatedCallback(vtkSMSourceProxy* source, unsigned int port);
void buildTree(pqTreeWidgetItem* item,
vtkPVDataInformation* info);
/// updates the check flags for all the items.
void updateItemFlags();
class pqInternal;
pqInternal* Internal;
enum MetaData
{
FLAT_INDEX = Qt::UserRole,
AMR_LEVEL_NUMBER = Qt::UserRole+1,
AMR_BLOCK_INDEX = Qt::UserRole+2,
NODE_TYPE = Qt::UserRole+3,
ORIGINAL_LABEL = Qt::UserRole+4,
BLOCK_NAME = Qt::UserRole+5
};
enum NodeTypes
{
LEAF = 21,
NON_LEAF = 22,
};
enum CheckModes
{
SINGLE_ITEM,
MULTIPLE_ITEMS
};
IndexModes IndexMode;
// Determines if the widget should allow checking only 1 item at a time or
// multiple items should be check-able.
CheckModes CheckMode;
// These are used by buildTree() to determin indices for the nodes.
unsigned int FlatIndex;
unsigned int LevelNo;
bool AutoUpdateWidgetVisibility;
bool ShowFlatIndex;
bool ShowSelectedElementCounts;
// When set to true, all pieces within a multipiece are shown.
bool ShowDatasetsInMultiPiece;
/// Code common to both variants of the constructor.
void constructor(QTreeWidget* tree, bool autoUpdateVisibility);
/// Called when an item check state is toggled. This is used only when
/// this->CheckMode == SINGLE_ITEM. We uncheck all other items.
void updateCheckState(pqTreeWidgetItem* item, int column);
friend class pqCallbackAdaptor;
class pqCallbackAdaptor;
pqCallbackAdaptor* CallbackAdaptor;
};
#endif
|