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