pqDataInformationWidget.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 pqDataInformationWidget_h
5 #define pqDataInformationWidget_h
6 
7 #include "pqComponentsModule.h"
8 #include <QWidget>
9 
11 class QTableView;
12 
18 {
19  Q_OBJECT
20 public:
21  pqDataInformationWidget(QWidget* parent = nullptr);
22  ~pqDataInformationWidget() override;
23 
24 protected:
28  bool eventFilter(QObject* object, QEvent* event) override;
29 
30 private Q_SLOTS:
31  void showHeaderContextMenu(const QPoint&);
32  void showBodyContextMenu(const QPoint&);
33 
34 private: // NOLINT(readability-redundant-access-specifiers)
36  QTableView* View;
37 };
38 
39 #endif
#define PQCOMPONENTS_EXPORT
Widget for the DataInformation(or Statistics View).