-
Notifications
You must be signed in to change notification settings - Fork 0
/
ch-WidgetOverview.html
193 lines (177 loc) · 6.38 KB
/
ch-WidgetOverview.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type">
<title>Chapitre 5. Vue d'ensemble des widgets</title>
<link rel="stylesheet" href="pygtktutfr.css" type="text/css">
<meta name="keywords" content="python,pygtk,tutoriel,traduction,widget">
<link rel="start" href="index.html" title="Tutoriel PyGTK 2.0">
<link rel="home" href="index.html" title="Table des matières">
<link rel="up" href="index.html" title="Table des matières">
<link rel="previous" href="sec-TablePackingExample.html" title="4.5. Démonstration de placement avec les tableaux">
<link rel="next" href="sec-WidgetsWithoutWindows.html" title="5.2. Les widgets sans fenêtre">
</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="En-tête de navigation">
<tr>
<th colspan="3" align="center">Chapitre 5. Vue d'ensemble des widgets</th></tr>
<tr>
<td width="20%" align="left"><a accesskey="p" href="sec-TablePackingExample.html">Préc.</a></td>
<th width="60%" align="center"></th>
<td width="20%" align="right"><a accesskey="n" href="sec-WidgetsWithoutWindows.html">Suiv.</a></td>
</tr></table>
<hr>
</div>
<div class="chapter">
<div class="titlepage">
<div><h2 class="title"><a name="VueEnsembleWidgets"></a>Chapitre 5. Vue d'ensemble des widgets</h2>
</div></div>
<div class="toc"><p><b>Sommaire</b></p><dl>
<dt>5.1. <a href="ch-WidgetOverview.html#HierarchieWidgets">Hiérarchie des widgets</a></dt>
<dt>5.2. <a href="sec-WidgetsWithoutWindows.html">Les widgets sans fenêtre</a></dt>
</dl>
</div>
<p>Avec PyGTK, l'utilisation d'un widget passe en général par les étapes
suivantes :</p>
<div class="itemizedlist"><ul type="disc">
<li>invoquer <tt>gtk.*</tt> - l'une des différentes fonctions de création de
widget. Elles sont toutes détaillées dans cette section.</li>
<li>connecter tous les signaux et évènements que l'on veut utiliser aux
gestionnaires appropriés.</li>
<li>configurer les attributs du widget.</li>
<li>placer le widget dans un conteneur grâce à l'appel ad hoc :
<tt>gtk.Container.add</tt>(), <tt>gtk.Box.pack_start</tt>(), etc.</li>
<li>afficher le widget avec <tt>gtk.Widget.show</tt>().</li>
</ul></div>
<P><TT>show</TT>() fait savoir à GTK que la préparation du widget est
achevée et qu'il peut maintenant être affiché. Pour le faire
disparaitre à nouveau, vous pouvez utiliser <TT>gtk.Widget.hide</TT>(). L'ordre
d'affichage des widgets n'est pas important, mais je conseille d'afficher la fenêtre
en dernier de sorte que celle-ci apparaisse complète, plutôt que de voir chaque
widget s'y afficher à tour de rôle. Les enfants d'un widgets (une fenêtre
est aussi un widget) ne seront pas affichés tant que la fenêtre elle-même
ne l'aura pas été avec la méthode <TT>show</TT>().</P>
<div class="sect1">
<div class="titlepage">
<div><h2 class="title" style="clear: both"><a name="HierarchieWidgets"></a>
5.1. Hiérarchie des widgets</h2>
</div></div>
<p>Pour information, voici représentée sous forme d'arbre la hiérarchie
des classes utilisées pour implémenter les widgets (les widgets obsolètes
et les classes auxilliaires ont été omis).</p>
<pre class="programlisting">
gobject.GObject
|
gtk.Object
+gtk.Widget
| +gtk.Misc
| | +gtk.Label
| | | `gtk.AccelLabel
| | +gtk.Arrow
| | `gtk.Image
| +gtk.Container
| | +gtk.Bin
| | | +gtk.Alignment
| | | +gtk.Frame
| | | | `gtk.AspectFrame
| | | +gtk.Button
| | | | +gtk.ToggleButton
| | | | | `gtk.CheckButton
| | | | | `gtk.RadioButton
| | | | `gtk.OptionMenu
| | | +gtk.Item
| | | | +gtk.MenuItem
| | | | +gtk.CheckMenuItem
| | | | | `gtk.RadioMenuItem
| | | | +gtk.ImageMenuItem
| | | | `gtk.TearoffMenuItem
| | | +gtk.Window
| | | | +gtk.Dialog
| | | | | +gtk.ColorSelectionDialog
| | | | | +gtk.FileSelection
| | | | | +gtk.FontSelectionDialog
| | | | | +gtk.InputDialog
| | | | | `gtk.MessageDialog
| | | | `gtk.Plug
| | | +gtk.EventBox
| | | +gtk.HandleBox
| | | +gtk.ScrolledWindow
| | | `gtk.Viewport
| | +gtk.Box
| | | +gtk.ButtonBox
| | | | +gtk.HButtonBox
| | | | `gtk.VButtonBox
| | | +gtk.VBox
| | | | +gtk.ColorSelection
| | | | +gtk.FontSelection
| | | | `gtk.GammaCurve
| | | `gtk.HBox
| | | +gtk.Combo
| | | `gtk.Statusbar
| | +gtk.Fixed
| | +gtk.Paned
| | | +gtk.HPaned
| | | `gtk.VPaned
| | +gtk.Layout
| | +gtk.MenuShell
| | | +gtk.MenuBar
| | | `gtk.Menu
| | +gtk.Notebook
| | +gtk.Socket
| | +gtk.Table
| | +gtk.TextView
| | +gtk.Toolbar
| | `gtk.TreeView
| +gtk.Calendar
| +gtk.DrawingArea
| | `gtk.Curve
| +gtk.Editable
| | +gtk.Entry
| | | `gtk.SpinButton
| +gtk.Ruler
| | +gtk.HRuler
| | `gtk.VRuler
| +gtk.Range
| | +gtk.Scale
| | | +gtk.HScale
| | | `gtk.VScale
| | `gtk.Scrollbar
| | +gtk.HScrollbar
| | `gtk.VScrollbar
| +gtk.Separator
| | +gtk.HSeparator
| | `gtk.VSeparator
| +gtk.Invisible
| +gtk.Preview
| `gtk.ProgressBar
| +gtk.Adjustment
+gtk.CellRenderer
| +gtk.CellRendererPixbuf
| +gtk.CellRendererText
| +gtk.CellRendererToggle
+gtk.ItemFactory
+gtk.Tooltips
`gtk.TreeViewColumn
</pre>
<div class="navfooter">
<hr>
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left"><a accesskey="p" href="sec-TablePackingExample.html">Préc.</a> </td>
<td width="20%" align="center"><a accesskey="u" href="index.html">Chapitre parent</a></td>
<td width="40%" align="right"> <a accesskey="n" href="sec-WidgetsWithoutWindows.html">Suiv.</a></td></tr>
<tr>
<td width="40%" align="left" valign="top">4.5. Démonstration de placement avec les tableaux</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">5.2. Les widgets sans fenêtre</td>
</tr></table>
</div>
</body>
</html>