+ 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:
wmayer
2011-10-10 13:44:52 +00:00
commit 120ca87015
4155 changed files with 2965978 additions and 0 deletions

View File

@@ -0,0 +1,105 @@
#include "PreCompiled.h"
#include "Gui/SelectionObject.h"
#include "App/Document.h"
#include "App/DocumentObject.h"
#include "App/Application.h"
// inclusion of the generated files (generated out of SelectionObjectPy.xml)
#include "SelectionObjectPy.h"
#include "SelectionObjectPy.cpp"
using namespace Gui;
// returns a string which represents the object e.g. when printed in python
std::string SelectionObjectPy::representation(void) const
{
return "<SelectionObject>";
}
PyObject* SelectionObjectPy::remove(PyObject * /*args*/)
{
PyErr_SetString(PyExc_NotImplementedError, "Not yet implemented");
return 0;
}
PyObject* SelectionObjectPy::isA(PyObject * /*args*/)
{
PyErr_SetString(PyExc_NotImplementedError, "Not yet implemented");
return 0;
}
Py::String SelectionObjectPy::getObjectName(void) const
{
return Py::String(getSelectionObjectPtr()->getFeatName());
}
Py::List SelectionObjectPy::getSubElementNames(void) const
{
Py::List temp;
std::vector<std::string> objs = getSelectionObjectPtr()->getSubNames();
for(std::vector<std::string>::const_iterator it= objs.begin();it!=objs.end();++it)
temp.append(Py::String(*it));
return temp;
}
Py::String SelectionObjectPy::getFullName(void) const
{
std::string buf;
//buf = getSelectionObjectPtr()->getDocName();
//buf += ".";
//buf += getSelectionObjectPtr()->getFeatName();
//if(getSelectionObjectPtr()->getSubName()){
// buf += ".";
// buf += getSelectionObjectPtr()->getSubName();
//}
return Py::String(buf.c_str());
}
Py::String SelectionObjectPy::getDocumentName(void) const
{
return Py::String(getSelectionObjectPtr()->getDocName());
}
Py::Object SelectionObjectPy::getDocument(void) const
{
return Py::Object(getSelectionObjectPtr()->getObject()->getDocument()->getPyObject(), true);
}
Py::Object SelectionObjectPy::getObject(void) const
{
return Py::Object(getSelectionObjectPtr()->getObject()->getPyObject(), true);
}
Py::List SelectionObjectPy::getSubObjects(void) const
{
Py::List temp;
std::vector<PyObject *> objs = getSelectionObjectPtr()->getObject()->getPySubObjects(getSelectionObjectPtr()->getSubNames());
for(std::vector<PyObject *>::const_iterator it= objs.begin();it!=objs.end();++it)
temp.append(Py::Object(*it,true));
return temp;
}
Py::Boolean SelectionObjectPy::getHasSubObjects(void) const
{
return Py::Boolean(getSelectionObjectPtr()->hasSubNames());
}
PyObject *SelectionObjectPy::getCustomAttributes(const char* /*attr*/) const
{
return 0;
}
int SelectionObjectPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
{
return 0;
}