pqRepresentationToolbar.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 pqRepresentationToolbar_h
5 #define pqRepresentationToolbar_h
6 
8 #include <QToolBar>
9 
16 {
17  Q_OBJECT
18  typedef QToolBar Superclass;
19 
20 public:
21  pqRepresentationToolbar(const QString& title, QWidget* parentObject = nullptr)
22  : Superclass(title, parentObject)
23  {
24  this->constructor();
25  }
26  pqRepresentationToolbar(QWidget* parentObject = nullptr)
27  : Superclass(parentObject)
28  {
29  this->constructor();
30  }
31 
32 private:
33  Q_DISABLE_COPY(pqRepresentationToolbar)
34  void constructor();
35 };
36 
37 #endif
pqRepresentationToolbar(QWidget *parentObject=nullptr)
#define PQAPPLICATIONCOMPONENTS_EXPORT
pqRepresentationToolbar is the toolbar which allows the user to choose the representation type for th...
pqRepresentationToolbar(const QString &title, QWidget *parentObject=nullptr)