/*************************************************************************** * Copyright (c) 2004 Jürgen Riegel * * Copyright (c) 2012 Luke Parry * * * * 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_ # ifdef FC_OS_WIN32 # include # endif #endif /// Here the FreeCAD includes sorted by Base,App,Gui...... #include #include #include #include #include #include "ViewProviderViewSection.h" using namespace TechDrawGui; PROPERTY_SOURCE(TechDrawGui::ViewProviderViewSection, TechDrawGui::ViewProviderViewPart) //************************************************************************** // Construction/Destruction ViewProviderViewSection::ViewProviderViewSection() { static const char *sgroup = "Cut Surface"; static const char *hgroup = "Surface Hatch"; sPixmap = "TechDraw_Tree_Section"; ADD_PROPERTY_TYPE(ShowCutSurface ,(true),sgroup,App::Prop_None,"Show/hide the cut surface"); ADD_PROPERTY_TYPE(CutSurfaceColor,(0.0,0.0,0.0),sgroup,App::Prop_None,"The color to shade the cut surface"); ADD_PROPERTY_TYPE(HatchCutSurface ,(false),hgroup,App::Prop_None,"Hatch the cut surface"); ADD_PROPERTY_TYPE(HatchColor,(0.0,0.0,0.0),hgroup,App::Prop_None,"The color of the hatch pattern"); ADD_PROPERTY_TYPE(WeightPattern,(0.1),hgroup,App::Prop_None,"GeomHatch pattern line thickness"); getParameters(); } ViewProviderViewSection::~ViewProviderViewSection() { } void ViewProviderViewSection::attach(App::DocumentObject *pcFeat) { // call parent attach method ViewProviderViewPart::attach(pcFeat); } void ViewProviderViewSection::setDisplayMode(const char* ModeName) { ViewProviderDocumentObject::setDisplayMode(ModeName); } std::vector ViewProviderViewSection::getDisplayModes(void) const { // get the modes of the father std::vector StrList = ViewProviderDocumentObject::getDisplayModes(); return StrList; } //for VP properties void ViewProviderViewSection::onChanged(const App::Property* prop) { if (prop == &WeightPattern || prop == &HatchCutSurface || prop == &HatchColor || prop == &ShowCutSurface || prop == &CutSurfaceColor ) { updateGraphic(); } ViewProviderViewPart::onChanged(prop); } //for Feature properties void ViewProviderViewSection::updateData(const App::Property* prop) { if (prop == &(getViewObject()->FileHatchPattern) || prop == &(getViewObject()->NameGeomPattern) || prop == &(getViewObject()->HatchScale) ) { updateGraphic(); } ViewProviderViewPart::updateData(prop); } std::vector ViewProviderViewSection::claimChildren(void) const { return ViewProviderViewPart::claimChildren(); } void ViewProviderViewSection::updateGraphic(void) { // redraw QGIVP QGIView* qgiv = getQView(); if (qgiv) { qgiv->updateView(true); } } void ViewProviderViewSection::getParameters(void) { Base::Reference hGrp = App::GetApplication().GetUserParameter() .GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/TechDraw/Colors"); App::Color cutColor = App::Color((uint32_t) hGrp->GetUnsigned("CutSurfaceColor", 0xC8C8C800)); CutSurfaceColor.setValue(cutColor); App::Color hatchColor = App::Color((uint32_t) hGrp->GetUnsigned("SectionHatchColor", 0x00000000)); HatchColor.setValue(hatchColor); hGrp = App::GetApplication().GetUserParameter() .GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/TechDraw/PAT"); double lineWeight = hGrp->GetFloat("GeomWeight",0.1); WeightPattern.setValue(lineWeight); } TechDraw::DrawViewSection* ViewProviderViewSection::getViewObject() const { return dynamic_cast(pcObject); }