-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp-GtkSignals.html
97 lines (97 loc) · 4.66 KB
/
app-GtkSignals.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
90
91
92
93
94
95
96
97
<!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>Annexe A. Les signaux GTK</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="index.html" title="Tutoriel PyGTK 2.0">
<link rel="prev" href="ch-Copyright.html" title="Chapitre 28. Copyright du tutoriel et licence d'utilisation">
<link rel="next" href="sec-GtkWidget.html" title="A.2. GtkWidget">
<meta name="keywords" content="python,pygtk,tutoriel,traduction,signaux">
<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">Annexe A. Les signaux GTK</th></tr>
<tr>
<td width="20%" align="left">
<a accesskey="p" href="ch-Copyright.html">Préc.</a> </td>
<th width="60%" align="center"> </th>
<td width="20%" align="right"> <a accesskey="n" href="sec-GtkWidget.html">Suiv.</a>
</td>
</tr>
</table>
<hr>
</div>
<div class="appendix" lang="fr">
<div class="titlepage"><div><div><h2 class="title">
<a name="app-GtkSignals"></a>Annexe A. Les signaux GTK</h2></div></div></div>
<div class="toc">
<p><b>Table des matières</b></p>
<dl>
<dt><span class="sect1"><a href="app-GtkSignals.html#sec-GtkObject">A.1. GtkObject</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkWidget.html">A.2. GtkWidget</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkData.html">A.3. GtkData</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkContainer.html">A.4. GtkContainer</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkCalendar.html">A.5. GtkCalendar</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkEditable.html">A.6. GtkEditable</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkNotebook.html">A.7. GtkNotebook</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkList.html">A.8. GtkList</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkMenuShell.html">A.9. GtkMenuShell</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkToolbar.html">A.10. GtkToolbar</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkButton.html">A.11. GtkButton</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkItem.html">A.12. GtkItem</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkWindow.html">A.13. GtkWindow</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkHandleBox.html">A.14. GtkHandleBox</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkToggleButton.html">A.15. GtkToggleButton</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkMenuItem.html">A.16. GtkMenuItem</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkCheckMenuItem.html">A.17. GtkCheckMenuItem</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkInputDialog.html">A.18. GtkInputDialog</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkColorSelection.html">A.19. GtkColorSelection</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkStatusBar.html">A.20. GtkStatusBar</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkCurve.html">A.21. GtkCurve</a></span></dt>
<dt><span class="sect1"><a href="sec-GtkAdjustment.html">A.22. GtkAdjustment</a></span></dt>
</dl>
</div>
<p>Puisque PyGTK est un ensemble de widgets orienté objet, il possède
une hiérarchie d'héritage. Ce mécanisme d'héritage s'applique aux signaux.
Donc, il faut se référer à l'arbre hiérarchique des widgets quand on
utilise les signaux recensés dans cette section.
</p>
<div class="sect1" lang="fr">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="sec-GtkObject"></a>A.1. GtkObject</h2></div></div></div>
<pre class="programlisting">
destroy(object, data)
</pre>
</div>
</div>
<div class="navfooter">
<hr>
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left">
<a accesskey="p" href="ch-Copyright.html">Préc.</a> </td>
<td width="20%" align="center"> </td>
<td width="40%" align="right"> <a accesskey="n" href="sec-GtkWidget.html">Suiv.</a>
</td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Chapitre 28. Copyright du tutoriel et licence d'utilisation</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"> A.2. GtkWidget</td>
</tr>
</table>
</div>
</body>
</html>