FreeCAD

Форк
0
/
InitGui.py 
35 строк · 1.1 Кб
1
# Tux module for FreeCAD
2
# Copyright (C) 2017  triplus @ FreeCAD
3
#
4
#
5
# This library is free software; you can redistribute it and/or
6
# modify it under the terms of the GNU Lesser General Public
7
# License as published by the Free Software Foundation; either
8
# version 2.1 of the License, or (at your option) any later version.
9
#
10
# This library is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
# Lesser General Public License for more details.
14
#
15
# You should have received a copy of the GNU Lesser General Public
16
# License along with this library; if not, write to the Free Software
17
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
18

19
"""Tux module for FreeCAD."""
20

21
p = FreeCAD.ParamGet("User parameter:Tux")
22

23

24
# Navigation indicator
25
if p.GetGroup("NavigationIndicator").GetBool("Enabled", 1):
26
    import NavigationIndicatorGui
27
else:
28
    pass
29

30

31
# Persistent toolbars
32
if p.GetGroup("PersistentToolbars").GetBool("Enabled", 1):
33
    import PersistentToolbarsGui
34
else:
35
    pass
36

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

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

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

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