/usr/include/paraview/pqMultiBlockInspectorPanel.h is in paraview-dev 4.0.1-1ubuntu1.
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 | /*=========================================================================
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 "pqTimer.h" // needed for pqTimer.
class QModelIndex;
class QTreeWidget;
class QTreeWidgetItem;
class pqOutputPort;
class pqRepresentation;
class vtkPVCompositeDataInformation;
class vtkEventQtSlotConnect;
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:
void setOutputPort(pqOutputPort *port);
void setRepresentation(pqRepresentation *representation);
void updateInformation();
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:
void treeWidgetCustomContextMenuRequested(const QPoint &pos);
void blockItemChanged(QTreeWidgetItem *item, int column);
void updateTreeWidgetBlockVisibilities();
void updateTreeWidgetBlockVisibilities(
vtkPVCompositeDataInformation *iter,
QTreeWidgetItem *parent,
unsigned int &flatIndex,
bool visibility);
void currentSelectionChanged(pqOutputPort *port);
void currentTreeItemSelectionChanged();
void updateBlockVisibilities();
void updateBlockColors();
void updateBlockOpacities();
private:
Q_DISABLE_COPY(pqMultiBlockInspectorPanel)
void buildTree(vtkPVCompositeDataInformation *iter,
QTreeWidgetItem *parent,
unsigned int &flatIndex);
void unsetChildVisibilities(QTreeWidgetItem *parent);
QIcon makeBlockIcon(unsigned int flatIndex) 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 *VisibilityPropertyListener;
pqTimer UpdateUITimer;
};
#endif // __pqMultiBlockInspectorPanel_h
|