/usr/include/paraview/pqWelcomeDialog.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 33 34 35 36 | #ifndef PQWELCOMEDIALOG_H
#define PQWELCOMEDIALOG_H
#include <QDialog>
#include "pqApplicationComponentsModule.h"
namespace Ui {
class pqWelcomeDialog;
}
/// This class provides a welcome dialog screen that you see in many applications.
/// The intent is to provide an on-ramp with a lower learning curve than the blank
/// ParaView screen.
class PQAPPLICATIONCOMPONENTS_EXPORT pqWelcomeDialog : public QDialog
{
Q_OBJECT
typedef QDialog Superclass;
public:
explicit pqWelcomeDialog(QWidget* parent = 0);
virtual ~pqWelcomeDialog();
public slots:
virtual void onGettingStartedGuideClicked();
virtual void onExampleVisualizationsClicked();
protected slots:
/// React to checkbox events
void onDoNotShowAgainStateChanged(int);
private:
Ui::pqWelcomeDialog* ui;
};
#endif // PQWELCOMEDIALOG_H
|