summaryrefslogtreecommitdiff
path: root/docs/reference/pygtk-gtkbutton.xml
blob: 0117fb3724fdc4129ed225ca7abaf843cab362ed (plain)
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
<?xml version="1.0" standalone="no"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
    "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">

<refentry id="class-gtkbutton">
  <refnamediv>
    <refname>gtk.Button</refname>
    <refpurpose>A pushbutton widget that issues a signal when
clicked.</refpurpose>
  </refnamediv>

  <refsect1>
    <title>Synopsis</title>

    <classsynopsis language="python">
      <ooclass><classname>gtk.Button</classname></ooclass>
      <ooclass><classname><link linkend="class-gtkbin">gtk.Bin</link></classname></ooclass>
      <constructorsynopsis language="python">
        <methodname><link linkend="constructor-gtkbutton">gtk.Button</link></methodname>
        <methodparam><parameter role="keyword">label</parameter><initializer>None</initializer></methodparam>
        <methodparam><parameter role="keyword">stock</parameter><initializer>None</initializer></methodparam>
        <methodparam><parameter role="keyword">use_underline</parameter><initializer>True</initializer></methodparam>
      </constructorsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--pressed">pressed</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--released">released</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--clicked">clicked</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
      <methodname><link linkend="method-gtkbutton--enter">enter</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--leave">leave</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--set-relief">set_relief</link></methodname>
        <methodparam><parameter role="keyword">newstyle</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--get-relief">get_relief</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--set-label">set_label</link></methodname>
        <methodparam><parameter role="keyword">label</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--get-label">get_label</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--set-use-underline">set_use_underline</link></methodname>
        <methodparam><parameter role="keyword">use_underline</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--get-use-underline">get_use_underline</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--set-use-stock">set_use_stock</link></methodname>
        <methodparam><parameter role="keyword">use_stock</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--get-use-stock">get_use_stock</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--set-focus-on-click">set_focus_on_click</link></methodname>
        <methodparam><parameter role="keyword">focus_on_click</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--get-focus-on-click">get_focus_on_click</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--set-alignment">set_alignment</link></methodname>
        <methodparam><parameter role="keyword">xalign</parameter></methodparam>
        <methodparam><parameter role="keyword">yalign</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--get-alignment">get_alignment</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--set-image">set_image</link></methodname>
        <methodparam><parameter role="keyword">image</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--get-image">get_image</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--set-image-position">set_image_position</link></methodname>
        <methodparam><parameter role="keyword">position</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--get-image-position">get_image_position</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkbutton--get-event-window">get_event_window</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
    </classsynopsis>

  </refsect1>

  <refsect1>
    <title>Ancestry</title>

<synopsis>+-- <link linkend="class-gobject">gobject.GObject</link>
  +-- <link linkend="class-gtkobject">gtk.Object</link>
    +-- <link linkend="class-gtkwidget">gtk.Widget</link>
      +-- <link linkend="class-gtkcontainer">gtk.Container</link>
        +-- <link linkend="class-gtkbin">gtk.Bin</link>
          +-- <link linkend="class-gtkbutton">gtk.Button</link>
</synopsis>

  </refsect1>

  <refsect1>
		<title>Implemented Interfaces</title>
		<para>
			<link linkend="class-gtkbutton"><classname>gtk.Button</classname></link>
			implements 
			<link linkend="class-gtkbuildable"><classname>gtk.Buildable</classname></link>
		</para>
	</refsect1>

  <refsect1 id="properties-gtkbutton">
    <title>gtk.Button Properties</title>

    <para><link linkend="properties-gtkobject">gtk.Object Properties</link></para>
    <para><link linkend="properties-gtkwidget">gtk.Widget Properties</link></para>
    <para><link linkend="properties-gtkcontainer">gtk.Container Properties</link></para>

    <blockquote role="properties">
      <informaltable pgwide="1" frame="none">
	<tgroup cols="3">
	  <colspec column="1" colwidth="1in"/>
	  <colspec column="2" colwidth="1in"/>
	  <colspec column="3" colwidth="3.5in"/>
	  <tbody>

	    <row valign="top">
	      <entry>"focus-on-click"</entry>
	      <entry>Read/Write</entry>
	      <entry>If <literal>True</literal> the button grabs focus when
	      it is clicked with the mouse. Default value:
<literal>True</literal>. This property is available in GTK+ 2.4 and
above.</entry>
	  </row>

	    <row valign="top">
	      <entry>"image"</entry>
	      <entry>Read/Write</entry>
          <entry>The child widget to appear next to the button text. Default
value: <literal>None</literal>.
This property is available in GTK+ 2.6 and above.</entry>
	  </row>

	    <row valign="top">
	      <entry>"image-position"</entry>
	      <entry>Read/Write</entry>
          <entry>The position of the image relative to the text inside the
          button. One of the <xref linkend="gtk-position-type-constants"
          endterm="gtk-position-type-constants-title"></xref>. Default
          value: <literal>gtk.POS_LEFT</literal>.  This property is
          available in GTK+ 2.10 and above.</entry>
	  </row>

	    <row valign="top">
	      <entry>"label"</entry>
	      <entry>Read/Write</entry>
	<entry>Text of the label widget inside the button, if the button
contains a label widget. Default value: <literal>None</literal>.</entry>
	  </row>

	<row valign="top">
	  <entry>"relief"</entry>
	  <entry>Read/Write</entry>
	  <entry>The border relief style. One of:
<literal>gtk.RELIEF_NORMAL</literal>, <literal>gtk.RELIEF_HALF</literal> or
<literal>gtk.RELIEF_NONE</literal>. Default value:
<literal>gtk.RELIEF_NORMAL</literal>.</entry>
	</row>

	<row valign="top">
	  <entry>"use-stock"</entry>
	  <entry>Read/Write</entry>
	  <entry>If <literal>True</literal>, the label text is used to pick
a stock item instead of being displayed.
Default value: <literal>False</literal>.</entry>
	</row>

	<row valign="top">
	  <entry>"use-underline"</entry>
	  <entry>Read/Write</entry>
	  <entry>If <literal>True</literal>, an underscore in the text
indicates the next character should be underlined and used for the mnemonic
accelerator key if it is the first character so marked.
Default value: <literal>False</literal>.</entry>
	</row>

	<row valign="top">
	  <entry>"xalign"</entry>
	  <entry>Read/Write</entry>
	  <entry>If the
	  child of the button is a <link
	  linkend="class-gtkmisc"><classname>gtk.Misc</classname></link> or
	  <link
	  linkend="class-gtkalignment"><classname>gtk.Alignment</classname></link>,
	  this property can be used to control it's horizontal
	  alignment. The value ranges from 0.0 to 1.0 representing the fraction
 of freespace to the left of the widget. Default value: 0.5.
This property is available in GTK+ 2.4 and above.</entry>
	</row>

	<row valign="top">
	  <entry>"yalign"</entry>
	  <entry>Read/Write</entry>
	  <entry>If the
	  child of the button is a <link
	  linkend="class-gtkmisc"><classname>gtk.Misc</classname></link> or
	  <link
	  linkend="class-gtkalignment"><classname>gtk.Alignment</classname></link>,
	  this property can be used to control it's vertical
	  alignment. The value ranges from 0.0 to 1.0 representing the fraction
of freespace above the widget.  Default value: 0.5.
This property is available in GTK+ 2.4 and above.</entry>
	</row>

	</tbody>
      </tgroup>
      </informaltable>
    </blockquote>

  </refsect1>

  <refsect1 id="style-properties-gtkbutton">
    <title>gtk.Button Style Properties</title>

    <para><link linkend="style-properties-gtkwidget">gtk.Widget Style Properties</link></para>

    <blockquote role="properties">
      <informaltable pgwide="1" frame="none">
	<tgroup cols="3">
	  <colspec column="1" colwidth="1in"/>
	  <colspec column="2" colwidth="1in"/>
	  <colspec column="3" colwidth="3.5in"/>
	  <tbody>

	<row valign="top">
	  <entry>"child-displacement-x"</entry>
	  <entry>Read</entry>
	  <entry>The number of pixels in the x direction to move the child
when the button is depressed. Default value: 0</entry>
	</row>

	    <row valign="top">
	      <entry>"child-displacement-y"</entry>
	      <entry>Read</entry>
	<entry>The number of pixels in the y direction to move the child
when the button is depressed. Default value: 0</entry>
	  </row>

	<row valign="top">
	  <entry>"default-border"</entry>
	  <entry>Read</entry>
	  <entry>The extra space to add for
	  <literal>gtk.CAN_DEFAULT</literal> buttons as a <link
	  linkend="class-gtkborder"><classname>gtk.Border</classname></link></entry>
	</row>

	<row valign="top">
	  <entry>"default-outside-border"</entry>
	  <entry>Read</entry>
	  <entry>The extra space to add for
	  <literal>gtk.CAN_DEFAULT</literal> buttons always drawn outside
	  the border as a <link
	  linkend="class-gtkborder"><classname>gtk.Border</classname></link></entry>
	</row>

	<row valign="top">
	  <entry>"displace-focus"</entry>
	  <entry>Read</entry>
	  <entry>If <literal>True</literal> the "child-displacement-x" and
	  "child-displacement-y" properties should also affect the focus
	  rectangle. Default value: <literal>False</literal>. This property
	  is available in GTK+ 2.6 and above.</entry>
	</row>

	<row valign="top">
	  <entry>"image-spacing"</entry>
	  <entry>Read</entry>
	  <entry>Spacing in pixels between the image and the label. Allowed values: &#62;=0. Default value: 2.</entry>
	</row>

	<row valign="top">
	  <entry>"inner-border"</entry>
	  <entry>Read</entry>
	  <entry>The border between the button edges and child as a <link
	  linkend="class-gtkborder"><classname>gtk.Border</classname></link>.
	  This property is available in GTK+ 2.10 and above.</entry>
	</row>

	</tbody>
      </tgroup>
      </informaltable>
    </blockquote>

  </refsect1>

  <refsect1 id="signal-prototypes-gtkbutton">
    <title>gtk.Button Signal Prototypes</title>

    <para><link linkend="signal-prototypes-gobject">gobject.GObject Signal Prototypes</link></para>
    <para><link linkend="signal-prototypes-gtkobject">gtk.Object Signal Prototypes</link></para>
    <para><link linkend="signal-prototypes-gtkwidget">gtk.Widget Signal Prototypes</link></para>
    <para><link linkend="signal-prototypes-gtkcontainer">gtk.Container Signal Prototypes</link></para>

    <variablelist>
      <varlistentry>
        <term>"<link
linkend="signal-gtkbutton--activate">activate</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>button</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link
linkend="signal-gtkbutton--clicked">clicked</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>button</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkbutton--enter">enter</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>button</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkbutton--leave">leave</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>button</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link
linkend="signal-gtkbutton--pressed">pressed</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>button</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link
linkend="signal-gtkbutton--released">released</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>button</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
    </variablelist>

  </refsect1>

  <refsect1>
    <title>Description</title>

    <para>The <link
linkend="class-gtkbutton"><classname>gtk.Button</classname></link> widget is
usually displayed as a pushbutton with a text label (<link
linkend="class-gtklabel"><classname>gtk.Label</classname></link>) though it
can contain any valid widget. The <link
linkend="class-gtkbutton"><classname>gtk.Button</classname></link> is
generally used to attach a callback function or method that is called when
the button is clicked. Buttons generate signals that indicate:</para>

    <itemizedlist>
      <listitem>
	<simpara>"clicked" - the user pressed and released a mouse button
over the button</simpara>
      </listitem>
      <listitem>
	<simpara>"pressed" - the user pressed a mouse button over the
button</simpara>
      </listitem>
      <listitem>
	<simpara>"released" - the user released a mouse button over the
button</simpara>
      </listitem>
      <listitem>
	<simpara>"enter" - the pointer entered the button</simpara>
      </listitem>
      <listitem>
	<simpara>"leave" - the pointer left the button</simpara>
      </listitem>
    </itemizedlist>

    <para>The "clicked" signal is usually the only signal that an
application needs to handle.</para>

    <para>If a label is being used by the button its text (the "label"
property) is retrieved using the <link
linkend="method-gtkbutton--get-label"><methodname>get_label</methodname>()</link> 
method. The label text is changed using the <link
linkend="method-gtkbutton--set-label"><methodname>set_label</methodname>()</link> 
method.</para>

    <para>The property ("use_underline") that tells a button to use the
first underscore to indicate a mnemonic key is changed using the <link
linkend="method-gtkbutton--set-use-underline"><methodname>set_use_underline</methodname>().</link> 
method. It can be retrieved using the <link
linkend="method-gtkbutton--get-use-underline"><methodname>get_use_underline</methodname>()</link> 
method.</para>

    <para>The button's relief style (the "relief" property) is retrieved
using the method <link
linkend="method-gtkbutton--get-relief"><methodname>get_relief</methodname>()</link>. 
The relief style is set to one of <literal>gtk.RELIEF_NONE</literal>,
<literal>gtk.RELIEF_HALF</literal> or <literal>gtk.RELIEF_NORMAL</literal>
using the method <link
linkend="method-gtkbutton--set-relief"><methodname>set_relief</methodname>()</link>.</para>

  </refsect1>

  <refsect1 id="constructor-gtkbutton">
    <title>Constructor</title>

    <programlisting><constructorsynopsis language="python">
	<methodname>gtk.Button</methodname>
	<methodparam><parameter
		       role="keyword">label</parameter><initializer>None</initializer></methodparam>
	<methodparam><parameter
		       role="keyword">stock</parameter><initializer>None</initializer></methodparam>
	<methodparam><parameter
		       role="keyword">use_underline</parameter><initializer>True</initializer></methodparam>
      </constructorsynopsis></programlisting>

    <variablelist>
      <varlistentry>
	<term><parameter role="keyword">label</parameter>&nbsp;:</term>
	<listitem><simpara>the text to be displayed by the button label
including an underscore to indicate the mnemonic character if desired or
<literal>None</literal> if no label is required.</simpara></listitem>
      </varlistentry>
      <varlistentry>
	<term><parameter role="keyword">stock</parameter>&nbsp;:</term>
	<listitem><simpara>the stock id identifying the stock image and text
to be used in the button or <literal>None</literal> if no stock id is to be
used.</simpara></listitem>
      </varlistentry>
      <varlistentry>
	<term><parameter role="keyword">use_underline</parameter>&nbsp;:</term>
	<listitem><simpara>if <literal>True</literal>, an underscore in the
text indicates the next character should be underlined and used for the
mnemonic accelerator key if it is the first character so
marked. Available in PyGTK 2.4 and above.</simpara></listitem>
      </varlistentry>
      <varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	<listitem><simpara>a new button object</simpara></listitem>
      </varlistentry>
    </variablelist>

    <para>Creates a new button widget with the content depending on the
parameters: <parameter>label</parameter>, <parameter>stock</parameter> and
<parameter>use_underline</parameter>.  The default values for
<parameter>stock</parameter> and <parameter>label</parameter> are
<literal>None</literal> and, in PyGTK 2.4 and above,
<parameter>use_underline</parameter> is available and defaults to
<literal>True</literal>. If both <parameter>label</parameter> and
<parameter>stock</parameter> are specified <parameter>stock</parameter>
takes precedence. If neither is specified the button is created with no
child widget. A child widget can be added later with the <link
linkend="method-gtkcontainer--add"><methodname>add</methodname>()</link>
method.</para>

    <para>If <parameter>stock</parameter> is specified the "use-stock"
property will be set to <literal>True</literal>.</para>

    <para>If <parameter>label</parameter> is specified the "label" property
will be set with the text of the label, the "use_underline" property will be
set to <literal>True</literal> and any characters that are preceded by an
underscore are underlined (use two underscores to insert an underscore in a
label). The first underscored character will become the mnemonic character
used as the keyboard accelerator for the button when pressed simultaneously
with the <keycap>Alt</keycap> key. In PyGTK 2.4 and above the
"use-underline" property can be set by using the optional
<parameter>use_underline</parameter> parameter.</para>

  </refsect1>

  <refsect1>
    <title>Methods</title>

    <refsect2 id="method-gtkbutton--pressed">
      <title>gtk.Button.pressed</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>pressed</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>

      <warning>
        <para>This method is deprecated since PyGTK 2.22 and should not be used in newly-written code.
        Use the "<link linkend="signal-gtkwidget--button-press-event">button-press-event</link>"
        signal.</para>
      </warning>

      <para>The <methodname>pressed</methodname>() method emits the
"pressed" signal to the button.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--released">
      <title>gtk.Button.released</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>released</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>

      <warning>
        <para>This method is deprecated since PyGTK 2.22 and should not be used in newly-written code.
        Use the "<link linkend="signal-gtkwidget--button-release-event">button-release-event</link>"
        signal.</para>
      </warning>

      <para>The <methodname>released</methodname>() method emits the
"released" signal to the button.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--clicked">
      <title>gtk.Button.clicked</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>clicked</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>

      <para>The <methodname>clicked</methodname>() method emits the
"clicked" signal to the button.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--enter">
      <title>gtk.Button.enter</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>enter</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>

      <warning>
        <para>This method is deprecated since PyGTK 2.22 and should not be used in newly-written code.
        Use the "<link linkend="signal-gtkwidget--enter-notify-event">enter-notify-event</link>"
        signal.</para>
      </warning>

      <para>The <methodname>enter</methodname>() method emits the "enter"
signal to the button.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--leave">
      <title>gtk.Button.leave</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>leave</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>

      <warning>
        <para>This method is deprecated since PyGTK 2.22 and should not be used in newly-written code.
        Use the "<link linkend="signal-gtkwidget--leave-notify-event">leave-notify-event</link>"
        signal.</para>
      </warning>

      <para>The <methodname>leave</methodname>() method emits the "leave"
signal to the button.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--set-relief">
      <title>gtk.Button.set_relief</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_relief</methodname>
	  <methodparam><parameter>newstyle</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">newstyle</parameter>&nbsp;:</term>
	  <listitem>
	    <simpara>one of <literal>gtk.RELIEF_NONE</literal>,
<literal>gtk.RELIEF_NORMAL</literal> or
<literal>gtk.RELIEF_HALF</literal></simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>set_relief</methodname>() method sets the relief
style of the edges of the button. Three styles exist,
<literal>gtk.RELIEF_NORMAL</literal>, <literal>gtk.RELIEF_HALF</literal>,
<literal>gtk.RELIEF_NONE</literal>. The default style is, as one can guess,
<literal>gtk.RELIEF_NORMAL</literal>.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--get-relief">
      <title>gtk.Button.get_relief</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_relief</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the relief style</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>get_relief</methodname>() method retrieves the
current relief style (the "relief" property) set for the button.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--set-label">
      <title>gtk.Button.set_label</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_label</methodname>
	  <methodparam><parameter>label</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">label</parameter>&nbsp;:</term>
	  <listitem>
	    <simpara>a string to be set as the text in the button
label</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>set_label</methodname>() method sets the text of
the button label to <parameter>label</parameter> (also sets the "label"
property). This string is also used to select the stock item if the
"use_stock" property is <literal>True</literal> and the string references a
stock item. Any previously set labels will be cleared.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--get-label">
      <title>gtk.Button.get_label</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_label</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the text of the label
widget.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>get_label</methodname>() method retrieves the
text from the label of the button, as set by <link
linkend="method-gtkbutton--set-label"><methodname>set_label</methodname>()</link> 
or by the <link
linkend="constructor-gtkbutton"><methodname>gtk.Button</methodname>()</link>
constructor. This string is owned by the widget and must not be modified or
freed.  If the label text has not been set the return value  will be
<literal>None</literal>. This will be the case if you create an empty button
with <link
linkend="constructor-gtkbutton"><methodname>gtk.Button</methodname>()</link>
to use as a container.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--set-use-underline">
      <title>gtk.Button.set_use_underline</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_use_underline</methodname>
	  <methodparam><parameter
			 role="keyword">use_underline</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter>use_underline</parameter>&nbsp;:</term>
	  <listitem>
	    <simpara><literal>True</literal> if underscores in the text
indicate mnemonics</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>set_use_underline</methodname>() method sets the
"use_underline" property to the value of
<parameter>use_underline</parameter>. If
<parameter>use_underline</parameter> is <literal>True</literal>, an
underscore in the text of the button label indicates that the next character
should be underlined and used for the mnemonic accelerator key if it is also
the first underlined character.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--get-use-underline">
      <title>gtk.Button.get_use_underline</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_use_underline</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem>
	    <simpara><literal>True</literal> if an underscore in the button
label indicates the mnemonic accelerator keys.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>get_use_underline</methodname>() method returns
whether the "use_underline" property is <literal>True</literal> meaning that
an underscore in the button label indicates a mnemonic. See <link
linkend="method-gtkbutton--set-use-underline"><methodname>set_use_underline</methodname>()</link>.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--set-use-stock">
      <title>gtk.Button.set_use_stock</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_use_stock</methodname>
	  <methodparam><parameter
			 role="keyword">use_stock</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter>use_stock</parameter>&nbsp;:</term>
	  <listitem>
	    <simpara>If <literal>True</literal> the button should use a
stock item</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>set_use_stock</methodname>() method sets the
"use_stock" property to the value of <parameter>use_stock</parameter>. If
<parameter>use_stock</parameter> is <literal>True</literal>, the label set
on the button is used as a stock id to select the stock item for the
button.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--get-use-stock">
      <title>gtk.Button.get_use_stock</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_use_stock</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem>
	    <simpara>the value of the "use_stock" property.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>get_use_stock</methodname>() method returns the
value of the "use_stock" property. If <literal>True</literal> the button
label is used to select a stock item instead of being used directly as the
label text.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--set-focus-on-click">
      <title>gtk.Button.set_focus_on_click</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_focus_on_click</methodname>
	  <methodparam><parameter
			 role="keyword">focus_on_click</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter>focus_on_click</parameter>&nbsp;:</term>
	  <listitem>
	    <simpara>If <literal>True</literal> the button grabs focus when
	    clicked with the mouse.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_focus_on_click</methodname>() method sets
the "focus-on-click" property to the value of
<parameter>focus_on_click</parameter>. If
<parameter>focus_on_click</parameter> is <literal>True</literal>, the button
grabs focus when it is clicked by the mouse.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--get-focus-on-click">
      <title>gtk.Button.get_focus_on_click</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_focus_on_click</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem>
	    <simpara>the value of the "focus-on-click" property.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_focus_on_click</methodname>() method returns
the value of the "focus-on-click" property. If <literal>True</literal> the
button grabs focus when it is clicked by the mouse .</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--set-alignment">
      <title>gtk.Button.set_alignment</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_alignment</methodname>
	  <methodparam><parameter
			 role="keyword">xalign</parameter></methodparam>
	  <methodparam><parameter
			 role="keyword">yalign</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter>xalign</parameter>&nbsp;:</term>
	  <listitem>
	    <simpara>the horizontal alignment of the child widget. The value
	    ranges from 0.0 to 1.0 and represents the fraction of freespace
	    to the left of the child widget.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>yalign</parameter>&nbsp;:</term>
	  <listitem>
	    <simpara>the vertical alignment of the child widget. The value
	    ranges from 0.0 to 1.0 and represents the fraction of freespace
	    above the child widget.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_alignment</methodname>() method sets the
"xalign" and "yalign" properties to the value of
<parameter>xalign</parameter> and <parameter>yalign</parameter>
respectively. This property has no effect unless the child is a <link
linkend="class-gtkmisc"><classname>gtk.Misc</classname></link> or a <link
linkend="class-gtkalignment"><classname>gtk.Alignment</classname></link>.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--get-alignment">
      <title>gtk.Button.get_alignment</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_alignment</methodname>
	  <methodparam></methodparam>
        </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem>
	    <simpara>a 2-tuple containing the values of the "xalign" and
	    "yalign" properties.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_alignment</methodname>() method returns the
values of the "xalign" and "yalign" properties. See the <link linkend="method-gtkbutton--set-alignment"><methodname>set_alignment</methodname>()</link> method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--set-image">
      <title>gtk.Button.set_image</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_image</methodname>
	  <methodparam><parameter
			 role="keyword">image</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter>image</parameter>&nbsp;:</term>
	  <listitem>
	    <simpara>the widget to set as the image for the button.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.6 and above.</para>
      </note>

      <para>The <methodname>set_image</methodname>() method sets the "image"
property to the value of <parameter>image</parameter>. This property has no
effect unless the "gtk-button-images" property is
<literal>True</literal>. See the <link
linkend="class-gtksettings"><classname>gtk.Settings</classname></link>
reference for more information. Note you do not have to call the <link
linkend="method-gtkwidget--show"><methodname>gtk.Widget.show</methodname>()</link>
method for <parameter>image</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--get-image">
      <title>gtk.Button.get_image</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_image</methodname>
	  <methodparam></methodparam>
        </methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem>
	    <simpara>the <link
linkend="class-gtkwidget"><classname>gtk.Widget</classname></link> used as
the button image or <literal>None</literal> if there is no image.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.6 and above.</para>
      </note>

      <para>The <methodname>get_image</methodname>() method returns the
value of the "image" property. See the <link
linkend="method-gtkbutton--set-image"><methodname>set_image</methodname>()</link>
method for more information.</para>

    </refsect2>

   <refsect2 id="method-gtkbutton--set-image-position">
      <title>gtk.Button.set_image_position</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_image_position</methodname>
        <methodparam><parameter role="keyword">position</parameter></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">position</parameter>&nbsp;:</term>
          <listitem><simpara>the position of the image relative to the text inside the button.</simpara></listitem>
        </varlistentry>
      </variablelist>

      <note>
        <para>This method is available in PyGTK 2.10 and above.</para>
      </note>

      <para>The <methodname>set_image_position</methodname>() method sets the
      position of the image relative to the text inside the button. The value of
      <parameter>position</parameter> can be one of the <xref linkend="gtk-position-type-constants"
      endterm="gtk-position-type-constants-title"></xref>.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--get-image-position">
      <title>gtk.Button.get_image_position</title>

      <programlisting><methodsynopsis language="python">
        <methodname>get_image_position</methodname>
        <methodparam></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>the position of the image relative to the text inside the button.</simpara></listitem>
        </varlistentry>
      </variablelist>

      <note>
        <para>This method is available in PyGTK 2.10 and above.</para>
      </note>

      <para>The <methodname>get_image_position</methodname>() method returns the
      position of the image relative to the text inside the button.</para>

    </refsect2>

    <refsect2 id="method-gtkbutton--get-event-window">
      <title>gtk.Button.get_event_window</title>

      <programlisting><methodsynopsis language="python">
        <methodname>get_event_window</methodname>
        <methodparam></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>the button's event window if it is realized, <literal>None</literal> otherwise.</simpara></listitem>
        </varlistentry>
      </variablelist>

      <note>
        <para>This method is available in PyGTK 2.22 and above.</para>
      </note>

      <para>The <methodname>get_event_window</methodname>() method returns the
      the button's event window if it is realized, <literal>None</literal> otherwise.</para>

    </refsect2>

  </refsect1>

  <refsect1>
    <title>Signals</title>

    <refsect2 id="signal-gtkbutton--activate">
      <title>The "activate" gtk.Button Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>button</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>button</parameter>&nbsp;:</term>
	  <listitem><simpara>the button that received the "activate"
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "activate" signal is emitted when the <link
linkend="method-gtkwidget--activate"><methodname>gtk.Widget.activate</methodname>()</link> 
method is called. For a button it causes the "clicked" signal to be
emitted.</para>

    </refsect2>

    <refsect2 id="signal-gtkbutton--clicked">
      <title>The "clicked" gtk.Button Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>button</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>button</parameter>&nbsp;:</term>
	  <listitem><simpara>the button that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "clicked" signal is emitted when the mouse button is pressed
and released while the pointer is over the button or when the button is triggered
with the keyboard.</para>

    </refsect2>

    <refsect2 id="signal-gtkbutton--enter">
      <title>The "enter" gtk.Button Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>button</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>button</parameter>&nbsp;:</term>
	  <listitem><simpara>the button that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <warning>
        <para>This signal is deprecated since GTK+ 2.8 and should not be used in newly-written code.
        Use the "<link linkend="signal-gtkwidget--enter-notify-event">enter-notify-event</link>"
        signal.</para>
      </warning>

      <para>The "enter" signal is emitted when the pointer enters the
button.</para>

    </refsect2>

    <refsect2 id="signal-gtkbutton--leave">
      <title>The "leave" gtk.Button Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>button</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>button</parameter>&nbsp;:</term>
	  <listitem><simpara>the button that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <warning>
        <para>This signal is deprecated since GTK+ 2.8 and should not be used in newly-written code.
        Use the "<link linkend="signal-gtkwidget--leave-notify-event">leave-notify-event</link>"
        signal.</para>
      </warning>

      <para>The "leave" signal is emitted when the pointer leaves the
button.</para>

    </refsect2>

    <refsect2 id="signal-gtkbutton--pressed">
      <title>The "pressed" gtk.Button Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>button</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>button</parameter>&nbsp;:</term>
	  <listitem><simpara>the button that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <warning>
        <para>This signal is deprecated since GTK+ 2.8 and should not be used in newly-written code.
        Use the "<link linkend="signal-gtkwidget--button-press-event">button-press-event</link>"
        signal.</para>
      </warning>

      <para>The "pressed" signal is emitted when the mouse button is pressed
while the pointer is over the button.</para>

    </refsect2>

    <refsect2 id="signal-gtkbutton--released">
      <title>The "released" gtk.Button Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>button</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>button</parameter>&nbsp;:</term>
	  <listitem><simpara>the button that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <warning>
        <para>This signal is deprecated since GTK+ 2.8 and should not be used in newly-written code.
        Use the "<link linkend="signal-gtkwidget--button-release-event">button-release-event</link>"
        signal.</para>
      </warning>

      <para>The "released" signal is emitted when the button is released no
matter where the pointer is.</para>

    </refsect2>

  </refsect1>

</refentry>