+ unify DLL export defines to namespace names
git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
This commit is contained in:
174
src/Mod/Image/Gui/ViewProviderImagePlane.cpp
Normal file
174
src/Mod/Image/Gui/ViewProviderImagePlane.cpp
Normal file
@@ -0,0 +1,174 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2011 Jürgen Riegel (juergen.riegel@web.de) *
|
||||
* *
|
||||
* 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 <Inventor/SoDB.h>
|
||||
# include <Inventor/SoInput.h>
|
||||
# include <Inventor/SbVec3f.h>
|
||||
# include <Inventor/nodes/SoSeparator.h>
|
||||
# include <Inventor/nodes/SoTransform.h>
|
||||
# include <Inventor/nodes/SoSphere.h>
|
||||
# include <Inventor/nodes/SoRotation.h>
|
||||
# include <Inventor/actions/SoSearchAction.h>
|
||||
# include <Inventor/draggers/SoJackDragger.h>
|
||||
# include <Inventor/VRMLnodes/SoVRMLTransform.h>
|
||||
# include <Inventor/nodes/SoBaseColor.h>
|
||||
# include <Inventor/nodes/SoCoordinate3.h>
|
||||
# include <Inventor/nodes/SoDrawStyle.h>
|
||||
# include <Inventor/nodes/SoFaceSet.h>
|
||||
# include <Inventor/nodes/SoIndexedFaceSet.h>
|
||||
# include <Inventor/nodes/SoMarkerSet.h>
|
||||
# include <Inventor/nodes/SoShapeHints.h>
|
||||
# include <Inventor/nodes/SoImage.h>
|
||||
# include <Inventor/nodes/SoTextureCoordinate2.h>
|
||||
# include <Inventor/nodes/SoTexture2.h>
|
||||
# include <Inventor/nodes/SoCube.h>
|
||||
# include <QFile>
|
||||
# include <QImage>
|
||||
# include <QString>
|
||||
#endif
|
||||
|
||||
#include "ViewProviderImagePlane.h"
|
||||
|
||||
#include <Mod/Image/App/ImagePlane.h>
|
||||
#include <App/Document.h>
|
||||
#include <Gui/BitmapFactory.h>
|
||||
#include <Base/FileInfo.h>
|
||||
#include <Base/Stream.h>
|
||||
#include <Base/Console.h>
|
||||
#include <sstream>
|
||||
using namespace Gui;
|
||||
using namespace ImageGui;
|
||||
using namespace Image;
|
||||
|
||||
|
||||
PROPERTY_SOURCE(ImageGui::ViewProviderImagePlane, Gui::ViewProviderGeometryObject)
|
||||
|
||||
ViewProviderImagePlane::ViewProviderImagePlane()
|
||||
{
|
||||
|
||||
pcImagePlaneRoot = new Gui::SoFCSelection();
|
||||
pcImagePlaneRoot->highlightMode = Gui::SoFCSelection::OFF;
|
||||
pcImagePlaneRoot->selectionMode = Gui::SoFCSelection::SEL_OFF;
|
||||
//pcImageRoot->style = Gui::SoFCSelection::BOX;
|
||||
pcImagePlaneRoot->ref();
|
||||
|
||||
texture = new SoTexture2;
|
||||
texture->ref();
|
||||
|
||||
pcCoords = new SoCoordinate3();
|
||||
pcCoords->ref();
|
||||
pcDrawStyle = new SoDrawStyle();
|
||||
pcDrawStyle->ref();
|
||||
pcDrawStyle->style = SoDrawStyle::LINES;
|
||||
pcDrawStyle->lineWidth = 2;
|
||||
|
||||
}
|
||||
|
||||
ViewProviderImagePlane::~ViewProviderImagePlane()
|
||||
{
|
||||
pcImagePlaneRoot->unref();
|
||||
pcCoords->unref();
|
||||
pcDrawStyle->unref();
|
||||
texture->unref();
|
||||
}
|
||||
|
||||
void ViewProviderImagePlane::attach(App::DocumentObject *pcObj)
|
||||
{
|
||||
|
||||
ViewProviderDocumentObject::attach(pcObj);
|
||||
|
||||
//// Draw trajectory lines
|
||||
SoSeparator* planesep = new SoSeparator;
|
||||
planesep->addChild(pcCoords);
|
||||
|
||||
SoTextureCoordinate2 *textCoord = new SoTextureCoordinate2;
|
||||
textCoord->point.set1Value(0,0,0);
|
||||
textCoord->point.set1Value(1,0,1);
|
||||
textCoord->point.set1Value(2,1,1);
|
||||
textCoord->point.set1Value(3,1,0);
|
||||
planesep->addChild( textCoord );
|
||||
|
||||
// texture
|
||||
texture->model = SoTexture2::MODULATE;
|
||||
planesep->addChild(texture);
|
||||
|
||||
//planesep->addChild( pcDrawStyle );
|
||||
// plane
|
||||
pcCoords->point.set1Value(0,0,0,0);
|
||||
pcCoords->point.set1Value(1,0,1,0);
|
||||
pcCoords->point.set1Value(2,1,1,0);
|
||||
pcCoords->point.set1Value(3,1,0,0);
|
||||
SoFaceSet *faceset = new SoFaceSet;
|
||||
faceset->numVertices.set1Value(0,4);
|
||||
planesep->addChild( faceset );
|
||||
|
||||
pcImagePlaneRoot->addChild(planesep);
|
||||
|
||||
addDisplayMaskMode(pcImagePlaneRoot, "ImagePlane");
|
||||
pcImagePlaneRoot->objectName = pcObj->getNameInDocument();
|
||||
pcImagePlaneRoot->documentName = pcObj->getDocument()->getName();
|
||||
pcImagePlaneRoot->subElementName = "Main";
|
||||
|
||||
}
|
||||
|
||||
void ViewProviderImagePlane::setDisplayMode(const char* ModeName)
|
||||
{
|
||||
if ( strcmp("ImagePlane",ModeName)==0 )
|
||||
setDisplayMaskMode("ImagePlane");
|
||||
ViewProviderGeometryObject::setDisplayMode( ModeName );
|
||||
}
|
||||
|
||||
std::vector<std::string> ViewProviderImagePlane::getDisplayModes(void) const
|
||||
{
|
||||
std::vector<std::string> StrList;
|
||||
StrList.push_back("ImagePlane");
|
||||
return StrList;
|
||||
}
|
||||
|
||||
void ViewProviderImagePlane::updateData(const App::Property* prop)
|
||||
{
|
||||
Image::ImagePlane* pcPlaneObj = static_cast<Image::ImagePlane*>(pcObject);
|
||||
if (prop == &pcPlaneObj->XSize || prop == &pcPlaneObj->YSize) {
|
||||
float x = pcPlaneObj->XSize.getValue();
|
||||
float y = pcPlaneObj->YSize.getValue();
|
||||
|
||||
//pcCoords->point.setNum(4);
|
||||
pcCoords->point.set1Value(0,-(x/2),-(y/2),0.0);
|
||||
pcCoords->point.set1Value(1,-(x/2),+(y/2),0.0);
|
||||
pcCoords->point.set1Value(2,+(x/2),+(y/2),0.0);
|
||||
pcCoords->point.set1Value(3,+(x/2),-(y/2),0.0);
|
||||
}
|
||||
else if (prop == &pcPlaneObj->ImageFile) {
|
||||
QImage impQ(QString::fromUtf8(pcPlaneObj->ImageFile.getValue()));
|
||||
if(! impQ.isNull()){
|
||||
SoSFImage img;
|
||||
// convert to Coin bitmap
|
||||
BitmapFactory().convert(impQ,img);
|
||||
texture->image = img;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user