pqSelectionLinkDialog.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 pqSelectionLinkDialog_h
5 #define pqSelectionLinkDialog_h
6 
7 #include "pqComponentsModule.h"
8 #include <QDialog>
9 
14 {
15  Q_OBJECT
16  typedef QDialog Superclass;
17 
18 public:
19  pqSelectionLinkDialog(QWidget* parent, Qt::WindowFlags f = Qt::WindowFlags{});
20  ~pqSelectionLinkDialog() override;
21 
27  void setEnableConvertToIndices(bool enable);
28 
32  bool convertToIndices() const;
33 
34 private:
35  Q_DISABLE_COPY(pqSelectionLinkDialog)
36 
37  class pqInternal;
38  pqInternal* Internal;
39 };
40 
41 #endif
#define PQCOMPONENTS_EXPORT
Dialog used to ask the user for selection link options.