/*************************************************************************** * Copyright (c) 2007 Werner Mayer * * * * 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_ # include # include # include # include #endif #include "ViewProviderInventorObject.h" #include #include #include #include #include #include using namespace Gui; PROPERTY_SOURCE(Gui::ViewProviderInventorObject, Gui::ViewProviderDocumentObject) ViewProviderInventorObject::ViewProviderInventorObject() { pcBuffer = new SoSeparator(); pcBuffer->ref(); pcFile = new SoSeparator(); pcFile->ref(); } ViewProviderInventorObject::~ViewProviderInventorObject() { pcBuffer->unref(); pcFile->unref(); } void ViewProviderInventorObject::attach(App::DocumentObject *pcObj) { ViewProviderDocumentObject::attach(pcObj); SoGroup* pcFileBuf = new SoGroup(); pcFileBuf->addChild(pcBuffer); pcFileBuf->addChild(pcFile); addDisplayMaskMode(pcFileBuf, "FileBuffer"); addDisplayMaskMode(pcBuffer, "Buffer"); addDisplayMaskMode(pcFile, "File"); } void ViewProviderInventorObject::setDisplayMode(const char* ModeName) { if (strcmp("File+Buffer",ModeName)==0) setDisplayMaskMode("FileBuffer"); else if (strcmp("Buffer",ModeName)==0) setDisplayMaskMode("Buffer"); else if (strcmp("File",ModeName)==0) setDisplayMaskMode("File"); ViewProviderDocumentObject::setDisplayMode(ModeName); } std::vector ViewProviderInventorObject::getDisplayModes(void) const { std::vector StrList; StrList.push_back("File+Buffer"); StrList.push_back("Buffer"); StrList.push_back("File"); return StrList; } void ViewProviderInventorObject::updateData(const App::Property* prop) { App::InventorObject* ivObj = static_cast(pcObject); if (prop == &ivObj->Buffer) { // read from buffer SoInput in; std::string buffer = ivObj->Buffer.getValue(); pcBuffer->removeAllChildren(); if (buffer.empty()) return; in.setBuffer((void *)buffer.c_str(), buffer.size()); SoSeparator * node = SoDB::readAll(&in); if (node) { const char* doc = this->pcObject->getDocument()->getName(); const char* obj = this->pcObject->getNameInDocument(); adjustSelectionNodes(node, doc, obj); pcBuffer->addChild(node); } } if (prop == &ivObj->FileName) { // read also from file const char* filename = ivObj->FileName.getValue(); QString fn = QString::fromUtf8(filename); QFile file(fn); SoInput in; pcFile->removeAllChildren(); if (!fn.isEmpty() && file.open(QFile::ReadOnly)) { QByteArray buffer = file.readAll(); in.setBuffer((void *)buffer.constData(), buffer.length()); SoSeparator * node = SoDB::readAll(&in); if (node) { const char* doc = this->pcObject->getDocument()->getName(); const char* obj = this->pcObject->getNameInDocument(); adjustSelectionNodes(node, doc, obj); pcFile->addChild(node); } } } } void ViewProviderInventorObject::adjustSelectionNodes(SoNode* child, const char* docname, const char* objname) { if (child->getTypeId().isDerivedFrom(SoFCSelection::getClassTypeId())) { static_cast(child)->documentName = docname; static_cast(child)->objectName = objname; } else if (child->getTypeId().isDerivedFrom(SoGroup::getClassTypeId())) { SoGroup* group = static_cast(child); for (int i=0; igetNumChildren(); i++) { SoNode* subchild = group->getChild(i); adjustSelectionNodes(subchild, docname, objname); } } }