Macro Manage Navigational Style

Text-x-python.png Macro Manage Navigational Styles

Description
This pair of macros allow you to alter the Navigation Style while using the Sketcher.
Author
PiffPoof
Links
Macros recipes
How to install macros
How to customize toolbars
Version
1.0
Date last modification
2015-01-17


Description

When using the Sketcher the right-button menu is redefined to hold options relevant to the Sketcher. Consequently the option to change the Navigational Style, which is available when outside the Sketcher, is not available when in the Sketcher.

Installation

There are two brief code snippets, each of which is a separate Macro. Installation is comprised of copying the two pieces code to the appropriate Macro directory and invoking them from the Macro menu. It is much preferable to add them both to a toolbar so as to be easily available while using the Sketcher.

Usage

Click on the associated toolbar button, or invoke from the Macro menu. There is no visible confirmation of their executing, aside from the Navigational Style will change.

User Interface

There really isn't any user interface, not even any confirmation that the Navigational Style has been changed. The confirmation will be when you next manipulate the view, your mouse movements will interpreted in the Navigational Style you selected.

Scripts

There are two scripts, one to change to each of 'Cad' and 'Inventor' Navigational Styles. There are also 2 icons, one for each Macro:

Macro Manage Navigational Styles1.png

# change to CAD Navigational Style
p=App.ParamGet("User parameter:BaseApp/Preferences/View")
p.SetString("NavigationStyle","Gui::CADNavigationStyle") 

Macro Manage Navigational Styles2.png

# change to Inventor Navigational Style
p=App.ParamGet("User parameter:BaseApp/Preferences/View")
p.SetString("NavigationStyle","Gui::InventorNavigationStyle") 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Macro_Manage_Navigational_Style&oldid=239931"

Navigation menu