You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
550 B
C++
29 lines
550 B
C++
#ifndef NMWXPOSTPROCESSINGWIDGET_H
|
|
#define NMWXPOSTPROCESSINGWIDGET_H
|
|
|
|
#include "nmSubWxs_global.h"
|
|
#include <QWidget>
|
|
#include <QVBoxLayout>
|
|
|
|
class NM_SUB_WXS_EXPORT nmWxPostprocessingWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
nmWxPostprocessingWidget(QWidget *parent = nullptr);
|
|
|
|
private:
|
|
void initUI();
|
|
void initLayout();
|
|
void initVTKWidget();
|
|
public:
|
|
void loadVTKFile(const QString &filePath);
|
|
|
|
private:
|
|
// 布局
|
|
QVBoxLayout* m_mainLayout;
|
|
QVBoxLayout* m_frameLaoyt;
|
|
};
|
|
|
|
#endif // NMWXPOSTPROCESSINGWIDGET_H
|