92 lines
3.9 KiB
C++
92 lines
3.9 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2007 Werner Mayer <wmayer[at]users.sourceforge.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 *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "PreCompiled.h"
|
|
|
|
#include <Base/PyWrapParseTupleAndKeywords.h>
|
|
|
|
#include "PartFeature.h"
|
|
|
|
// inclusion of the generated files (generated out of PartFeaturePy.xml)
|
|
#include "PartFeaturePy.h"
|
|
#include "PartFeaturePy.cpp"
|
|
|
|
|
|
using namespace Part;
|
|
|
|
// returns a string which represent the object e.g. when printed in python
|
|
std::string PartFeaturePy::representation() const
|
|
{
|
|
return {"<Part::PartFeature>"};
|
|
}
|
|
|
|
PyObject *PartFeaturePy::getElementHistory(PyObject *args, PyObject *kwds) {
|
|
const char *name;
|
|
PyObject *recursive = Py_True;
|
|
PyObject *sameType = Py_False;
|
|
PyObject *showName = Py_False;
|
|
|
|
static const std::array<const char *, 5> kwlist{"elementName", "recursive", "sameType", "showName", nullptr};
|
|
if (!Base::Wrapped_ParseTupleAndKeywords(args, kwds, "s|OOO", kwlist, &name, &recursive, &sameType, &showName)) {
|
|
return {};
|
|
}
|
|
|
|
auto feature = getFeaturePtr();
|
|
Py::List list;
|
|
bool showObjName = PyObject_IsTrue(showName);
|
|
PY_TRY {
|
|
std::string tmp;
|
|
for (auto &history: Feature::getElementHistory(feature, name,
|
|
PyObject_IsTrue(recursive), PyObject_IsTrue(sameType))) {
|
|
Py::Tuple ret(3);
|
|
if (history.obj) {
|
|
if (showObjName) {
|
|
ret.setItem(0, Py::TupleN(Py::String(history.obj->getFullName()),
|
|
Py::String(history.obj->Label.getValue())));
|
|
} else
|
|
ret.setItem(0, Py::Object(history.obj->getPyObject(), true));
|
|
} else
|
|
ret.setItem(0, Py::Long(history.tag));
|
|
tmp.clear();
|
|
ret.setItem(1, Py::String(history.element.appendToBuffer(tmp)));
|
|
Py::List intermedates;
|
|
for (auto &h: history.intermediates) {
|
|
tmp.clear();
|
|
intermedates.append(Py::String(h.appendToBuffer(tmp)));
|
|
}
|
|
ret.setItem(2, intermedates);
|
|
list.append(ret);
|
|
}
|
|
return Py::new_reference_to(list);
|
|
} PY_CATCH;
|
|
}
|
|
|
|
PyObject *PartFeaturePy::getCustomAttributes(const char* ) const
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
int PartFeaturePy::setCustomAttributes(const char* , PyObject *)
|
|
{
|
|
return 0;
|
|
}
|