/*************************************************************************** * 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 #include #include #include #include #include #include #include #include #include "TaskSectionView.h" #include "TaskComplexSection.h" #include "ViewProviderViewSection.h" #include "QGIView.h" using namespace TechDraw; using namespace TechDrawGui; PROPERTY_SOURCE(TechDrawGui::ViewProviderViewSection, TechDrawGui::ViewProviderViewPart) const App::PropertyIntegerConstraint::Constraints intPercent = { 0, 100, 5 }; //************************************************************************** // Construction/Destruction ViewProviderViewSection::ViewProviderViewSection() { static const char *fgroup = "Faces"; static const char *hgroup = "Surface Hatch"; sPixmap = "TechDraw_TreeSection"; ADD_PROPERTY_TYPE(CutSurfaceColor, (Preferences::getPreferenceGroup("Colors")->GetUnsigned("FaceColor", 0xFFFFFF)), fgroup, App::Prop_None, "Set color of the cut surface"); ADD_PROPERTY_TYPE(CutSurfaceTransparency, (Preferences::getPreferenceGroup("Colors")->GetBool("ClearFace", false) ? 100 : 0), fgroup, App::Prop_None, "Set transparency of the cut surface"); CutSurfaceTransparency.setConstraints(&intPercent); //HatchCutSurface is obsolete - use CutSurfaceDisplay ADD_PROPERTY_TYPE(HatchCutSurface ,(false), hgroup, App::Prop_Hidden, "Hatch the cut surface"); ADD_PROPERTY_TYPE(HatchColor, (TechDraw::DrawHatch::prefSvgHatchColor()), hgroup, App::Prop_None, "The color of the Svg hatch pattern"); ADD_PROPERTY_TYPE(GeomHatchColor, (TechDraw::DrawGeomHatch::prefGeomHatchColor()), hgroup, App::Prop_None, "The color of the Geometric hatch pattern"); ADD_PROPERTY_TYPE(WeightPattern, (0.1), hgroup, App::Prop_None, "GeomHatch pattern line thickness"); getParameters(); } ViewProviderViewSection::~ViewProviderViewSection() { } //for VP properties void ViewProviderViewSection::onChanged(const App::Property* prop) { if (prop == &WeightPattern || prop == &HatchColor || prop == &GeomHatchColor || prop == &CutSurfaceColor || prop == &CutSurfaceTransparency) { updateGraphic(); } ViewProviderViewPart::onChanged(prop); } //for Feature properties void ViewProviderViewSection::updateData(const App::Property* prop) { if (prop == &(getViewObject()->FileHatchPattern) || prop == &(getViewObject()->CutSurfaceDisplay) || prop == &(getViewObject()->NameGeomPattern) || prop == &(getViewObject()->HatchScale) || prop == &(getViewObject()->HatchRotation) ) { updateGraphic(); } ViewProviderViewPart::updateData(prop); } void ViewProviderViewSection::updateGraphic() { // redraw QGIVP QGIView* qgiv = getQView(); if (qgiv) { qgiv->updateView(true); } } bool ViewProviderViewSection::setEdit(int ModNum) { if (ModNum != ViewProvider::Default ) { return ViewProviderDrawingView::setEdit(ModNum); } if (Gui::Control().activeDialog()) { //TaskPanel already open! return false; } // clear the selection (convenience) Gui::Selection().clearSelection(); auto dcs = dynamic_cast(getViewObject()); if (dcs) { Gui::Control().showDialog(new TaskDlgComplexSection(dcs)); return true; } Gui::Control().showDialog(new TaskDlgSectionView(getViewObject())); return true; } bool ViewProviderViewSection::doubleClicked() { setEdit(ViewProvider::Default); return true; } void ViewProviderViewSection::getParameters() { Base::Color cutColor = Base::Color((uint32_t) Preferences::getPreferenceGroup("Colors")->GetUnsigned("CutSurfaceColor", 0xD3D3D3FF)); CutSurfaceColor.setValue(cutColor); double lineWeight = Preferences::getPreferenceGroup("PAT")->GetFloat("GeomWeight", 0.1); WeightPattern.setValue(lineWeight); } bool ViewProviderViewSection::canDelete(App::DocumentObject *obj) const { // a section view can be deleted // that its base view cannot be deleted is handled in its the onDelete() function Q_UNUSED(obj) return true; } TechDraw::DrawViewSection* ViewProviderViewSection::getViewObject() const { return dynamic_cast(pcObject); }