89 lines
3.2 KiB
C++
89 lines
3.2 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2015 Stefan Tröger <stefantroeger@gmx.net> *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef Fem_FemPostPipeline_H
|
|
#define Fem_FemPostPipeline_H
|
|
|
|
#include "FemPostObject.h"
|
|
#include "FemPostFilter.h"
|
|
#include "FemPostFunction.h"
|
|
#include "FemResultObject.h"
|
|
|
|
#include <vtkSmartPointer.h>
|
|
#include <vtkDataSet.h>
|
|
|
|
namespace Fem
|
|
{
|
|
|
|
class AppFemExport FemPostPipeline : public Fem::FemPostFilter
|
|
{
|
|
PROPERTY_HEADER(Fem::FemPostPipeline);
|
|
|
|
public:
|
|
/// Constructor
|
|
FemPostPipeline(void);
|
|
virtual ~FemPostPipeline();
|
|
|
|
App::PropertyLinkList Filter;
|
|
App::PropertyLink Functions;
|
|
App::PropertyEnumeration Mode;
|
|
|
|
short mustExecute(void) const;
|
|
virtual App::DocumentObjectExecReturn* execute(void);
|
|
//PyObject* getPyObject();
|
|
|
|
virtual const char* getViewProviderName(void) const {
|
|
return "FemGui::ViewProviderFemPostPipeline";
|
|
}
|
|
|
|
//load data from files
|
|
static bool canRead(Base::FileInfo file);
|
|
void read(Base::FileInfo file);
|
|
|
|
//load from results
|
|
void load(FemResultObject* res);
|
|
|
|
//Pipeline handling
|
|
FemPostObject* getLastPostObject();
|
|
bool holdsPostObject(FemPostObject* obj);
|
|
|
|
protected:
|
|
virtual void onChanged(const App::Property* prop);
|
|
|
|
private:
|
|
static const char* ModeEnums[];
|
|
|
|
template<class TReader> void readXMLFile(std::string file) {
|
|
|
|
vtkSmartPointer<TReader> reader = vtkSmartPointer<TReader>::New();
|
|
reader->SetFileName(file.c_str());
|
|
reader->Update();
|
|
Data.setValue(reader->GetOutput());
|
|
}
|
|
};
|
|
|
|
} //namespace Fem
|
|
|
|
|
|
#endif // Fem_FemPostPipeline_H
|