"Professional CMake" book suggest the following: "Targets should build successfully with or without compiler support for precompiled headers. It should be considered an optimization, not a requirement. In particular, do not explicitly include a precompile header (e.g. stdafx.h) in the source code, let CMake force-include an automatically generated precompile header on the compiler command line instead. This is more portable across the major compilers and is likely to be easier to maintain. It will also avoid warnings being generated from certain code checking tools like iwyu (include what you use)." Therefore, removed the "#include <PreCompiled.h>" from sources, also there is no need for the "#ifdef _PreComp_" anymore
206 lines
7.3 KiB
C++
206 lines
7.3 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2010 Jürgen Riegel <juergen.riegel@web.de> *
|
|
* *
|
|
* 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 <Base/Console.h>
|
|
#include <Base/Reader.h>
|
|
#include <Base/Writer.h>
|
|
|
|
#include "PropertyCosmeticEdgeList.h"
|
|
#include "CosmeticEdgePy.h"
|
|
|
|
|
|
using namespace App;
|
|
using namespace Base;
|
|
using namespace TechDraw;
|
|
|
|
//**************************************************************************
|
|
// PropertyCosmeticEdgeList
|
|
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
|
|
TYPESYSTEM_SOURCE(TechDraw::PropertyCosmeticEdgeList, App::PropertyLists)
|
|
|
|
//**************************************************************************
|
|
// Construction/Destruction
|
|
|
|
|
|
PropertyCosmeticEdgeList::PropertyCosmeticEdgeList()
|
|
{
|
|
|
|
}
|
|
|
|
PropertyCosmeticEdgeList::~PropertyCosmeticEdgeList()
|
|
{
|
|
}
|
|
|
|
void PropertyCosmeticEdgeList::setSize(int newSize)
|
|
{
|
|
_lValueList.resize(newSize);
|
|
}
|
|
|
|
int PropertyCosmeticEdgeList::getSize() const
|
|
{
|
|
return static_cast<int>(_lValueList.size());
|
|
}
|
|
|
|
|
|
//_lValueList is not const. so why do we pass a const parameter?
|
|
void PropertyCosmeticEdgeList::setValue(CosmeticEdge* lValue)
|
|
{
|
|
// Base::Console().message("PCEL::setValue() - current values: %d lValue: %s\n", _lValueList.size(), lValue ? "valid" : "null");
|
|
if (lValue) {
|
|
aboutToSetValue();
|
|
_lValueList.resize(1);
|
|
_lValueList[0] = lValue;
|
|
hasSetValue();
|
|
}
|
|
}
|
|
|
|
void PropertyCosmeticEdgeList::setValues(const std::vector<CosmeticEdge*>& lValue)
|
|
{
|
|
// Base::Console().message("PCEL::seValues() - in values: %d current values: %d\n", lValue.size(), _lValueList.size());
|
|
aboutToSetValue();
|
|
_lValueList.resize(lValue.size());
|
|
if (!lValue.empty()) {
|
|
for (unsigned int i = 0; i < lValue.size(); i++)
|
|
_lValueList[i] = lValue[i];
|
|
}
|
|
hasSetValue();
|
|
}
|
|
|
|
PyObject *PropertyCosmeticEdgeList::getPyObject()
|
|
{
|
|
PyObject* list = PyList_New(getSize());
|
|
for (int i = 0; i < getSize(); i++)
|
|
PyList_SetItem( list, i, _lValueList[i]->getPyObject());
|
|
return list;
|
|
}
|
|
|
|
void PropertyCosmeticEdgeList::setPyObject(PyObject *value)
|
|
{
|
|
if (PySequence_Check(value)) {
|
|
Py::Sequence sequence(value);
|
|
Py_ssize_t nSize = sequence.size();
|
|
std::vector<CosmeticEdge*> values;
|
|
values.resize(nSize);
|
|
|
|
for (Py_ssize_t i=0; i < nSize; ++i) {
|
|
Py::Object item = sequence.getItem(i);
|
|
if (!PyObject_TypeCheck(item.ptr(), &(CosmeticEdgePy::Type))) {
|
|
std::string error = std::string("types in list must be 'CosmeticEdge', not ");
|
|
error += item.ptr()->ob_type->tp_name;
|
|
throw Base::TypeError(error);
|
|
}
|
|
|
|
values[i] = static_cast<CosmeticEdgePy*>(item.ptr())->getCosmeticEdgePtr();
|
|
}
|
|
|
|
setValues(values);
|
|
}
|
|
else if (PyObject_TypeCheck(value, &(CosmeticEdgePy::Type))) {
|
|
CosmeticEdgePy *pcObject = static_cast<CosmeticEdgePy*>(value);
|
|
setValue(pcObject->getCosmeticEdgePtr());
|
|
}
|
|
else {
|
|
std::string error = std::string("type must be 'CosmeticEdge' or list of 'CosmeticEdge', not ");
|
|
error += value->ob_type->tp_name;
|
|
throw Base::TypeError(error);
|
|
}
|
|
}
|
|
|
|
void PropertyCosmeticEdgeList::Save(Writer &writer) const
|
|
{
|
|
writer.Stream() << writer.ind() << "<CosmeticEdgeList count=\"" << getSize() << "\">"
|
|
<< std::endl;
|
|
writer.incInd();
|
|
for (int i = 0; i < getSize(); i++) {
|
|
writer.Stream() << writer.ind() << "<CosmeticEdge type=\""
|
|
<< _lValueList[i]->getTypeId().getName() << "\">" << std::endl;
|
|
writer.incInd();
|
|
_lValueList[i]->Save(writer);
|
|
writer.decInd();
|
|
writer.Stream() << writer.ind() << "</CosmeticEdge>" << std::endl;
|
|
}
|
|
writer.decInd();
|
|
writer.Stream() << writer.ind() << "</CosmeticEdgeList>" << std::endl;
|
|
}
|
|
|
|
void PropertyCosmeticEdgeList::Restore(Base::XMLReader &reader)
|
|
{
|
|
// read my element
|
|
reader.clearPartialRestoreObject();
|
|
reader.readElement("CosmeticEdgeList");
|
|
// get the value of my attribute
|
|
int count = reader.getAttribute<long>("count");
|
|
std::vector<CosmeticEdge*> values;
|
|
values.reserve(count);
|
|
for (int i = 0; i < count; i++) {
|
|
reader.readElement("CosmeticEdge");
|
|
const char* TypeName = reader.getAttribute<const char*>("type");
|
|
CosmeticEdge *newG = static_cast<CosmeticEdge *>(Base::Type::fromName(TypeName).createInstance());
|
|
newG->Restore(reader);
|
|
|
|
if(reader.testStatus(Base::XMLReader::ReaderStatus::PartialRestoreInObject)) {
|
|
Base::Console().error("CosmeticEdge \"%s\" within a PropertyCosmeticEdgeList was subject to a partial restore.\n", reader.localName());
|
|
if(isOrderRelevant()) {
|
|
// Pushes the best try by the CosmeticEdge class
|
|
values.push_back(newG);
|
|
}
|
|
else {
|
|
delete newG;
|
|
}
|
|
reader.clearPartialRestoreObject();
|
|
}
|
|
else {
|
|
values.push_back(newG);
|
|
}
|
|
|
|
reader.readEndElement("CosmeticEdge");
|
|
}
|
|
|
|
reader.readEndElement("CosmeticEdgeList");
|
|
|
|
// assignment
|
|
setValues(values);
|
|
}
|
|
|
|
App::Property *PropertyCosmeticEdgeList::Copy() const
|
|
{
|
|
PropertyCosmeticEdgeList *p = new PropertyCosmeticEdgeList();
|
|
p->setValues(_lValueList);
|
|
return p;
|
|
}
|
|
|
|
void PropertyCosmeticEdgeList::Paste(const Property &from)
|
|
{
|
|
const PropertyCosmeticEdgeList& FromList = dynamic_cast<const PropertyCosmeticEdgeList&>(from);
|
|
setValues(FromList._lValueList);
|
|
}
|
|
|
|
unsigned int PropertyCosmeticEdgeList::getMemSize() const
|
|
{
|
|
int size = sizeof(PropertyCosmeticEdgeList);
|
|
for (int i = 0; i < getSize(); i++)
|
|
size += _lValueList[i]->getMemSize();
|
|
return size;
|
|
}
|