FreeCAD

Форк
0
/
DocumentObjectGroup.cpp 
72 строки · 3.1 Кб
1
/***************************************************************************
2
 *   Copyright (c) 2006 Werner Mayer <wmayer[at]users.sourceforge.net>     *
3
 *                                                                         *
4
 *   This file is part of the FreeCAD CAx development system.              *
5
 *                                                                         *
6
 *   This library is free software; you can redistribute it and/or         *
7
 *   modify it under the terms of the GNU Library General Public           *
8
 *   License as published by the Free Software Foundation; either          *
9
 *   version 2 of the License, or (at your option) any later version.      *
10
 *                                                                         *
11
 *   This library  is distributed in the hope that it will be useful,      *
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
14
 *   GNU Library General Public License for more details.                  *
15
 *                                                                         *
16
 *   You should have received a copy of the GNU Library General Public     *
17
 *   License along with this library; see the file COPYING.LIB. If not,    *
18
 *   write to the Free Software Foundation, Inc., 59 Temple Place,         *
19
 *   Suite 330, Boston, MA  02111-1307, USA                                *
20
 *                                                                         *
21
 ***************************************************************************/
22

23

24
#include "PreCompiled.h"
25

26
#include "DocumentObjectGroup.h"
27
#include "DocumentObjectGroupPy.h"
28
#include "FeaturePythonPyImp.h"
29

30
using namespace App;
31

32
PROPERTY_SOURCE_WITH_EXTENSIONS(App::DocumentObjectGroup, App::DocumentObject)
33

34
DocumentObjectGroup::DocumentObjectGroup(): DocumentObject(), GroupExtension() {
35

36
    GroupExtension::initExtension(this);
37
    _GroupTouched.setStatus(App::Property::Output,true);
38
}
39

40
DocumentObjectGroup::~DocumentObjectGroup() = default;
41

42
PyObject *DocumentObjectGroup::getPyObject()
43
{
44
    if (PythonObject.is(Py::_None())){
45
        // ref counter is set to 1
46
        PythonObject = Py::Object(new DocumentObjectGroupPy(this),true);
47
    }
48
    return Py::new_reference_to(PythonObject);
49
}
50

51

52
// Python feature ---------------------------------------------------------
53

54
namespace App {
55

56
/// @cond DOXERR
57
PROPERTY_SOURCE_TEMPLATE(App::DocumentObjectGroupPython, App::DocumentObjectGroup)
58
template<> const char* App::DocumentObjectGroupPython::getViewProviderName() const {
59
    return "Gui::ViewProviderDocumentObjectGroupPython";
60
}
61
template<> PyObject* App::DocumentObjectGroupPython::getPyObject() {
62
    if (PythonObject.is(Py::_None())) {
63
        // ref counter is set to 1
64
        PythonObject = Py::Object(new FeaturePythonPyT<App::DocumentObjectGroupPy>(this),true);
65
    }
66
    return Py::new_reference_to(PythonObject);
67
}
68
/// @endcond
69

70
// explicit template instantiation
71
template class AppExport FeaturePythonT<App::DocumentObjectGroup>;
72
}
73

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.