pqViewFrameActionsInterface.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 pqViewFrameActionsInterface_h
5 #define pqViewFrameActionsInterface_h
6 
7 #include "pqComponentsModule.h"
8 #include <QtPlugin>
9 
10 class pqViewFrame;
11 class pqView;
12 
20 {
21 public:
22  virtual ~pqViewFrameActionsInterface();
23 
29  virtual void frameConnected(pqViewFrame* frame, pqView* view) = 0;
30 
31 private:
32 };
33 Q_DECLARE_INTERFACE(pqViewFrameActionsInterface, "com.kitware/paraview/viewframeactions");
34 #endif
#define PQCOMPONENTS_EXPORT
pqViewFrameActionsInterface is an interface used by pqMultiViewWidget to add actions/toolbuttons to p...
Q_DECLARE_INTERFACE(pqViewFrameActionsInterface, "com.kitware/paraview/viewframeactions")
pqViewFrame is used to represent a frame for any ParaView view shown in the pqMultiViewWidget.
Definition: pqViewFrame.h:31
This is a PQ abstraction of a generic view module.
Definition: pqView.h:26