Tree view

From FreeCAD Documentation
Revision as of 01:16, 27 September 2019 by Vocx (talk | contribs) (More complete information with links to the commands called in each case.)

Introduction

The tree view appears in the Model tab of the combo view; it shows all user defined objects that are part of a FreeCAD document. The tree view is a representation of the document's structure, and indicates what information is saved to disk.

These objects don't necessarily have to be geometrical shapes visible in the 3D view, but can also be supporting data objects created with any of the workbenches.

The tree view showing various elements in the document.

Working with the tree view

By default, whenever a new object is created, it is added to the end of the list in the tree view. The tree view allows managing the objects to keep them organized; it permits creating groups, moving objects inside groups, moving groups inside other groups, renaming objects, copying objects, deleting objects, and other operations in the contextual menu which also depends on the currently active workbench.

Many operations create objects that are dependent on a previously existing object. In this case, the tree view shows this relationship by absorbing the older object inside the new object. Expanding and collapsing the objects in the tree view shows the parametric history of that object. Objects that are deeper inside others are older, while objects that are outside are newer, and are derived from the older objects. By modifying the interior objects, the parametric operations propagate all the way to the top, generating a new result.

The topmost object is created by doing parametric operations on objects which themselves were created by previous operations. Expanding the tree many levels reveals the original elements that were used to create the partial solids.

Actions

Note: expressions and link actions were added in version 0.19.

Since the tree view shows objects that may be visible in the 3D view, many of the actions are the same that can be chosen from the context menu in the 3D view.

When the application starts, the default Start Workbench is active, and no document has been created, right clicking on the tree view shows only one command:

  • Expression actions: Copy selected, Copy active document, Copy all documents, Paste. These allow working with various documents, but are disabled if no document is present.

Once a new document has been created the following become active:

  • Expression actions: Copy active document, Copy all documents.

In addition, Link actions are available.

  • Link actions: Make Link.
    • Make Link group: Simple group, Group with links, Group with transform links.

Once objects are added to the document then in addition to the previous menus, right clicking on an empty part of the tree view will show additional options. These depend on the type of object and the active workbench.

For example, with the Draft Workbench, first select an object, then right click on an empty place in the tree view:

  • Toggle visibility: calls ToggleVisibility to make the object visible or invisible in the 3D view.
  • Show selection: calls ShowSelection to make the selected objects visible.
  • Hide selection: calls HideSelection to make the selected objects invisible.
  • Toggle selectability: calls ToggleSelectability to make the object no longer selectable in the 3D view. Use again this command to cancel its effect. It sets the object's Selectable attribute to true or false.
  • Select all instances: calls TreeSelectAllInstances to select all instances of this object in the tree.
  • Appearance: calls SetAppearance to launch the dialog to change color and sizes of lines and vertices, and color of faces.
  • Random color: calls RandomColor to assign a random color to the object. It sets the object's ShapeColor attribute to a tuple (r,g,b) with tree random floats between 0 and 1.
  • Cut: disabled if the the right-click is not on the object.
  • Copy: calls Copy to copy an object to memory.
  • Paste: calls Paste to paste a new object into the document; the copy is added to the end of the tree view.
  • Delete: calls Delete to removes the object from the document, and from the tree view.
  • Utilities: utilities specific to the Draft Workbench.


Template:Interface