Interfaccia

From FreeCAD Documentation
Revision as of 20:57, 22 November 2019 by Renatorivo (talk | contribs) (Created page with "=== Pannelli ===")

Introduzione

L'interfaccia di FreeCAD si basa su Qt, un noto toolkit di interfaccia utente grafica, particolarmente utilizzato in Linux, ma disponibile anche in Windows e MacOS.

Interfaccia standard di FreeCAD 0.19.

La finestra principale dell'applicazione può essere suddivisa approssimativamente in 10 sezioni:

  1. Vista 3D
  2. Parte superiore della Vista combinata, che include la Vista a albero e il pannello Azioni
  3. Parte inferiore della Vista combinata, che include l'editor delle proprietà
  4. Vista selezione
  5. Vista report
  6. Console Python
  7. Barra di stato
  8. Barra degli strumenti, vedere le seguenti informazioni sulla barra degli strumenti
  9. Selettore degli ambienti, che è essa stessa uno strumento
  10. Menu standard

Componenti dell'interfaccia

Come molti software, FreeCAD include una barra dei menu standard, quindi una serie di barre degli strumenti e pannelli in cui si trovano gli strumenti per l'utente.

Menu

I menu standard sono: File, Modifica, Visualizza, Strumenti, Macro, Finestre, Aiuto.

Barre degli strumenti

Le barre degli strumenti standard che appaiono nell'interfaccia sono:

  • Barra degli strumenti File: strumenti per lavorare con i file, aprire documenti, copiare, incollare, annullare e ripetere azioni.
  • Selettore degli ambienti: contiene un singolo widget per selezionare l'ambiente attivo.
  • Barra degli strumenti Macro: strumenti per registrare, modificare ed eseguire le macro.
  • Barra degli strumenti Visualizza: strumenti per controllare la modalità di visualizzazione degli oggetti nella vista 3D.
  • Barra degli strumenti Struttura: strumenti per organizzare gli oggetti nel documento e creare collegamenti a documenti aggiuntivi.

Questi possono essere attivati e disattivati facendo clic con il pulsante destro del mouse su uno spazio vuoto su una delle barre degli strumenti e scegliendo l'elemento desiderato, oppure dal menu Visualizza → Barre degli strumenti.

Pannelli

The main panels that allow working with objects are:

  • 3D view: the area where 2D and 3D geometry is drawn.
  • Combo view: the panel that contains the tree view, the task panel, and the property editor.
  • Tree view: the element that shows all objects in the document and their parametric history.
  • Task panel: the panel that shows different actions and options depending on the drawing tool selected.
  • Property editor: the place where object properties are modified.
  • Selection view: the panel that shows elements that are currently selected.
  • Report view: the text box that shows different messages from the application and its tools.
  • Python console: the editor that allows running Python code interactively to see results in the 3D view.
  • Status bar: the bar that shows certain messages from the application, and that has the mouse navigation selector.
  • DAG view: an alternative to the tree view, which shows the relationships between different objects through a graph.

With the exception of the 3D view, all can be turned on and off by right clicking on an empty space on one of the top toolbars and choosing the desired element, or from the menu, View → Panels.

To activate and deactivate the status bar use the menu, View → Status bar.

Other

Other useful interfaces and windows include:

  • Scene inspector: a panel that shows the Coin3D nodes that make up the scenegraph. For power users and developers, it may be useful to troubleshoot operations that manipulate the scene directly, and the objects created in the 3D view.
  • Dependency graph: a window showing the dependency graph of all the objects in the document, created with the auxiliary program Graphviz. It is helpful to recognize problems in the creation of objects, such as circular dependencies, which may not be entirely evident from the tree view or the DAG view.

Customization

Le barre degli strumenti possono avere più o meno pulsanti e le barre degli strumenti personalizzate possono essere create con un mix di strumenti diversi e per ospitare le macro sviluppate.

These options are in the menu, Tools → Customize. See interface customization.

Template:Interface/it