Part: Rename ViewProviderPartExtPy class files

This commit is contained in:
marioalexis
2024-06-03 03:37:45 -03:00
committed by wwmayer
parent 77fc1de6c3
commit ac533ef3f1
3 changed files with 3 additions and 5 deletions

View File

@@ -0,0 +1,71 @@
// SPDX-License-Identifier: LGPL-2.1-or-later
/***************************************************************************
* Copyright (c) 2024 David Carter <dcarter@david.carter.ca> *
* *
* This file is part of FreeCAD. *
* *
* FreeCAD is free software: you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation, either version 2.1 of the *
* License, or (at your option) any later version. *
* *
* FreeCAD 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 *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with FreeCAD. If not, see *
* <https://www.gnu.org/licenses/>. *
* *
**************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#include <sstream>
#endif
#include <App/GeoFeature.h>
#include <App/PropertyStandard.h>
#include "ViewProviderPartExtPy.h"
#include "ViewProviderPartExtPy.cpp"
using namespace PartGui;
// returns a string which represents the object e.g. when printed in python
std::string ViewProviderPartExtPy::representation() const
{
std::stringstream str;
str << "<View provider geometry object at " << getViewProviderPartExtPtr() << ">";
return str.str();
}
PyObject* ViewProviderPartExtPy::getCustomAttributes(const char* attr) const
{
ViewProviderPartExt* vp = getViewProviderPartExtPtr();
if (strcmp(attr, "DiffuseColor") == 0) {
// Get the color properties
App::PropertyColorList prop;
prop.setValues(vp->ShapeAppearance.getDiffuseColors());
return prop.getPyObject();
}
return nullptr;
}
int ViewProviderPartExtPy::setCustomAttributes(const char* attr, PyObject* obj)
{
ViewProviderPartExt* vp = getViewProviderPartExtPtr();
if (strcmp(attr, "DiffuseColor") == 0) {
// Set the color properties
App::PropertyColorList prop;
prop.setPyObject(obj);
vp->ShapeAppearance.setDiffuseColors(prop.getValues());
return 1;
}
return 0;
}