mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- remove patch/point text labels upon deletion - combined client/server plugin instead of separate .so files first experiment with adding panel decorations - directory reorganization
35 lines
708 B
C++
35 lines
708 B
C++
#ifndef __pqPV3blockMeshReaderPanel_h
|
|
#define __pqPV3blockMeshReaderPanel_h
|
|
|
|
#include "pqAutoGeneratedObjectPanel.h"
|
|
#include <QLabel>
|
|
#include <QLayout>
|
|
|
|
//
|
|
// Custom panel for PV3blockMeshReader source.
|
|
//
|
|
class pqPV3blockMeshReaderPanel
|
|
:
|
|
public pqAutoGeneratedObjectPanel
|
|
{
|
|
Q_OBJECT;
|
|
typedef pqAutoGeneratedObjectPanel Superclass;
|
|
|
|
public:
|
|
pqPV3blockMeshReaderPanel(pqProxy *proxy, QWidget *p)
|
|
:
|
|
pqAutoGeneratedObjectPanel(proxy, p)
|
|
{
|
|
this->layout()->addWidget
|
|
(
|
|
new QLabel("Plugin for reading OpenFOAM blockMesh files", this)
|
|
);
|
|
}
|
|
|
|
//virtual ~pqPV3blockMeshReaderPanel();
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif //__pqPV3blockMeshReaderPanel_h
|