|
|
| Opis |
|---|
| To makro resetuje położenie pasków narzędzi. Uruchom makro w środowisku pracy, w którym brakuje jednego lub więcej pasków narzędzi. Macro version: 1.0.0 Last modified: 2020-04-21 FreeCAD version: 0.18.4 i nowszy Download: Ikona paska narzędzi Autor: PR-DC |
| Autor |
| PR-DC |
| Do pobrania |
| Ikona paska narzędzi |
| Odnośniki |
| Przepisy na makropolecenia Jak zainstalować makrodefinicje Dostosowanie pasków narzędzi |
| Wersja Makrodefinicji |
| 1.0.0 |
| Data zmian |
| 2020-04-21 |
| Wersja FreeCAD |
| 0.18.4 i nowszy |
| Domyślny skrót |
| Brak |
| Zobacz również |
| repozytorium Github |
Opis
To makro resetuje położenie pasków narzędzi.
Użycie
Uruchom makro w obrębie środowiska pracy, które ma brakujące paski narzędzi.
Skrypt
Ikona paska narzędzi
GuiResetToolbars.FCMacro
# Reset Toolbars position
# Author: Milos Petrasinovic <mpetrasinovic@pr-dc.com>
# PR-DC, Republic of Serbia
# info@pr-dc.com
#
# --------------------
#
# Copyright (C) 2020 PR-DC <info@pr-dc.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
# --------------------
__Name__ = 'GuiResetToolbars'
__Comment__ = 'Reset Toolbars position'
__Author__ = 'PR-DC'
__Version__ = '1.0.0'
__Date__ = '2020-04-21'
__License__ = 'LGPL-3.0-or-later'
__Web__ = "https://github.com/PR-DC/GuiResetToolbars/"
__Wiki__ = 'https://wiki.freecad.org/Macro_GuiResetToolbars'
__Icon__ = 'https://wiki.freecad.org/images/f/f8/GuiResetToolbars.svg'
__Help__ = 'Run the macro within a workbench that has missing toolbar(s)'
__Status__ = 'stable'
__Requires__ = 'Freecad >= 0.18.4'
__Communication__ = 'https://github.com/PR-DC/GuiResetToolbars/issues/'
__Files__ = 'GuiResetToolbars.svg'
import FreeCADGui as gui
from PySide import QtGui, QtCore # FreeCAD's special PySide!
mw = gui.getMainWindow()
tb = mw.findChildren(QtGui.QToolBar)
for i in tb:
mw.addToolBar(QtCore.Qt.TopToolBarArea, i)
Łącza
Dyskusja na forum Reset toolbar position
Ta strona pochodzi z https://wiki.freecad.org/Macro_GuiResetToolbars