/usr/include/paraview/pqExampleVisualizationsDialog.h is in paraview-dev 5.1.2+dfsg1-2.
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 | #ifndef PQEXAMPLEVISUALIZATIONSDIALOG_H
#define PQEXAMPLEVISUALIZATIONSDIALOG_H
#include <QDialog>
#include "pqApplicationComponentsModule.h"
namespace Ui {
class pqExampleVisualizationsDialog;
}
/// pqExampleVisualizationsDialog is a dialog used to show available example
/// visualizations to the user. The user can select one of the examples and load
/// them. This requires that ParaView tutorial data is available at specific
/// locations relative to the executable (see implementation for details).
class PQAPPLICATIONCOMPONENTS_EXPORT pqExampleVisualizationsDialog : public QDialog
{
Q_OBJECT
typedef QDialog Superclass;
public:
explicit pqExampleVisualizationsDialog(QWidget* parent = 0);
virtual ~pqExampleVisualizationsDialog();
protected slots:
virtual void onButtonPressed();
private:
Ui::pqExampleVisualizationsDialog* ui;
};
#endif // PQEXAMPLEVISUALIZATIONSDIALOG_H
|