This file is indexed.

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

   Program: ParaView
   Module:    pqEventTranslator.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 _pqEventTranslator_h
#define _pqEventTranslator_h

#include "QtTestingExport.h"
#include <QObject>

class pqEventComment;
class pqTestUtility;
class pqWidgetEventTranslator;

/**
Manages serialization of user interaction for test-cases, demos, tutorials, etc.
pqEventTranslator installs itself as a global Qt event "filter" that receives notification of every Qt event.  Each event is passed
through a collection of pqWidgetEventTranslator objects, until one of them "handles" the event.  The pqWidgetEventTranslator objects
convert low-level Qt events (mouse move, button down, key released, etc) into high-level ParaView events (button clicked, row selected, etc)
that can be serialized as text.  Once an event translator is found, the recordEvent() signal is emitted with the name of the widget
that is receiving the event, plus the serialized event.  Observers such as pqEventObserverXML connect to the recordEvent() signal and
handle storage of the events.

\sa pqWidgetEventTranslator, pqEventObserverStdout, pqEventObserverXML, pqEventPlayer.
*/
class QTTESTING_EXPORT pqEventTranslator :
  public QObject
{
  Q_OBJECT

public:
  pqEventTranslator(QObject* p=0);
  ~pqEventTranslator();

  /** Adds the default set of widget translators to the working set.
  Translators are executed in order, so you may call addWidgetEventTranslator()
  with your own custom translators before calling this method,
  to "override" the default translators. */
  void addDefaultWidgetEventTranslators(pqTestUtility* util);
  /** Adds a new translator to the current working set of widget translators.
  pqEventTranslator assumes control of the lifetime of the supplied object.*/
  void addWidgetEventTranslator(pqWidgetEventTranslator*);
  /** Method to get a specific player */
  bool removeWidgetEventTranslator(const QString& className);
  /** Method to get a specific player */
  pqWidgetEventTranslator* getWidgetEventTranslator(const QString& className);

  /// Return a QList of all the Translators previously added.
  QList<pqWidgetEventTranslator*> translators() const;

  /// Add a new default eventComment in the scenario/recording to inform,
  /// intract with the user during the play back.
  void addDefaultEventManagers(pqTestUtility* util);
  /// Return the pqEventComment, to be able to add any comment events
  pqEventComment* eventComment() const;

  /// Adds a Qt object to a list of objects that should be ignored when
  /// translating events (useful to prevent recording UI events from being
  /// captured as part of the recording)
  void ignoreObject(QObject* Object);

  /// start listening to the GUI and translating events
  void start();
  
  /// stop listening to the GUI and translating events
  void stop();

signals:
  /// This signal will be emitted every time a translator generates a
  /// high-level ParaView event.  Observers should connect to this signal
  /// to serialize high-level events.
  void recordEvent(const QString& Object, const QString& Command, const QString& Arguments);

  /// this signals when recording starts
  void started();

  /// this signals when recording stops
  void stopped();

private slots:
  void onRecordEvent(QObject* Object, const QString& Command, const QString& Arguments);
  
private:
  pqEventTranslator(const pqEventTranslator&);
  pqEventTranslator& operator=(const pqEventTranslator&);

  bool eventFilter(QObject* Object, QEvent* Event);
  int getWidgetEventTranslatorIndex(const QString& className);

  struct pqImplementation;
  pqImplementation* const Implementation;
};

#endif // !_pqEventTranslator_h