/usr/include/paraview/pqMultiBlockInspectorPanel.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 | /*=========================================================================
Program: ParaView
Module: pqMultiBlockInspectorPanel.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#ifndef pqMultiBlockInspectorPanel_h
#define pqMultiBlockInspectorPanel_h
#include "pqComponentsModule.h"
#include <QMap>
#include <QWidget>
#include <QPointer>
#include <QIcon>
#include "pqTimer.h" // needed for pqTimer.
#include <iostream>
class QModelIndex;
class QTreeWidget;
class QTreeWidgetItem;
class pqOutputPort;
class pqRepresentation;
class vtkDiscretizableColorTransferFunction;
class vtkEventQtSlotConnect;
class vtkPiecewiseFunction;
class vtkPVCompositeDataInformation;
class vtkSMProxy;
class PQCOMPONENTS_EXPORT pqMultiBlockInspectorPanel : public QWidget
{
Q_OBJECT
public:
pqMultiBlockInspectorPanel(QWidget *parent = 0);
~pqMultiBlockInspectorPanel();
pqOutputPort* getOutputPort() const;
pqRepresentation* getRepresentation() const;
QString lookupBlockName(unsigned int flatIndex) const;
public slots:
/// ParaView events
void onPortChanged(pqOutputPort *port);
void onRepresentationChanged(pqRepresentation *representation);
void onDataUpdated();
void setBlockVisibility(unsigned int index, bool visible);
void clearBlockVisibility(unsigned int index);
void setBlockVisibility(const QList<unsigned int>& indices, bool visible);
void clearBlockVisibility(const QList<unsigned int>& indices);
void setBlockColor(unsigned int index, const QColor &color);
void clearBlockColor(unsigned int index);
void setBlockColor(const QList<unsigned int>& indices, const QColor &color);
void clearBlockColor(const QList<unsigned int>& indices);
void setBlockOpacity(unsigned int index, double opacity);
void clearBlockOpacity(unsigned int index);
void setBlockOpacity(const QList<unsigned int> &indices, double opacity);
void clearBlockOpacity(const QList<unsigned int> &indices);
void promptAndSetBlockOpacity(unsigned int index);
void promptAndSetBlockOpacity(const QList<unsigned int> &indices);
void showOnlyBlock(unsigned int index);
void showOnlyBlocks(const QList<unsigned int>& indices);
void showAllBlocks();
private slots:
/// ParaView events
void onSelectionChanged(pqOutputPort *port);
void onColorArrayNameModified();
void onCustomContextMenuRequested(const QPoint &pos);
void onItemChanged(QTreeWidgetItem *item, int column);
void updateTree();
void updateTree(vtkPVCompositeDataInformation *iter,
QTreeWidgetItem *parent,
int& flatIndex, bool visibility,
int inheritedColorIndex,
int inheritedOpacityIndex);
void onItemSelectionChanged();
void onItemDoubleClicked(QTreeWidgetItem * item, int column);
void updateBlockVisibilities();
void updateBlockColors();
void updateBlockOpacities();
private:
Q_DISABLE_COPY(pqMultiBlockInspectorPanel)
enum NodeType
{
INTERNAL_NODE,
LEAF_NODE
};
void buildTree(vtkPVCompositeDataInformation *iter,
QTreeWidgetItem *parent,
int& flatIndex, // composite-data id
int& leafIndex); // leaf-only index.
void unsetChildVisibilities(QTreeWidgetItem *parent);
QIcon makeColorIcon(int flatIndex, NodeType nodeType,
int inheritedColorIndex, int leafIndex=-1) const;
QIcon makeOpacityIcon(int flatIndex, NodeType nodeType,
int inheritedOpacityIndex) const;
QIcon makeNullIcon() const;
private:
QTreeWidget *TreeWidget;
QPointer<pqOutputPort> OutputPort;
QPointer<pqRepresentation> Representation;
QMap<unsigned int, bool> BlockVisibilites;
QMap<unsigned int, QColor> BlockColors;
QMap<unsigned int, double> BlockOpacities;
vtkEventQtSlotConnect *PropertyListener;
vtkSMProxy *ColorTransferProxy;
vtkDiscretizableColorTransferFunction* ColorTransferFunction;
vtkPiecewiseFunction* OpacityTransferFunction;
unsigned int BlockColorsDistinctValues;
int CompositeWrap;
pqTimer UpdateUITimer;
struct BlockIcon
{
bool HasColor;
bool HasOpacity;
QColor Color;
double Opacity;
bool operator<(const BlockIcon &other) const
{
QColor c = this->HasColor ? this->Color : QColor();
c.setAlphaF(this->HasOpacity ? this->Opacity : 1.0);
QColor oc = other.HasColor ? other.Color : QColor();
oc.setAlphaF(other.HasOpacity ? other.Opacity : 1.0);
return c.rgba() < oc.rgba();
}
};
};
#endif // pqMultiBlockInspectorPanel_h
|