488 lines
24 KiB
HTML
488 lines
24 KiB
HTML
<html><head><title>Embedding FreeCADGui/fr</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Embedding FreeCADGui/fr</h1></div>
|
|
|
|
<div id="mw-content-text" lang="fr" dir="ltr" class="mw-content-ltr"><hr/><div class="mw-parser-output"><p>Vous savez déjà que vous pouvez <a href="https://www.freecadweb.org/wiki/index.php?title=Embedding_FreeCAD/fr" title="Embedding FreeCAD/fr">importer le module FreeCAD</a> dans une application Python, et d'utiliser tous les outils de l'application hôte. Mais l'interface utilisateur FreeCAD (GUI) peut également être importée en tant que module Python.
|
|
Normalement, vous pouvez importer l'interface complète dans son ensemble, et non pas des portions de celui-ci. C'est parce que le système d'interface FreeCAD n'est pas seulement faite de widgets indépendants, et, de barres d'outils, mais, cette interface est une construction complexe, où plusieurs composantes invisibles (tels que le système de sélection, etc) sont nécessaires à la vue 3D, pour pouvoir fonctionner.
|
|
</p><p>Mais, avec un peu de "hacking", il est possible d'importer toute l'interface de FreeCAD, alors déplacez la vue 3D de FreeCAD dans votre propre application Qt.
|
|
</p><p>Nous vous montrons ici, 3 méthodes différentes.
|
|
</p>
|
|
<div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
|
|
<ul>
|
|
<li class="toclevel-1 tocsection-1"><a href="#En_utilisant_directement_le_widget_vue_3D_de_FreeCAD"><span class="tocnumber">1</span> <span class="toctext">En utilisant directement le widget vue 3D de FreeCAD</span></a></li>
|
|
<li class="toclevel-1 tocsection-2"><a href="#Conversion_de_notre_bo.C3.AEte_de_dialogue_en_code_Python_avec_.22pyuic.22"><span class="tocnumber">2</span> <span class="toctext">Conversion de notre boîte de dialogue en code Python avec "pyuic"</span></a></li>
|
|
<li class="toclevel-1 tocsection-3"><a href="#Cr.C3.A9ation_d.27un_examinateur_.22soGui_Examiner_Viewer.22"><span class="tocnumber">3</span> <span class="toctext">Création d'un examinateur "soGui Examiner Viewer"</span></a></li>
|
|
<li class="toclevel-1 tocsection-4"><a href="#Utilisation_d.27un_module_tiers"><span class="tocnumber">4</span> <span class="toctext">Utilisation d'un module tiers</span></a></li>
|
|
<li class="toclevel-1 tocsection-5"><a href="#Sans_ex.C3.A9cuter_le_Gui_de_FreeCAD"><span class="tocnumber">5</span> <span class="toctext">Sans exécuter le Gui de FreeCAD</span></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<h2><span class="mw-headline" id="En_utilisant_directement_le_widget_vue_3D_de_FreeCAD">En utilisant directement le widget vue 3D de FreeCAD</span></h2>
|
|
<p>Soyez conscient qu'il y a d'<b>énormes problèmes</b> dans cette approche. La gestion des événements <b>Qt</b> ne semble pas fonctionner (pourquoi ?? aucune idée !), et, si vous utilisez la vue 3D, du menu contextuel, l'application se bloque. Une meilleure façon serait de créer votre propre vue 3D <b>SoQtExaminerViewer</b> ou <b>SoQtViewer</b> et "pousser" le contenu de la vue 3d de FreeCAD dans votre code, comme indiqué dans les sections ci-dessous.
|
|
</p><p>Tout d'abord, obtenir la fenêtre principale via <b>PyQt</b> :
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>from PySide import QtGui
|
|
from PySide import QtCore
|
|
|
|
def getMainWindow():
|
|
toplevel = QtGui.qApp.topLevelWidgets()
|
|
for i in toplevel:
|
|
if i.metaObject().className() == "Gui::MainWindow":
|
|
return i
|
|
raise Exception("No main window found")
|
|
|
|
mw=getMainWindow()</pre></div>
|
|
<p>Ensuite, récupérez les <b>View3DInventor</b> de la même façon :
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>def get3dview(mw):
|
|
childs=mw.findChildren(QtGui.QMainWindow)
|
|
for i in childs:
|
|
if i.metaObject().className()=="Gui::View3DInventor":
|
|
return i
|
|
return None
|
|
|
|
v=get3dview(mw)</pre></div>
|
|
<p>Le code suivant est généré automatiquement, par la création d'un fichier <a href="https://www.freecadweb.org/wiki/index.php?title=Dialog_creation/fr" title="Dialog creation/fr">QtDesigner</a>, et de le convertir en code Python avec l'outil <b><a href="/wiki/Dialog_creation/fr#Conversion_de_notre_bo.C3.AEte_de_dialogue_en_code_Python_avec_.22pyuic.22" title="Dialog creation/fr">pyuic</a></b> :
|
|
</p>
|
|
<h2><span class="mw-headline" id="Conversion_de_notre_bo.C3.AEte_de_dialogue_en_code_Python_avec_.22pyuic.22">Conversion de notre boîte de dialogue en code Python avec "pyuic"</span></h2>
|
|
<p>Maintenant, nous allons sauver notre widget quelque part. Il sera sauvegardé dans un fichier <b>.Ui</b>, que nous allons facilement convertir en script Python avec <b>pyuic</b>.<br />
|
|
Dans windows, le programme est livré avec <b>pyuic pyqt</b> (à vérifier), sur Linux, vous aurez probablement besoin de l'installer séparément à partir de votre gestionnaire de paquets (sur debian-systèmes basés sur, il fait partie du paquet pyqt4-dev-tools).<br />
|
|
Pour faire la conversion, vous aurez besoin d'ouvrir une fenêtre de terminal (ou une fenêtre d'invite de commandes), accédez à l'endroit où vous avez enregistré votre fichier <b>ui</b> :
|
|
</p>
|
|
<ul><li> <b>pyuic.py</b> est l'outil qui convertit les fichiers qt-designer <b>.ui</b> (Interface Utilisateur) en fichier <b>.py</b> (code Python), la ligne de commande dans la console DOS est :<br /></li></ul>
|
|
<pre>pyuic -x fichier.ui > fichier.py
|
|
</pre>
|
|
<ul><li> vous pouvez créer un fichier <b>.bat</b> pour automatiser la commande:</li>
|
|
<li> copiez cette ligne dans un fichier texte et sauvez le sous le nom <b>"compile.bat"</b></li></ul>
|
|
<pre>@"C:\Python27\python" "C:\Python27\Lib\site-packages\PyQt4\uic\pyuic.py" -x %1.ui > %1.py
|
|
</pre>
|
|
<ul><li> puis tapez à la ligne de commande " <b>compile fichier</b> " sans extension, le nom "<b>fichier</b>" entré <b>.ui</b>, sera le nom sortant avec extension <b>.py</b> </li>
|
|
<li> <b>ATTENTION: il faut que les fichiers soient présents et accessibles, vérifiez que les fichiers sont présents et que les chemins sont justes !</b> </li>
|
|
<li> pour cet exemple entièrement automatique et simplifié, <b>"compile.bat"</b> est au même endroit que le <b>fichier.ui</b> à convertir en <b>fichier.py</b><br /></li></ul>
|
|
<p>Autres liens de documentation <a rel="nofollow" class="external text" href="http://www.qtrac.eu/pyqtbook.html">"Python and Qt"</a> , sur <a rel="nofollow" class="external text" href="http://ogirardot.developpez.com/introduction-pyqt/">Développez.com</a> et bien d'autres.<br />
|
|
Sur certains systèmes, le programme est appelé <b>pyuic4</b> au lieu de <b>pyuic</b> (attention à la compatibilité). Il sert simplement de convertisseur de fichier <b>.Ui</b> en un script python <b>.py</b>.<br /><br />
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre># -*- coding: utf-8 -*-
|
|
|
|
# Form implementation generated from reading ui file 'mainwindow.ui'
|
|
#
|
|
# Created: Sun Dec 27 11:18:56 2009
|
|
# by: PySide UI code generator 4.6
|
|
#
|
|
# Modify for PySide 11/02/2015
|
|
# Python version: 2.7.8
|
|
# Qt version: 4.8.6
|
|
#
|
|
# WARNING! All changes made in this file will be lost!
|
|
|
|
from PySide import QtCore, QtGui
|
|
|
|
class Ui_MainWindow(object):
|
|
def setupUi(self, MainWindow):
|
|
MainWindow.setObjectName("MainWindow")
|
|
MainWindow.resize(508, 436)
|
|
self.centralwidget = QtGui.QWidget(MainWindow)
|
|
self.centralwidget.setObjectName("centralwidget")
|
|
self.gridLayout = QtGui.QGridLayout(self.centralwidget)
|
|
self.gridLayout.setObjectName("gridLayout")
|
|
self.mdiArea = QtGui.QMdiArea(self.centralwidget)
|
|
self.mdiArea.setViewMode(QtGui.QMdiArea.TabbedView)
|
|
self.mdiArea.setTabPosition(QtGui.QTabWidget.South)
|
|
self.mdiArea.setObjectName("mdiArea")
|
|
self.gridLayout.addWidget(self.mdiArea, 0, 0, 1, 1)
|
|
MainWindow.setCentralWidget(self.centralwidget)
|
|
self.menubar = QtGui.QMenuBar(MainWindow)
|
|
self.menubar.setGeometry(QtCore.QRect(0, 0, 508, 27))
|
|
self.menubar.setObjectName("menubar")
|
|
MainWindow.setMenuBar(self.menubar)
|
|
self.statusbar = QtGui.QStatusBar(MainWindow)
|
|
self.statusbar.setObjectName("statusbar")
|
|
MainWindow.setStatusBar(self.statusbar)
|
|
|
|
self.retranslateUi(MainWindow)
|
|
QtCore.QMetaObject.connectSlotsByName(MainWindow)
|
|
|
|
def retranslateUi(self, MainWindow):
|
|
MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8))</pre></div>
|
|
<p>Ensuite, créez la fenêtre principale, qui devrait être la fenêtre principale de votre application, et appliquez la configuration UI (UI setup) ci-dessus, dans le but d'ajouter une zone MDI et "bouger" notre point de vue 3d pour elle.
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>ui=Ui_MainWindow()
|
|
my_mw=QtGui.QMainWindow()
|
|
ui.setupUi(my_mw)
|
|
ui.mdiArea.addSubWindow(v)
|
|
my_mw.show()</pre></div>
|
|
<h2><span class="mw-headline" id="Cr.C3.A9ation_d.27un_examinateur_.22soGui_Examiner_Viewer.22">Création d'un examinateur "soGui Examiner Viewer"</span></h2>
|
|
<p>Alternativement, vous pouvez également utiliser le module <b>FreeCADGui</b> pour extraire une représentation <b>coin/openInventor</b> des objets de votre scène, puis utilisez des données <b>coin</b>, dans une visionneuse externe (votre application).
|
|
</p><p>Voici un moyen facile d'obtenir la représentation 3D d'un objet:
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> FreeCAD.activeDocument().addObject("Part::Box","myBox")
|
|
s=FreeCADGui.activeDocument().getObject("myBox").toString() # store as string
|
|
from pivy import coin
|
|
inp.setBuffer(s)
|
|
myNode=coin.SoDB.readAll(inp) # restore from string</pre></div>
|
|
<p>Ensuite, créez un visualiseur autonome avec <b>pivy</b> :
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>from pivy.sogui import *
|
|
from pivy.coin import *
|
|
import sys
|
|
|
|
def myViewer():
|
|
# Initialize Coin. This returns a main window to use.
|
|
# If unsuccessful, exit.
|
|
myWindow = SoGui.init(sys.argv[0])
|
|
if myWindow == None: sys.exit(1)
|
|
|
|
# Make an empty scene and add our node to it
|
|
scene = SoSeparator()
|
|
scene.addChild(myNode)
|
|
|
|
# Create a viewer in which to see our scene graph.
|
|
viewer = SoGuiExaminerViewer(myWindow)
|
|
|
|
# Put our scene into viewer, change the title
|
|
viewer.setSceneGraph(scene)
|
|
viewer.setTitle("FreeCAD Object Viewer")
|
|
viewer.show()
|
|
|
|
SoGui.show(myWindow) # Display main window
|
|
SoGui.mainLoop() # Main Coin event loop</pre></div>
|
|
<p>Ensuite, il vous suffit de lancer votre visualiseur :
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>myViewer()</pre></div>
|
|
<h2><span class="mw-headline" id="Utilisation_d.27un_module_tiers">Utilisation d'un module tiers</span></h2>
|
|
<p>Au lieu d'utiliser le visualiseur <b>Sogui</b>, vous pouvez aussi utiliser un module tiers plus moderne. C'est probablement la meilleure des 3 solutions.
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> #!/usr/bin/env python
|
|
|
|
###
|
|
# Copyright (c) 2002-2008 Kongsberg SIM
|
|
#
|
|
# Permission to use, copy, modify, and distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
#
|
|
|
|
import os
|
|
import sys
|
|
|
|
from PyQt4 import QtCore, QtGui
|
|
from PyQt4.QtGui import QMainWindow, QWorkspace, QAction, QFileDialog, QApplication
|
|
|
|
from pivy.coin import SoInput, SoDB
|
|
from pivy.quarter import QuarterWidget
|
|
|
|
import FreeCAD, FreeCADGui
|
|
|
|
def getMainWindow():
|
|
toplevel = QtGui.qApp.topLevelWidgets()
|
|
for i in toplevel:
|
|
if i.metaObject().className() == "Gui::MainWindow":
|
|
return i
|
|
raise Exception("No main window found")
|
|
|
|
class MdiQuarterWidget(QuarterWidget):
|
|
def __init__(self, parent, sharewidget):
|
|
QuarterWidget.__init__(self, parent=parent, sharewidget=sharewidget)
|
|
|
|
def loadFile(self, filename):
|
|
in_ = SoInput()
|
|
if (in_.openFile(str(filename.toLatin1()))):
|
|
root = SoDB.readAll(in_)
|
|
if (root):
|
|
self.setSceneGraph(root)
|
|
self.currentfile = filename
|
|
self.setWindowTitle(filename)
|
|
return True
|
|
return False
|
|
|
|
def currentFile(self):
|
|
return self.currentfile
|
|
|
|
def minimumSizeHint(self):
|
|
return QtCore.QSize(640, 480)
|
|
|
|
class MdiMainWindow(QMainWindow):
|
|
def __init__(self, qApp):
|
|
QMainWindow.__init__(self)
|
|
self._firstwidget = None
|
|
self._workspace = QWorkspace()
|
|
self.setCentralWidget(self._workspace)
|
|
self.setAcceptDrops(True)
|
|
self.setWindowTitle("Pivy Quarter MDI example")
|
|
|
|
filemenu = self.menuBar().addMenu("&File")
|
|
windowmenu = self.menuBar().addMenu("&Windows")
|
|
|
|
fileopenaction = QAction("&Create Box", self)
|
|
fileexitaction = QAction("E&xit", self)
|
|
tileaction = QAction("Tile", self)
|
|
cascadeaction = QAction("Cascade", self)
|
|
|
|
filemenu.addAction(fileopenaction)
|
|
filemenu.addAction(fileexitaction)
|
|
windowmenu.addAction(tileaction)
|
|
windowmenu.addAction(cascadeaction)
|
|
|
|
self.connect(fileopenaction, QtCore.SIGNAL("triggered()"), self.createBoxInFreeCAD)
|
|
self.connect(fileexitaction, QtCore.SIGNAL("triggered()"), QtGui.qApp.closeAllWindows)
|
|
self.connect(tileaction, QtCore.SIGNAL("triggered()"), self._workspace.tile)
|
|
self.connect(cascadeaction, QtCore.SIGNAL("triggered()"), self._workspace.cascade)
|
|
|
|
windowmapper = QtCore.QSignalMapper(self)
|
|
self.connect(windowmapper, QtCore.SIGNAL("mapped(QWidget *)"), self._workspace.setActiveWindow)
|
|
|
|
self.dirname = os.curdir
|
|
|
|
def dragEnterEvent(self, event):
|
|
# just accept anything...
|
|
event.acceptProposedAction()
|
|
|
|
def dropEvent(self, event):
|
|
mimedata = event.mimeData()
|
|
if mimedata.hasUrls():
|
|
path = mimedata.urls().takeFirst().path()
|
|
self.open_path(path)
|
|
|
|
def closeEvent(self, event):
|
|
self._workspace.closeAllWindows()
|
|
|
|
def open(self):
|
|
self.open_path(QFileDialog.getOpenFileName(self, "", self.dirname))
|
|
|
|
def open_path(self, filename):
|
|
self.dirname = os.path.dirname(str(filename.toLatin1()))
|
|
if not filename.isEmpty():
|
|
existing = self.findMdiChild(filename)
|
|
if existing:
|
|
self._workspace.setActiveWindow(existing)
|
|
return
|
|
child = self.createMdiChild()
|
|
if (child.loadFile(filename)):
|
|
self.statusBar().showMessage("File loaded", 2000)
|
|
child.show()
|
|
else:
|
|
child.close()
|
|
|
|
def findMdiChild(self, filename):
|
|
canonicalpath = QtCore.QFileInfo(filename).canonicalFilePath()
|
|
for window in self._workspace.windowList():
|
|
mdiwidget = window
|
|
if mdiwidget.currentFile() == canonicalpath:
|
|
return mdiwidget
|
|
return 0;
|
|
|
|
def createMdiChild(self):
|
|
widget = MdiQuarterWidget(None, self._firstwidget)
|
|
self._workspace.addWindow(widget)
|
|
if not self._firstwidget:
|
|
self._firstwidget = widget
|
|
return widget
|
|
|
|
def createBoxInFreeCAD(self):
|
|
widget = MdiQuarterWidget(None, self._firstwidget)
|
|
self._workspace.addWindow(widget)
|
|
if not self._firstwidget:
|
|
self._firstwidget = widget
|
|
widget.show()
|
|
doc = FreeCAD.newDocument()
|
|
doc.addObject("Part::Box","myBox")
|
|
iv_=FreeCADGui.getDocument(doc.Name).getObject("myBox").toString()
|
|
in_ = SoInput()
|
|
in_.setBuffer(iv_)
|
|
root = SoDB.readAll(in_)
|
|
if (root):
|
|
widget.setSceneGraph(root)
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
mdi = MdiMainWindow(app)
|
|
mdi.show()
|
|
FreeCADGui.showMainWindow() # setup the GUI stuff of FreeCAD
|
|
mw=getMainWindow()
|
|
mw.hide() # hide all
|
|
if len(sys.argv)==2:
|
|
mdi.open_path(QtCore.QString(sys.argv[1]))
|
|
sys.exit(app.exec_())
|
|
|
|
def show():
|
|
mdi = MdiMainWindow(QtGui.qApp)
|
|
mdi.show()
|
|
mw=getMainWindow()
|
|
#mw.hide() # hide all
|
|
|
|
if __name__ == '__main__':
|
|
main()</pre></div>
|
|
<h2><span class="mw-headline" id="Sans_ex.C3.A9cuter_le_Gui_de_FreeCAD">Sans exécuter le Gui de FreeCAD</span></h2>
|
|
<p>A partir de FreeCAD rev2760, il est maintenant possible d'obtenir la représentation d'un objet quelconque <b>coin</b> FreeCAD sans devoir ouvrir la fenêtre principale.<br />
|
|
Il est donc extrêmement facile de mettre en œuvre votre propre visualiseur, et, rester transparent pour les mises à jour de FreeCAD.<br />
|
|
Après avoir importé le module <b>FreeCADGui</b>, vous devez le mettre à niveau avec la méthode <b>setupWithoutGUI()</b>, après quoi, vous pouvez utiliser tous les fournisseurs de vue de FreeCAD, pour obtenir les nœuds <b>coin/openInventor</b>.
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> import os, sys, FreeCAD, FreeCADGui
|
|
from PyQt4 import QtCore, QtGui
|
|
from PyQt4.QtGui import QMainWindow, QWorkspace, QAction, QFileDialog, QApplication
|
|
from pivy.coin import SoInput, SoDB, sogui
|
|
|
|
class MdiMainWindow(QMainWindow):
|
|
def __init__(self, qApp):
|
|
QMainWindow.__init__(self)
|
|
self._firstwidget = None
|
|
self._workspace = QWorkspace()
|
|
self.setCentralWidget(self._workspace)
|
|
self.setAcceptDrops(True)
|
|
self.setWindowTitle("Pivy Quarter MDI example")
|
|
self.viewers=[]
|
|
|
|
filemenu = self.menuBar().addMenu("&File")
|
|
windowmenu = self.menuBar().addMenu("&Windows")
|
|
|
|
fileopenaction = QAction("&Create Box", self)
|
|
fileexitaction = QAction("E&xit", self)
|
|
tileaction = QAction("Tile", self)
|
|
cascadeaction = QAction("Cascade", self)
|
|
|
|
filemenu.addAction(fileopenaction)
|
|
filemenu.addAction(fileexitaction)
|
|
windowmenu.addAction(tileaction)
|
|
windowmenu.addAction(cascadeaction)
|
|
|
|
self.connect(fileopenaction, QtCore.SIGNAL("triggered()"), self.createBoxInFreeCAD)
|
|
self.connect(fileexitaction, QtCore.SIGNAL("triggered()"), QtGui.qApp.closeAllWindows)
|
|
self.connect(tileaction, QtCore.SIGNAL("triggered()"), self._workspace.tile)
|
|
self.connect(cascadeaction, QtCore.SIGNAL("triggered()"), self._workspace.cascade)
|
|
|
|
windowmapper = QtCore.QSignalMapper(self)
|
|
self.connect(windowmapper, QtCore.SIGNAL("mapped(QWidget *)"), self._workspace.setActiveWindow)
|
|
|
|
def closeEvent(self, event):
|
|
self._workspace.closeAllWindows()
|
|
|
|
def createBoxInFreeCAD(self):
|
|
widget = QtGui.QWidget(self._firstwidget)
|
|
viewer = sogui.SoGuiExaminerViewer(widget)
|
|
self._workspace.addWindow(widget)
|
|
if not self._firstwidget:
|
|
self._firstwidget = widget
|
|
widget.show()
|
|
self.viewers.append(viewer)
|
|
doc = FreeCAD.newDocument()
|
|
obj=doc.addObject("Part::Box","myBox")
|
|
doc.recompute()
|
|
root=FreeCADGui.subgraphFromObject(obj)
|
|
viewer.setSceneGraph(root)
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
mdi = MdiMainWindow(app)
|
|
mdi.show()
|
|
FreeCADGui.setupWithoutGUI()
|
|
sys.exit(app.exec_())
|
|
|
|
if __name__ == '__main__':
|
|
main()</pre></div>
|
|
<p>Ou, si vous utilisez le module <b>pivy Sogui</b> et qu'il ne fonctionne pas chez vous, (le module <b>Sogui</b> devient obsolète, et, les développeurs, désormais favorisent la bibliothèque <b>coin</b>, qui a une interaction bien meilleure avec qt), c'est le même scénario, mais avec une aide tierce :
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre> #!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
from PyQt4 import QtCore, QtGui
|
|
from PyQt4.QtGui import QMainWindow, QWorkspace, QAction, QApplication
|
|
|
|
from pivy.coin import SoInput, SoDB
|
|
from pivy.quarter import QuarterWidget
|
|
import FreeCADGui
|
|
|
|
|
|
class MdiQuarterWidget(QuarterWidget):
|
|
def __init__(self, parent, sharewidget):
|
|
QuarterWidget.__init__(self, parent=parent, sharewidget=sharewidget)
|
|
|
|
def minimumSizeHint(self):
|
|
return QtCore.QSize(640, 480)
|
|
|
|
|
|
class MdiMainWindow(QMainWindow):
|
|
def __init__(self, qApp):
|
|
QMainWindow.__init__(self)
|
|
self._firstwidget = None
|
|
self._workspace = QWorkspace()
|
|
self.setCentralWidget(self._workspace)
|
|
self.setAcceptDrops(True)
|
|
self.setWindowTitle("Pivy Quarter MDI example")
|
|
|
|
filemenu = self.menuBar().addMenu("&File")
|
|
windowmenu = self.menuBar().addMenu("&Windows")
|
|
|
|
fileopenaction = QAction("&Create Box", self)
|
|
fileexitaction = QAction("E&xit", self)
|
|
tileaction = QAction("Tile", self)
|
|
cascadeaction = QAction("Cascade", self)
|
|
|
|
filemenu.addAction(fileopenaction)
|
|
filemenu.addAction(fileexitaction)
|
|
windowmenu.addAction(tileaction)
|
|
windowmenu.addAction(cascadeaction)
|
|
|
|
self.connect(fileopenaction, QtCore.SIGNAL("triggered()"), self.createBoxInFreeCAD)
|
|
self.connect(fileexitaction, QtCore.SIGNAL("triggered()"), QtGui.qApp.closeAllWindows)
|
|
self.connect(tileaction, QtCore.SIGNAL("triggered()"), self._workspace.tile)
|
|
self.connect(cascadeaction, QtCore.SIGNAL("triggered()"), self._workspace.cascade)
|
|
|
|
windowmapper = QtCore.QSignalMapper(self)
|
|
self.connect(windowmapper, QtCore.SIGNAL("mapped(QWidget *)"), self._workspace.setActiveWindow)
|
|
|
|
self.dirname = os.curdir
|
|
|
|
def closeEvent(self, event):
|
|
self._workspace.closeAllWindows()
|
|
|
|
def createBoxInFreeCAD(self):
|
|
d=FreeCAD.newDocument()
|
|
o=d.addObject("Part::Box")
|
|
d.recompute()
|
|
s=FreeCADGui.subgraphFromObject(o)
|
|
child = self.createMdiChild()
|
|
child.show()
|
|
child.setSceneGraph(s)
|
|
|
|
def createMdiChild(self):
|
|
widget = MdiQuarterWidget(None, self._firstwidget)
|
|
self._workspace.addWindow(widget)
|
|
if not self._firstwidget:
|
|
self._firstwidget = widget
|
|
return widget
|
|
|
|
|
|
def main():
|
|
app = QApplication(sys.argv)
|
|
FreeCADGui.setupWithoutGUI()
|
|
mdi = MdiMainWindow(app)
|
|
mdi.show()
|
|
sys.exit(app.exec_())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()</pre></div>
|
|
<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=Embedding_FreeCADGui/fr&oldid=160242">http://www.freecadweb.org/wiki/index.php?title=Embedding_FreeCADGui/fr&oldid=160242</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> |