-
Notifications
You must be signed in to change notification settings - Fork 0
/
sec-IdleFunctions.html
89 lines (89 loc) · 4.14 KB
/
sec-IdleFunctions.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>19.3. Les fonctions d'inactivité</title>
<link rel="stylesheet" href="pygtktutfr.css" type="text/css">
<meta name="generator" content="Bluefish 1.0.5">
<link rel="start" href="index.html" title="Tutoriel PyGTK 2.0">
<link rel="up" href="ch-TimeoutsIOAndIdleFunctions.html" title="Chapitre 19. Temporisations, Entrées/Sorties et fonctions d'inactivité">
<link rel="prev" href="sec-MonitoringIO.html" title="19.2. Contrôler les Entrées/Sorties">
<link rel="next" href="ch-AdvancedEventAndSignalHandling.html" title="Chapitre 20. Gestion avancée des évènements et signaux">
<meta name="keywords" content="python,pygtk,tutoriel,traduction,fonction d'inactivité">
<link rel="home" href="index.html" title="Table des matières">
</head>
<body>
<div class="localisation">
Vous êtes à peu près ici :
<a href="../../index.html">Accueil</a> »
<a href="../pygtktut.php">tutoriel PyGTK</a> »
<a href="index.html">PyGTK : sommaire</a>
</div>
<!-- fin localisation -->
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr><th colspan="3" align="center">19.3. Les fonctions d'inactivité</th></tr>
<tr>
<td width="20%" align="left">
<a accesskey="p" href="sec-MonitoringIO.html">Préc.</a> </td>
<th width="60%" align="center">Chapitre 19. Temporisations, Entrées/Sorties et fonctions d'inactivité</th>
<td width="20%" align="right"> <a accesskey="n" href="ch-AdvancedEventAndSignalHandling.html">Suiv.</a>
</td>
</tr>
</table>
<hr>
</div>
<div class="sect1" lang="fr">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="sec-IdleFunctions"></a>19.3. Les fonctions d'inactivité</h2></div></div></div>
<p>Que faire si on souhaite appeler une fonction quand rien d'autre ne se passe ?
Il faut utiliser la fonction :</p>
<pre class="programlisting">
source_id = gobject.idle_add(<em class="parameter"><code>rappel</code></em>, ...)
</pre>
<p>Tous les arguments suivants le premier (indiqué par ...) sont
transmis au <em class="parameter"><code>rappel</code></em> dans le même ordre. La valeur de
retour <em class="parameter"><code>source_id</code></em> nous fournit une référence au
gestionnaire.</p>
<p>Cette fonction entraîne l'appel de la fonction indiquée
<em class="parameter"><code>rappel</code></em> par GTK quand rien d'autre ne se passe.
</p>
<p>Le <em class="parameter"><code>rappel</code></em> a la forme :</p>
<pre class="programlisting">
def rappel(...):
</pre>
<p>... où les arguments transmis à la fonction <code class="function">rappel</code>
sont les mêmes que ceux qui ont été indiqués dans la fonction
<code class="function">gobject.idle_add</code>(). Comme pour les autres fonctions
de rappel, renvoyer <code class="literal">FALSE</code> empéchera le rappel
d'inactivité d'être appelé et renvoyer <code class="literal">TRUE</code> permet
à la fonction de rappel d'être rappelée à la prochaine période
d'inactivité.</p>
<p>Une fonction d'inactivité peut être supprimée de la
queue par la fonction :</p>
<pre class="programlisting">
gobject.source_remove(<em class="parameter"><code>source_id</code></em>)
</pre>
<p>... où le paramètre <em class="parameter"><code>source_id</code></em> est la valeur
retournée par la fonction <code class="function">gobject.idle_add</code>().
</p>
</div>
<div class="navfooter">
<hr>
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left">
<a accesskey="p" href="sec-MonitoringIO.html">Préc.</a> </td>
<td width="20%" align="center"><a accesskey="u" href="ch-TimeoutsIOAndIdleFunctions.html">Chapitre parent</a></td>
<td width="40%" align="right"> <a accesskey="n" href="ch-AdvancedEventAndSignalHandling.html">Suiv.</a>
</td>
</tr>
<tr>
<td width="40%" align="left" valign="top">19.2. Contrôler les Entrées/Sorties </td>
<td width="20%" align="center"><a accesskey="h" href="index.html">Table des matières</a></td>
<td width="40%" align="right" valign="top"> Chapitre 20. Gestion avancée des évènements et signaux</td>
</tr>
</table>
</div>
</body>
</html>