/*************************************************************************** * 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_ #endif /// Here the FreeCAD includes sorted by Base,App,Gui...... #include #include #include #include #include #include #include #include #include "ViewProviderDimension.h" using namespace TechDrawGui; const char *ViewProviderDimension::StandardAndStyleEnums[]= { "ISO Oriented", "ISO Levelled", "ASME Regular", "ASME Inlined", NULL }; PROPERTY_SOURCE(TechDrawGui::ViewProviderDimension, TechDrawGui::ViewProviderDrawingView) //************************************************************************** // Construction/Destruction ViewProviderDimension::ViewProviderDimension() { sPixmap = "TechDraw_Dimension"; static const char *group = "Dim Format"; Base::Reference hGrp = App::GetApplication().GetUserParameter() .GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/TechDraw/Labels"); std::string fontName = hGrp->GetASCII("LabelFont", "osifont"); hGrp = App::GetApplication().GetUserParameter() .GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/TechDraw/Dimensions"); double fontSize = hGrp->GetFloat("FontSize", QGIView::DefaultFontSizeInMM); ADD_PROPERTY_TYPE(Font ,(fontName.c_str()),group,App::Prop_None, "The name of the font to use"); ADD_PROPERTY_TYPE(Fontsize,(fontSize) ,group,(App::PropertyType)(App::Prop_None),"Dimension text size in units"); hGrp = App::GetApplication().GetUserParameter().GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/TechDraw/Decorations"); std::string lgName = hGrp->GetASCII("LineGroup","FC 0.70mm"); auto lg = TechDraw::LineGroup::lineGroupFactory(lgName); double weight = lg->getWeight("Thin"); delete lg; //Coverity CID 174670 ADD_PROPERTY_TYPE(LineWidth,(weight) ,group,(App::PropertyType)(App::Prop_None),"Dimension line weight"); hGrp = App::GetApplication().GetUserParameter() .GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("Mod/TechDraw/Dimensions"); App::Color fcColor; fcColor.setPackedValue(hGrp->GetUnsigned("Color", 0x00000000)); ADD_PROPERTY_TYPE(Color,(fcColor),group,App::Prop_None,"The color of the Dimension"); int standardStyle = hGrp->GetInt("StandardAndStyle", STD_STYLE_ISO_ORIENTED); ADD_PROPERTY_TYPE(StandardAndStyle, (standardStyle), group, App::Prop_None, "Specify the standard according to which this dimension is drawn"); StandardAndStyle.setEnums(StandardAndStyleEnums); ADD_PROPERTY_TYPE(ExtendToCenter, (true), group, App::Prop_None,"Prolong the leader line right upto the center point"); ADD_PROPERTY_TYPE(FlipArrowheads, (false), group, App::Prop_None,"Reverse the normal direction of arrowheads on dimline"); } ViewProviderDimension::~ViewProviderDimension() { } void ViewProviderDimension::attach(App::DocumentObject *pcFeat) { // call parent attach method ViewProviderDrawingView::attach(pcFeat); } void ViewProviderDimension::setDisplayMode(const char* ModeName) { ViewProviderDrawingView::setDisplayMode(ModeName); } std::vector ViewProviderDimension::getDisplayModes(void) const { // get the modes of the father std::vector StrList = ViewProviderDrawingView::getDisplayModes(); return StrList; } void ViewProviderDimension::updateData(const App::Property* p) { if (p == &(getViewObject()->Type)) { if (getViewObject()->Type.isValue("DistanceX")) { sPixmap = "TechDraw_Dimension_Horizontal"; } else if (getViewObject()->Type.isValue("DistanceY")) { sPixmap = "TechDraw_Dimension_Vertical"; } else if (getViewObject()->Type.isValue("Radius")) { sPixmap = "TechDraw_Dimension_Radius"; } else if (getViewObject()->Type.isValue("Diameter")) { sPixmap = "TechDraw_Dimension_Diameter"; } else if (getViewObject()->Type.isValue("Angle")) { sPixmap = "TechDraw_Dimension_Angle"; } else if (getViewObject()->Type.isValue("Angle3Pt")) { sPixmap = "TechDraw_Dimension_Angle3Pt"; } } ViewProviderDrawingView::updateData(p); } void ViewProviderDimension::onChanged(const App::Property* p) { if ((p == &Font) || (p == &Fontsize) || (p == &LineWidth) || (p == &StandardAndStyle) || (p == &ExtendToCenter) || (p == &FlipArrowheads)) { QGIView* qgiv = getQView(); if (qgiv) { qgiv->updateView(true); } } ViewProviderDrawingView::onChanged(p); } TechDraw::DrawViewDimension* ViewProviderDimension::getViewObject() const { return dynamic_cast(pcObject); }