pqLockPanelsReaction.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 pqLockPanelsReaction_h
5 #define pqLockPanelsReaction_h
6 
7 #include "pqReaction.h"
8 
10 class QMainWindow;
11 
19 {
20  Q_OBJECT
21  typedef pqReaction Superclass;
22 
23 public:
24  pqLockPanelsReaction(QAction* action);
25  ~pqLockPanelsReaction() override;
26 
27 public Q_SLOTS: // NOLINT(readability-redundant-access-specifiers)
28  void actionTriggered();
29 
30 private:
31  Q_DISABLE_COPY(pqLockPanelsReaction)
32 };
33 
34 #endif // pqLockPanelsReaction_h
Central location for controlling whether dock widgets are locked down or movable. ...
Reaction to toggle locking of dockable panels.
#define PQAPPLICATIONCOMPONENTS_EXPORT
This is a superclass just to make it easier to collect all such reactions.
Definition: pqReaction.h:25