This file is indexed.

/usr/include/paraview/pqPropertyLinks.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
/*=========================================================================

   Program: ParaView
   Module:    $RCSfile$

   Copyright (c) 2005,2006 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 pqPropertyLinks_h
#define pqPropertyLinks_h

#include <QObject>
#include <QtDebug>

#include "pqCoreModule.h"
#include "pqPropertyLinksConnection.h" // needed for pqPropertyLinksConnection.

class vtkSMProperty;
class vtkSMProxy;

/// pqPropertyLinks is used to connect vtkSMProperty and subclasses to
/// properties on QObject instances. pqPropertyLinks enables setting up a link
/// between QWidgets and vtkSMProperty's so that whenever one of them changes,
/// the other is updated as well.
///
/// vtkSMProperty has two types of values, checked and unchecked. This class by
/// default uses checked values, but it can be told to use unchecked values using
/// setUseUncheckedProperties(). When setUseUncheckedProperties() is set to
/// true, one can use accept()/reset() to accept or discard any changes
/// to the vtkSMProperty.
///
/// When setUseUncheckedProperties() is set to false (default), one can set
/// setAutoUpdateVTKObjects() to true (default false) to ensure that
/// vtkSMProxy::UpdateVTKObjects() is called whenever the property changes.
///
/// This class uses weak-references to both the Qt and ServerManager objects
/// hence it's safe to destroy either of those without updating the
/// pqPropertyLinks instance.
///
/// Also, pqPropertyLinks never uses any delayed timers or connections.
class PQCORE_EXPORT pqPropertyLinks : public QObject
{
  Q_OBJECT
  typedef QObject Superclass;
public:
  pqPropertyLinks(QObject* parent=0);
  virtual ~pqPropertyLinks();

  /// Setup a link between a Qt property and vtkSMProperty on a vtkSMProxy
  /// instance. The QObject is updated using the vtkSMProperty's current value
  /// immediately.
  /// Arguments:
  /// \li \c qobject :- the Qt object
  /// \li \c qproperty :- the Qt property name on \c qobject that can be used to
  ///                     get/set the object's value(s).
  /// \li \c qsignal :- signal fired by the \c qobject whenever it's property
  ///                   value changes.
  /// \li \c smproxy :- the vtkSMProxy instance.
  /// \li \c smproperty :- the vtkSMProperty from the \c proxy.
  /// \li \c smindex :- for multi-element properties, specify a non-negative
  ///                 value to link to a particular element of the
  ///                 vtkSMProperty..
  /// Returns false if link adding fails for some reason.
  bool addPropertyLink(
    QObject* qobject, const char* qproperty, const char* qsignal,
    vtkSMProxy* smproxy, vtkSMProperty* smproperty, int smindex=-1)
    {
    return this->addPropertyLink<pqPropertyLinksConnection>(
      qobject, qproperty, qsignal, smproxy, smproperty, smindex);
    }

  template <class ConnectionType>
  bool addPropertyLink(
    QObject* qobject, const char* qproperty, const char* qsignal,
    vtkSMProxy* smproxy, vtkSMProperty* smproperty, int smindex=-1,
    ConnectionType* notused=NULL);

  /// Remove a particular link.
  bool removePropertyLink(
    QObject* qobject, const char* qproperty, const char* qsignal,
    vtkSMProxy* smproxy, vtkSMProperty* smproperty, int smindex=-1);

  bool autoUpdateVTKObjects() const
    { return this->AutoUpdateVTKObjects; }
  bool useUncheckedProperties() const
    { return this->UseUncheckedProperties; }

public slots:
  /// Remove all links.
  void removeAllPropertyLinks() { this->clear(); }
  void clear();

  /// When UseUncheckedProperties == true, the smproperty values are not changed
  /// whenever the qobject is modified. Use this method to change the smproperty
  /// values using the current qobject values.
  void accept();

  /// Set the qobject values using the smproperty values. This also clears any
  /// unchecked values that may be set on the smproperty.
  void reset();

  /// set whether to use unchecked properties on the server manager
  /// one may get/set unchecked properties to get domain updates before an
  /// accept is done
  void setUseUncheckedProperties(bool val);

  /// set whether UpdateVTKObjects is called automatically when needed
  void setAutoUpdateVTKObjects(bool val)
    { this->AutoUpdateVTKObjects = val; }

signals:
  void qtWidgetChanged();
  void smPropertyChanged();


private slots:
  /// slots called when pqPropertyLinksConnection indicates that a Qt or SM
  /// property was changed.
  void onQtPropertyModified();
  void onSMPropertyModified();

private:
  bool addNewConnection(pqPropertyLinksConnection*);

private:
  Q_DISABLE_COPY(pqPropertyLinks);

  class pqInternals;
  pqInternals* Internals;
  bool UseUncheckedProperties;
  bool AutoUpdateVTKObjects;
};

//-----------------------------------------------------------------------------
template <class ConnectionType>
bool pqPropertyLinks::addPropertyLink(
  QObject* qobject, const char* qproperty, const char* qsignal,
  vtkSMProxy* smproxy, vtkSMProperty* smproperty, int smindex,
  ConnectionType*)
{
  if (!qobject || !qproperty || !qsignal || !smproxy || !smproperty)
    {
    qCritical() << "Invalid parameters to pqPropertyLinks::addPropertyLink";
    qDebug() << "(" << qobject << ", " << qproperty << ", " << qsignal
      << ") <==> ("
      << (smproxy? smproxy->GetXMLName() : "(none)")
      << "," << (smproperty? smproperty->GetXMLLabel() : "(none)")
      << smindex << ")";
    return false;
    }
  pqPropertyLinksConnection* connection = new ConnectionType(
    qobject, qproperty, qsignal, smproxy, smproperty, smindex,
    this->useUncheckedProperties(), this);
  return this->addNewConnection(connection);
}


#endif