FreeCAD-Doc/localwiki/Macro_Toggle_Drawstyle.html
2018-07-08 12:11:49 -05:00

162 lines
7.8 KiB
HTML

<html><head><title>Macro Toggle Drawstyle</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Macro Toggle Drawstyle</h1></div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><table class="fcinfobox wikitable ct" width="100%" style="float: right; width: 230px; margin-left: 10px;">
<tr>
<td class="ctTitle">
<h3><span class="mw-headline" id="Macro_Toggle_Drawstyle"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Macro_Toggle_Drawstyle.png" class="image"><img alt="Macro Toggle Drawstyle.png" src="32px-Macro_Toggle_Drawstyle.png" width="32" height="32" srcset="/wiki/images/thumb/0/0b/Macro_Toggle_Drawstyle.png/48px-Macro_Toggle_Drawstyle.png 1.5x, /wiki/images/0/0b/Macro_Toggle_Drawstyle.png 2x" /></a> Macro Toggle Drawstyle</span></h3>
</td></tr>
<tr>
<th class="ctOdd">Description
</th></tr>
<tr>
<td class="ctEven left macro-description">This macro toggles the Drawstyle of the selected object.
</td></tr>
<tr>
<th class="ctOdd">Author
</th></tr>
<tr>
<td class="ctEven macro-author"><a href="https://www.freecadweb.org/wiki/index.php?title=User:Piffpoof" title="User:Piffpoof">Piffpoof</a>
</td></tr>
<tr>
<th class="ctOdd">Links
</th></tr>
<tr>
<td class="ctEven"><a href="Macros_recipes.html" title="Macros recipes">Macros recipes</a><br /><a href="How_to_install_macros.html" title="How to install macros">How to install macros</a><br /><a href="Customize_Toolbars.html" title="Customize Toolbars">How to customize toolbars</a>
</td></tr>
<tr>
<th class="ctOdd">Version
</th></tr>
<tr>
<td class="ctEven macro-version">1.0
</td></tr>
<tr>
<th class="ctOdd">Date last modification
</th></tr>
<tr>
<td class="ctEven macro-date">2016-02-25
</td></tr>
<tr>
<th class="ctOdd">
</th></tr>
<tr>
<td class="ctToc"><br /><div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
<ul>
<li class="toclevel-1"><a href="#Macro_Toggle_Drawstyle"><span class="tocnumber">1</span> <span class="toctext">Macro Toggle Drawstyle</span></a></li>
<li class="toclevel-1 tocsection-1"><a href="#Description"><span class="tocnumber">2</span> <span class="toctext">Description</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#Installation"><span class="tocnumber">3</span> <span class="toctext">Installation</span></a></li>
<li class="toclevel-1 tocsection-3"><a href="#Usage"><span class="tocnumber">4</span> <span class="toctext">Usage</span></a></li>
<li class="toclevel-1 tocsection-4"><a href="#User_Interface"><span class="tocnumber">5</span> <span class="toctext">User Interface</span></a></li>
<li class="toclevel-1 tocsection-5"><a href="#Scripts"><span class="tocnumber">6</span> <span class="toctext">Scripts</span></a></li>
</ul>
</div>
</td></tr>
</table>
<p><br />
</p>
<h2><span class="mw-headline" id="Description">Description</span></h2>
<p>When working with FreeCAD there are times when you want to quickly change the Drawstyle of the object you are working with. This is available through the Drawstyle pull-down menu where any Drawstyle may be selected. This macro makes 2 of the Drawstyles available as a clickable button on a toolbar which the user may click to toggle back and forth between the two Drawstyles. The user can modify the macro code to select which 2 Drawstyles they wish to toggle between. This does not add functionality missing in the Drawstyles pull-down menu, but rather an increased convenience level.
</p>
<h2><span class="mw-headline" id="Installation">Installation</span></h2>
<p>Installation is comprised of copying the two code to the appropriate Macro directory and invoking it from the Macro menu. It is much preferable to add it both to a toolbar so as to be more easily available.
</p>
<ul><li> see <a href="How_to_install_macros.html" title="How to install macros">How to install macros</a> for information on how to install this macro code</li>
<li> see <a href="Customize_Toolbars.html" title="Customize Toolbars">Customize Toolbars</a> for information how to install as a button on a toolbar</li></ul>
<p>PS: You must adapt the macro to your language:
</p><p>example with German language, replace the code (lines 41, 42)
</p>
<pre>drawstyleA = "As is"
drawstyleB = "Wireframe" </pre>
<p>to:
</p>
<pre>drawstyleA = "Original"
drawstyleB = "Drahtgitter" </pre>
<p><a href="https://www.freecadweb.org/wiki/index.php?title=File:Macro_Toggle_Drawstyle_00_.png" class="image" title="Macro Toggle Drawstyle 00 .png"><img alt="Macro Toggle Drawstyle 00 .png" src="Macro_Toggle_Drawstyle_00_.png" width="413" height="297" /></a>
</p>
<div style="clear:both"></div>
<p><br />
</p>
<h2><span class="mw-headline" id="Usage">Usage</span></h2>
<p>Select an object, then click on the associated toolbar button, or invoke from the Macro menu. The Drawstyle of the slected object will toggle beteen the two drawstyles specified in the macro code (see code listing below).
<b>Note</b>: The specification for each Drawstyle is listed in the code, by modifying the code (which is documented in the macro code) the user may select which 2 Drawstyles are toggled between.
</p>
<h2><span class="mw-headline" id="User_Interface">User Interface</span></h2>
<p>The selected object will be redrawn in the other drawstyle specified in the macro.
</p><p>Script optimized for all languages and to object selected or all objects <a rel="nofollow" class="external text" href="https://forum.freecadweb.org/viewtopic.php?f=3&amp;t=14336&amp;start=40#p146239">Keyboard shortcut, View toolbar - Wireframe</a> (Sun Nov 27, 2016 6:49 pm)
</p>
<h2><span class="mw-headline" id="Scripts">Scripts</span></h2>
<pre># -*- coding: utf-8 -*-
#
#
#Macro: Toggle Draw Style
#
# This macros allows the user to switch between different Drawstyles by clicking on
# the button of a Macro in a toolbar.
#
# initial code:triplus
# macro-isation:piffpoof
#
# This macro switches (or toggles) between 2 selected styles from the Drawstyle menu.
# As written the macro toggles between "WireFrame" and "As is".
# Immediately below this text is a list of the legal values for the Drawstyle menu.
# The first 2 lines of executable code are of the form "DrawstyleA = " followed by
# the 2nd line which is of the form "DrawstyleB = ".
# These 2 lines specify which of the Drawstyle values the macro will toggle between.
# Drawstyle "As is" is the system default and so is specified as the first drawstyle.
# The second line specifies which drawstyle will be toggled to and from.
# Any of the legal values may be used, so if, for example, it is desired to toggle between
# the Shaded and Points drawstyles, then the 2 lines of code would be modified to be:
#
# drawstyleA = "Shaded"
# drawstyleB = "Points"
#
# but remember that the hash signs ('#') are not to be present on the executable lines.
#
###Legal Values for Drawstyle###
#
#"As is"
#"FlatLines"
#"Shaded
#"Wireframe"
#"Points"
#
################################
from PySide import QtGui
# Constant definitions
drawstyleA = "As is"
drawstyleB = "Wireframe"
# code ***********************************************************************************
mw = FreeCADGui.getMainWindow()
for i in mw.findChildren(QtGui.QAction):
if i.text() == drawstyleA.decode("UTF-8"):
actionA = i
elif i.text() == drawstyleB.decode("UTF-8"):
actionB = i
else:
pass
if actionA.isChecked():
actionB.activate(QtGui.QAction.Trigger)
else:
actionA.activate(QtGui.QAction.Trigger) </pre>
<div style="clear:both"></div>
</div>
</div>
</div><div class="printfooter">
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Macro_Toggle_Drawstyle&amp;oldid=241000">http://www.freecadweb.org/wiki/index.php?title=Macro_Toggle_Drawstyle&amp;oldid=241000</a>"</div>
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
</div>
</div>
<div id="mw-navigation">
<h2>Navigation menu</h2>
</body></html>