pqExampleVisualizationsDialogReaction.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
3 // SPDX-License-Identifier: BSD-3-Clause
4 #ifndef pqExampleVisualizationsDialogReaction_h
5 #define pqExampleVisualizationsDialogReaction_h
6 
7 #include "pqReaction.h"
8 
16 {
17  Q_OBJECT
18  typedef pqReaction Superclass;
19 
20 public:
23 
27  static void showExampleVisualizationsDialog();
28 
29 protected:
33  void onTriggered() override
34  {
36  }
37 
38 private:
40 };
41 
42 #endif
pqExampleVisualizationsDialogReaction is used to show the pqExampleVisualizationsDialog when the acti...
void onTriggered() override
Called when the action is triggered.
#define PQAPPLICATIONCOMPONENTS_EXPORT
static void showExampleVisualizationsDialog()
Shows the example visualizations dialog.
This is a superclass just to make it easier to collect all such reactions.
Definition: pqReaction.h:25