104 lines
3.8 KiB
C++
104 lines
3.8 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2008 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/Interpreter.h>
|
|
#include <Base/PlacementPy.h>
|
|
#include <Base/GeometryPyCXX.h>
|
|
|
|
// inclusion of the generated files (generated out of ViewProviderAssemblyPy.xml)
|
|
#include "ViewProviderAssemblyPy.h"
|
|
#include "ViewProviderAssemblyPy.cpp"
|
|
|
|
|
|
using namespace Gui;
|
|
|
|
// returns a string which represents the object e.g. when printed in python
|
|
std::string ViewProviderAssemblyPy::representation() const
|
|
{
|
|
std::stringstream str;
|
|
str << "<Assembly View provider object at " << getViewProviderAssemblyPtr() << ">";
|
|
|
|
return str.str();
|
|
}
|
|
|
|
Py::Boolean ViewProviderAssemblyPy::getEnableMovement() const
|
|
{
|
|
return {getViewProviderAssemblyPtr()->getEnableMovement()};
|
|
}
|
|
|
|
void ViewProviderAssemblyPy::setEnableMovement(Py::Boolean arg)
|
|
{
|
|
getViewProviderAssemblyPtr()->setEnableMovement(arg);
|
|
}
|
|
|
|
Py::Boolean ViewProviderAssemblyPy::getDraggerVisibility() const
|
|
{
|
|
return {getViewProviderAssemblyPtr()->getDraggerVisibility()};
|
|
}
|
|
|
|
void ViewProviderAssemblyPy::setDraggerVisibility(Py::Boolean arg)
|
|
{
|
|
getViewProviderAssemblyPtr()->setDraggerVisibility(arg);
|
|
}
|
|
|
|
PyObject* ViewProviderAssemblyPy::getDragger(PyObject* args)
|
|
{
|
|
if (!PyArg_ParseTuple(args, "")) {
|
|
return nullptr;
|
|
}
|
|
Gui::SoFCCSysDragger* asmDragger = getViewProviderAssemblyPtr()->getDragger();
|
|
|
|
return Base::Interpreter().createSWIGPointerObj("pivy.coin", "SoDragger *", asmDragger, 0);
|
|
}
|
|
|
|
|
|
Py::Object ViewProviderAssemblyPy::getDraggerPlacement() const
|
|
{
|
|
return Py::Placement(getViewProviderAssemblyPtr()->getDraggerPlacement());
|
|
}
|
|
|
|
void ViewProviderAssemblyPy::setDraggerPlacement(Py::Object arg)
|
|
{
|
|
PyObject* p = arg.ptr();
|
|
if (PyObject_TypeCheck(p, &(Base::PlacementPy::Type))) {
|
|
Base::Placement* trf = static_cast<Base::PlacementPy*>(p)->getPlacementPtr();
|
|
getViewProviderAssemblyPtr()->setDraggerPlacement(*trf);
|
|
}
|
|
else {
|
|
std::string error = std::string("type must be 'Placement', not ");
|
|
error += p->ob_type->tp_name;
|
|
throw Py::TypeError(error);
|
|
}
|
|
}
|
|
|
|
PyObject* ViewProviderAssemblyPy::getCustomAttributes(const char* /*attr*/) const
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
int ViewProviderAssemblyPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
|
|
{
|
|
return 0;
|
|
}
|