Macro GuiResetToolbars

From FreeCAD Documentation
Revision as of 10:53, 23 May 2020 by FuzzyBot (talk | contribs) (Updating to match new version of source page)
Other languages:

GuiResetToolbars

Description
Cette macro réinitialise la position des barres d'outils. Exécutez la macro dans un plan de travail dont la ou les barres d'outils sont manquantes.

Version macro : 1.0.0
Date dernière modification : 2020-04-21
Version FreeCAD : 0.18.4 et plus
Téléchargement : ToolBar Icon
Auteur: PROTORS
Auteur
PROTORS
Téléchargement
ToolBar Icon
Liens
Version Macro
1.0.0
Dernière modification
2020-04-21
Version(s) FreeCAD
0.18.4 et plus
Raccourci clavier
None
Voir aussi
Github repository

Description

Cette macro réinitialise la position des barres d'outils.

Utilisation

Exécutez la macro dans un plan de travail dont la ou les barres d'outils sont manquantes.

Script

ToolBar Icon

GuiResetToolbars.FCMacro

# Reset Toolbars position
# Author: Milos Petrasinovic <mpetrasinovic@protors.co>
# PROTORS, Belgrade, Serbia
# info@protors.co
# 
# --------------------
#
# Copyright (C) 2020 PROTORS <info@protors.co>
# 
# 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__ = 'PROTORS'
__Version__ = '1.0.0'
__Date__ = '2020-04-21'
__License__ = 'LGPL-3.0-or-later'
__Web__ = "https://github.com/protors/ResetToolbars/"
__Wiki__ = 'https://wiki.freecadweb.org/Macro_GuiResetToolbars'
__Icon__ = '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/protors/ResetToolbars/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)

Liens

Discussion sur le forum dReset toolbar position