102 lines
4.8 KiB
HTML
102 lines
4.8 KiB
HTML
<html><head><title>Macro MessageBox/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>Macro MessageBox/fr</h1></div>
|
|
|
|
<div id="mw-content-text" lang="fr" dir="ltr" class="mw-content-ltr"><hr/><div class="mw-parser-output"><table class="fcinfobox wikitable ct" width="100%" style="float: right; width: 230px; margin-left: 10px;">
|
|
<tr>
|
|
<td class="ctTitle">
|
|
<h3><span class="mw-headline" id="MessageBox"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Text-x-python.png" class="image"><img alt="Text-x-python.png" src="32px-Text-x-python.png" width="32" height="32" srcset="/wiki/images/2/2c/Text-x-python.png 1.5x" /></a> MessageBox</span></h3>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Description
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven left">Montre comment donner des informations à l'utilisateur dans les macros
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Auteur
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=User:Ga%C3%ABl_Ecorchard&action=edit&redlink=1" class="new" title="User:Gaël Ecorchard (page does not exist)">Gaël Ecorchard</a>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Liens
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=Macros_recipes/fr" title="Macros recipes/fr">Recettes macros</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=How_to_install_macros/fr" title="How to install macros/fr">Comment installer une macro</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=Customize_Toolbars/fr" title="Customize Toolbars/fr">Comment ajouter une barre d'outils</a>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Version
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven macro-version">1.0
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Date dernière modification
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven macro-date">2011-09-19
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctToc"><br /><div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
|
|
<ul>
|
|
<li class="toclevel-1"><a href="#MessageBox"><span class="tocnumber">1</span> <span class="toctext">MessageBox</span></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</td></tr>
|
|
</table>
|
|
<p><br />
|
|
</p><p>Cette macro permet d'afficher un signal, ou un texte dans une boîte de dialogue, avec un icône distinctif.
|
|
</p><p><a href="https://www.freecadweb.org/wiki/index.php?title=File:Macro_MessageBox_00.png" class="image" title="MessageBox"><img alt="MessageBox" src="480px-Macro_MessageBox_00.png" width="480" height="313" srcset="/wiki/images/c/cc/Macro_MessageBox_00.png 1.5x" /></a>
|
|
</p><p><br />
|
|
</p>
|
|
<pre>#! /usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Show how to give information to the user in macros
|
|
"""
|
|
from PySide import QtCore, QtGui
|
|
|
|
def errorDialog(msg):
|
|
# Create a simple dialog QMessageBox
|
|
# The first argument indicates the icon used: one of QtGui.QMessageBox.{NoIcon, Information, Warning, Critical, Question}
|
|
diag = QtGui.QMessageBox(QtGui.QMessageBox.Warning, 'Error in macro MessageBox', msg)
|
|
diag.setWindowModality(QtCore.Qt.ApplicationModal)
|
|
diag.exec_()
|
|
|
|
msg = 'Example of warning message'
|
|
errorDialog(msg)
|
|
raise(Exception(msg)) </pre>
|
|
<p><br />
|
|
Pour pouvoir utiliser les caractères accentués dans le champ texte de <b>Qt</b>, grâce à la balise <b># -*- coding: utf-8 -*-</b> il faut ajouter un " <b>u</b> " devant le message à afficher.
|
|
</p><p>Exemple :
|
|
</p>
|
|
<pre>diag = QtGui.QMessageBox(QtGui.QMessageBox.Warning, u'Trop d'éléments désignés', msg)
|
|
...
|
|
...
|
|
msg = u'Élément sélectionnés affichés' </pre>
|
|
<p><br />
|
|
Pour afficher plusieurs lignes dans une boîte de dialogue <b>Qt</b>, il faut ajouter <b>"\n"</b> (entre guillemets, valable aussi, entre apostrophes) entre chaque lignes.
|
|
</p><p>Valable aussi <b>"\r\n"</b> qui correspondent à <b>CR</b> retour chariot, et <b>LF</b> fin de ligne, valable aussi <b>"\t"</b> qui est une tabulation, les caractères doivent se trouver entre guillemets (ou apostrophes) comme une chaîne de caractère, les balises peuvent se trouver à côté du texte à afficher <b>"\nRayon\t  : "</b>, la balise <b>" \ "</b> (slash inversé) délimite la commande.
|
|
</p><p>Exemple :
|
|
</p>
|
|
<pre>diag = QtGui.QMessageBox(QtGui.QMessageBox.Information,u"Coordonnées",u"Coordonnée X : "+str(x)+"\r\n"+u"Coordonnée Y : "+str(y)+"\n"+u"Coordonnée Z :<br>
|
|
"+str(z)+"\nRayon\t  : "+str(r)) </pre>
|
|
<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=Macro_MessageBox/fr&oldid=240016">http://www.freecadweb.org/wiki/index.php?title=Macro_MessageBox/fr&oldid=240016</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> |