ParaView
pqWelcomeDialog.h
Go to the documentation of this file.
1 #ifndef PQWELCOMEDIALOG_H
2 #define PQWELCOMEDIALOG_H
3 
4 #include "pqApplicationComponentsModule.h"
5 #include <QDialog>
6 
7 namespace Ui {
8 class pqWelcomeDialog;
9 }
10 
14 class PQAPPLICATIONCOMPONENTS_EXPORT pqWelcomeDialog : public QDialog
15 {
16  Q_OBJECT
17  typedef QDialog Superclass;
18 
19 public:
20  explicit pqWelcomeDialog(QWidget* parent = 0);
21  virtual ~pqWelcomeDialog();
22 
23 public slots:
24  virtual void onGettingStartedGuideClicked();
25 
26  virtual void onExampleVisualizationsClicked();
27 
28 protected slots:
30  void onDoNotShowAgainStateChanged(int);
31 
32 private:
33  Ui::pqWelcomeDialog* ui;
34 };
35 
36 #endif // PQWELCOMEDIALOG_H
This class provides a welcome dialog screen that you see in many applications.