FreeCADGui API/it


Questo modulo è la controparte del modulo FreeCAD. Contiene tutto ciò che riguarda l'interfaccia utente e le viste 3D. Esempio:

import FreeCAD as App
import FreeCADGui as Gui

# get the 3D model document
doc = App.ActiveDocument    

# get the visual representation model document
gui_doc = Gui.ActiveDocument

gui_doc.activateWorkbench("myWorkbench") 


Method.png activateWorkbench ( string )

Description: Attiva un ambiente di lavoro per nome

Returns: nulla


Method.png activeDocument ( )

Description:

Returns: il documento attivo o Nulla se non esiste


Method.png activeWorkbench ( )

Description:

Returns: l'oggetto workbench attivo


Method.png addCommand ( string, object )

Description: Aggiunge un comando di FreeCAD. String è il nome del comando e object è il nome della classe che definisce il comando

Returns:


Method.png addIcon ( string, string or list )

Description: Aggiunge al sistema un'icona come nome del file o in formato XPM

Returns:


Method.png addIconPath ( string )

Description: Aggiunge al sistema un nuovo percorso per trovare i file di icone

Returns:


Method.png addPreferencePage ( string,string )

Description: Aggiunge un modulo di interfaccia utente per la finestra delle preferenze. Il primo argomento specifica il nome del file e il secondo indica il nome del gruppo

Returns:


Method.png addWorkbench ( string, object )

Description: Aggiunge un ambiente di lavoro con un nome definito. La stringa è il nome del banco di lavoro e l'oggetto è il nome della classe che definisce l'ambiente

Returns:


Method.png createDialog ( string )

Description: Apre un file UI, Interfaccia Utente

Returns:


Method.png getDocument ( string )

Description: Ottiene un documento con il suo nome

Returns: il documento


Method.png getWorkbench ( string )

Description: Ottiene un ambiente di lavoro con il suo nome

Returns: l'ambiente


Method.png insert ( string )

Description: Apre una macro, un file Inventor o VRML

Returns: il documento


Method.png listWorkbenches ( )

Description: Mostra un elenco di tutti gli ambienti di lavoro

Returns: una lista


Method.png open ( string )

Description: Apre un file macro, Inventor o VRML

Returns: il documento aperto


Method.png removeWorkbench ( string )

Description: Rimuove un ambiente di lavoro per nome

Returns:


Method.png runCommand ( string )

Description: Esegue un comando di FreeCAD per nome

Returns:


Method.png updateGui ( )

Description: Aggiorna la finestra principale e tutte le sue finestre

Returns:

Online version: "http://www.freecadweb.org/wiki/index.php?title=FreeCADGui_API/it&oldid=267215"

Navigation menu