/*************************************************************************** * Copyright (c) 2015 Stefan Tröger * * * * 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 * * * ***************************************************************************/ #ifndef PARTDESIGN_DATUMSHAPE_H #define PARTDESIGN_DATUMSHAPE_H #include #include #include namespace PartDesign { /* This feature is not really a classical datum. It is a fully defined shape and not * infinite geometry like a plane and a line. Also it is not calculated by references and hence * is not "attached" to anything. Furthermore real shapes must be visualized. This makes it hard * to reuse the existing datum infrastructure and a special handling for this type is * created. */ // TODO Add better documentation (2015-09-11, Fat-Zer) class PartDesignExport ShapeBinder : public Part::Feature { PROPERTY_HEADER(PartDesign::ShapeBinder); public: ShapeBinder(); virtual ~ShapeBinder(); App::PropertyLinkSubListGlobal Support; static void getFilteredReferences(App::PropertyLinkSubList* prop, Part::Feature*& object, std::vector< std::string >& subobjects); static Part::TopoShape buildShapeFromReferences(Feature* obj, std::vector< std::string > subs); const char* getViewProviderName(void) const { return "PartDesignGui::ViewProviderShapeBinder"; } protected: virtual short int mustExecute(void) const; virtual App::DocumentObjectExecReturn* execute(void); }; } //namespace PartDesign #endif // PARTDESIGN_DATUMSHAPE_H