138 lines
5.1 KiB
C++
138 lines
5.1 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2019 WandererFan <wandererfan@gmail.com> *
|
|
* *
|
|
* 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_
|
|
#endif
|
|
|
|
#include <App/Application.h>
|
|
#include <Base/Console.h>
|
|
#include <Base/Exception.h>
|
|
#include <Base/Parameter.h>
|
|
|
|
#include "DrawUtil.h"
|
|
|
|
#include <Mod/TechDraw/App/DrawTilePy.h> // generated from DrawTilePy.xml
|
|
#include "DrawTile.h"
|
|
|
|
using namespace TechDraw;
|
|
|
|
//===========================================================================
|
|
// DrawTile - attachable tile
|
|
//===========================================================================
|
|
|
|
PROPERTY_SOURCE(TechDraw::DrawTile, App::DocumentObject)
|
|
|
|
DrawTile::DrawTile(void)
|
|
{
|
|
static const char *group = "Tile";
|
|
|
|
ADD_PROPERTY_TYPE(TileParent,(0),group,(App::PropertyType)(App::Prop_None),
|
|
"Object to which this tile is attached");
|
|
ADD_PROPERTY_TYPE(TileRow, (0), group, App::Prop_None, "Row in parent object\n 0 for arrow side, -1 for other side");
|
|
ADD_PROPERTY_TYPE(TileColumn, (0), group, App::Prop_None, "Column in parent object");
|
|
|
|
// there is currently only one column, this don't allow to edit
|
|
TileColumn.setStatus(App::Property::ReadOnly, true);
|
|
// the row can only have the value 0 or -1
|
|
// allow its editing because this way the tiles can be flipped
|
|
TileRowConstraints.LowerBound = -1;
|
|
TileRowConstraints.UpperBound = 0;
|
|
TileRowConstraints.StepSize = 1;
|
|
TileRow.setConstraints(&TileRowConstraints);
|
|
}
|
|
|
|
DrawTile::~DrawTile()
|
|
{
|
|
}
|
|
|
|
void DrawTile::onChanged(const App::Property* prop)
|
|
{
|
|
if (!isRestoring()) {
|
|
//nothing in particular
|
|
}
|
|
DocumentObject::onChanged(prop);
|
|
|
|
}
|
|
|
|
short DrawTile::mustExecute() const
|
|
{
|
|
return DocumentObject::mustExecute();
|
|
}
|
|
|
|
App::DocumentObjectExecReturn *DrawTile::execute(void)
|
|
{
|
|
// Base::Console().Message("DT::execute()\n");
|
|
return DocumentObject::execute();
|
|
}
|
|
|
|
void DrawTile::handleChangedPropertyType(Base::XMLReader &reader, const char *TypeName, App::Property *prop)
|
|
// transforms properties that had been changed
|
|
{
|
|
// property TileRow had App::PropertyInteger and was changed to App::PropertyIntegerConstraint
|
|
if (prop == &TileRow && strcmp(TypeName, "App::PropertyInteger") == 0) {
|
|
App::PropertyInteger TileRowProperty;
|
|
// restore the PropertyInteger to be able to set its value
|
|
TileRowProperty.Restore(reader);
|
|
TileRow.setValue(TileRowProperty.getValue());
|
|
}
|
|
}
|
|
|
|
DrawView* DrawTile::getParent(void) const
|
|
{
|
|
// Base::Console().Message("DT::getParent() - %s\n", getNameInDocument());
|
|
DrawView* result = nullptr;
|
|
App::DocumentObject* baseObj = TileParent.getValue();
|
|
if (baseObj != nullptr) {
|
|
DrawView* cast = dynamic_cast<DrawView*>(baseObj);
|
|
if (cast != nullptr) {
|
|
result = cast;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
PyObject *DrawTile::getPyObject(void)
|
|
{
|
|
if (PythonObject.is(Py::_None())) {
|
|
// ref counter is set to 1
|
|
PythonObject = Py::Object(new DrawTilePy(this),true);
|
|
}
|
|
return Py::new_reference_to(PythonObject);
|
|
}
|
|
|
|
// Python Drawing feature ---------------------------------------------------------
|
|
|
|
namespace App {
|
|
/// @cond DOXERR
|
|
PROPERTY_SOURCE_TEMPLATE(TechDraw::DrawTilePython, TechDraw::DrawTile)
|
|
template<> const char* TechDraw::DrawTilePython::getViewProviderName(void) const {
|
|
return "TechDrawGui::ViewProviderTile";
|
|
}
|
|
/// @endcond
|
|
|
|
// explicit template instantiation
|
|
template class TechDrawExport FeaturePythonT<TechDraw::DrawTile>;
|
|
}
|
|
|