120 lines
4.3 KiB
C++
120 lines
4.3 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2014 Luke Parry <l.parry@warwick.ac.uk> *
|
|
* *
|
|
* 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"
|
|
|
|
#ifndef _PreComp_
|
|
# include <sstream>
|
|
#endif
|
|
|
|
#include <Base/Console.h>
|
|
#include <Base/Writer.h>
|
|
|
|
#include "DrawProjGroup.h"
|
|
#include "DrawProjGroupItem.h"
|
|
|
|
#include <Mod/TechDraw/App/DrawProjGroupItemPy.h> // generated from DrawProjGroupItemPy.xml
|
|
|
|
|
|
using namespace TechDraw;
|
|
|
|
const char* DrawProjGroupItem::TypeEnums[] = {"Front",
|
|
"Left",
|
|
"Right",
|
|
"Rear",
|
|
"Top",
|
|
"Bottom",
|
|
"FrontTopLeft",
|
|
"FrontTopRight",
|
|
"FrontBottomLeft",
|
|
"FrontBottomRight",
|
|
NULL};
|
|
|
|
|
|
PROPERTY_SOURCE(TechDraw::DrawProjGroupItem, TechDraw::DrawViewPart)
|
|
|
|
DrawProjGroupItem::DrawProjGroupItem(void)
|
|
{
|
|
Type.setEnums(TypeEnums);
|
|
ADD_PROPERTY(Type, ((long)0));
|
|
|
|
//projection group controls these
|
|
Direction.setStatus(App::Property::ReadOnly,true);
|
|
Scale.setStatus(App::Property::ReadOnly,true);
|
|
ScaleType.setStatus(App::Property::ReadOnly,true);
|
|
}
|
|
|
|
short DrawProjGroupItem::mustExecute() const
|
|
{
|
|
if (Type.isTouched())
|
|
return 1;
|
|
return TechDraw::DrawViewPart::mustExecute();
|
|
}
|
|
|
|
void DrawProjGroupItem::onChanged(const App::Property *prop)
|
|
{
|
|
//TODO: Should we allow changes to the Type here? Seems that should be handled through DrawProjGroup
|
|
if (prop == &Type && Type.isTouched()) {
|
|
if (!isRestoring()) {
|
|
execute();
|
|
}
|
|
}
|
|
|
|
TechDraw::DrawViewPart::onChanged(prop);
|
|
|
|
}
|
|
|
|
DrawProjGroupItem::~DrawProjGroupItem()
|
|
{
|
|
}
|
|
|
|
void DrawProjGroupItem::onDocumentRestored()
|
|
{
|
|
// setAutoPos(false); //if restoring from file, use X,Y from file, not auto!
|
|
App::DocumentObjectExecReturn* rc = DrawProjGroupItem::execute();
|
|
if (rc) {
|
|
delete rc;
|
|
}
|
|
}
|
|
|
|
DrawProjGroup* DrawProjGroupItem::getGroup()
|
|
{
|
|
DrawProjGroup* result = nullptr;
|
|
std::vector<App::DocumentObject*> parent = getInList();
|
|
for (std::vector<App::DocumentObject*>::iterator it = parent.begin(); it != parent.end(); ++it) {
|
|
if ((*it)->getTypeId().isDerivedFrom(DrawProjGroup::getClassTypeId())) {
|
|
result = dynamic_cast<TechDraw::DrawProjGroup *>(*it);
|
|
break;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
PyObject *DrawProjGroupItem::getPyObject(void)
|
|
{
|
|
if (PythonObject.is(Py::_None())) {
|
|
// ref counter is set to 1
|
|
PythonObject = Py::Object(new DrawProjGroupItemPy(this),true);
|
|
}
|
|
return Py::new_reference_to(PythonObject);
|
|
}
|