pqRescaleScalarRangeToDataOverTimeDialog.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 
5 #ifndef pqRescaleScalarRangeToDataOverTimeDialog_h
6 #define pqRescaleScalarRangeToDataOverTimeDialog_h
7 
8 #include "pqComponentsModule.h"
9 
10 #include <QDialog>
11 #include <memory>
12 
13 class pqRescaleScalarRangeToDataOverTimeDialogForm;
14 
20 {
21  Q_OBJECT
22 public:
23  pqRescaleScalarRangeToDataOverTimeDialog(QWidget* parent = nullptr);
25 
29  void setLock(bool lock);
30 
34  bool doLock() const;
35 
36 Q_SIGNALS:
40  void apply();
41 
42 protected Q_SLOTS:
46  void rescale();
47 
48 protected: // NOLINT(readability-redundant-access-specifiers)
49  std::unique_ptr<pqRescaleScalarRangeToDataOverTimeDialogForm> Form;
50 };
51 
52 #endif
#define PQCOMPONENTS_EXPORT
pqRescaleScalarRangeToDataOverTimeDialog provides a dialog to be able to rescale the active lookup ta...
std::unique_ptr< pqRescaleScalarRangeToDataOverTimeDialogForm > Form