summaryrefslogtreecommitdiff
path: root/docs/reference/pygtk-gtkaboutdialog.xml
blob: 7b9842f2b70911b59724a483e68b7ec3842bc659 (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
1337
1338
1339
1340
1341
1342
1343
1344
1345
<?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-gtkaboutdialog">
  <refnamediv>
    <refname>gtk.AboutDialog</refname>
    <refpurpose>popup window displaying information about an
application (new in PyGTK 2.6)</refpurpose>
  </refnamediv>

  <refsect1>
    <title>Synopsis</title>

<classsynopsis language="python">
  <ooclass><classname>gtk.AboutDialog</classname></ooclass>
  <ooclass><classname><link linkend="class-gtkdialog">gtk.Dialog</link></classname></ooclass>
<constructorsynopsis language="python">
    <methodname><link
linkend="constructor-gtkaboutdialog">gtk.AboutDialog</link></methodname>
    <methodparam></methodparam>
  </constructorsynopsis>
<methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-name">get_name</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-name">set_name</link></methodname>
    <methodparam><parameter role="keyword">name</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-program-name">get_program_name</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-program-name">set_program_name</link></methodname>
    <methodparam><parameter role="keyword">name</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-version">get_version</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-version">set_version</link></methodname>
    <methodparam><parameter role="keyword">version</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-copyright">get_copyright</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-copyright">set_copyright</link></methodname>
    <methodparam><parameter role="keyword">copyright</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-comments">get_comments</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-comments">set_comments</link></methodname>
    <methodparam><parameter role="keyword">comments</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-license">get_license</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-license">set_license</link></methodname>
    <methodparam><parameter role="keyword">license</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-wrap-license">get_wrap_license</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-wrap-license">set_wrap_license</link></methodname>
    <methodparam><parameter role="keyword">wrap_license</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-website">get_website</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-website">set_website</link></methodname>
    <methodparam><parameter role="keyword">website</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-website-label">get_website_label</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-website-label">set_website_label</link></methodname>
    <methodparam><parameter role="keyword">website_label</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-authors">get_authors</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-authors">set_authors</link></methodname>
    <methodparam><parameter role="keyword">authors</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-documenters">get_documenters</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-documenters">set_documenters</link></methodname>
    <methodparam><parameter role="keyword">documenters</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-artists">get_artists</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-artists">set_artists</link></methodname>
    <methodparam><parameter role="keyword">artists</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-translator-credits">get_translator_credits</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-translator-credits">set_translator_credits</link></methodname>
    <methodparam><parameter role="keyword">translator_credits</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-logo">get_logo</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-logo">set_logo</link></methodname>
    <methodparam><parameter role="keyword">logo</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--get-logo-icon-name">get_logo_icon_name</link></methodname>
    <methodparam></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="method-gtkaboutdialog--set-logo-icon-name">set_logo_icon_name</link></methodname>
    <methodparam><parameter role="keyword">icon_name</parameter></methodparam>
  </methodsynopsis>
</classsynopsis>

<programlisting>
<emphasis role="bold">Functions</emphasis>
 
<methodsynopsis language="python">
    <methodname><link linkend="function-gtk--about-dialog-set-email-hook">gtk.about_dialog_set_email_hook</link></methodname>
    <methodparam><parameter role="keyword">func</parameter></methodparam>
    <methodparam><parameter role="keyword">data</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="function-gtk--about-dialog-set-url-hook">gtk.about_dialog_set_url_hook</link></methodname>
    <methodparam><parameter role="keyword">func</parameter></methodparam>
    <methodparam><parameter role="keyword">data</parameter></methodparam>
  </methodsynopsis></programlisting>
 
  </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-gtkwindow">gtk.Window</link>
            +-- <link linkend="class-gtkdialog">gtk.Dialog</link>
              +--<link linkend="class-gtkaboutdialog">gtk.AboutDialog</link>
</synopsis>
    
    <refsect1>
		<title>Implemented Interfaces</title>
		<para>
			<link linkend="class-gtkaboutdialog"><classname>gtk.AboutDialog</classname></link>
			implements 
			<link linkend="class-gtkbuildable"><classname>gtk.Buildable</classname></link>
            <link linkend="class-atkimplementor"><classname>atk.ImplementorIFace</classname></link>
		</para>
	</refsect1>
  </refsect1>

  <refsect1 id="properties-gtkaboutdialog">
    <title>gtk.AboutDialog 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>
    <para><link linkend="properties-gtkwindow">gtk.Window Properties</link></para>
    <para><link linkend="properties-gtkdialog">gtk.Dialog 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="4in"/>
	  <tbody>

	    <row valign="top">
	      <entry>"artists"</entry>
	      <entry>Read-Write</entry>
	      <entry>The list of people who have contributed artwork to
the program.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"authors"</entry>
	      <entry>Read-Write</entry>
	      <entry>The list of authors of the program.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"comments"</entry>
	      <entry>Read-Write</entry>
	      <entry>A string containing comments about the program.
Default value: <literal>None</literal>.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"copyright"</entry>
	      <entry>Read-Write</entry>
	      <entry>A string containing copyright information for
the program. Default value: <literal>None</literal>.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"documenters"</entry>
	      <entry>Read-Write</entry>
	      <entry>The list of people documenting the program.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"license"</entry>
	      <entry>Read-Write</entry>
	      <entry>A string containing the license of the program.
Default value: <literal>None</literal>.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"logo"</entry>
	      <entry>Read-Write</entry>
	      <entry>A logo for the about box. If this is not set,
it defaults to the default window icon list.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"logo-icon-name"</entry>
	      <entry>Read-Write</entry>
	      <entry>The name of an icon to use as the logo for the
about box. Default value: <literal>None</literal>.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"program-name"</entry>
	      <entry>Read-Write</entry>
	      <entry>The name of the program. If this is not set, it
defaults to g_get_application_name().
Default value: <literal>None</literal>.
This property is available in GTK+ 2.12 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"translator-credits"</entry>
	      <entry>Read-Write</entry>
	      <entry>Credits to the translators. This string should be
marked as translatable. Default value: <literal>None</literal>.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"version"</entry>
	      <entry>Read-Write</entry>
	      <entry>A string containing the version of the program.
Default value: <literal>None</literal>.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"website"</entry>
	      <entry>Read-Write</entry>
	      <entry>The URL for the link to the website of the
program. Default value: <literal>None</literal>.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"website-label"</entry>
	      <entry>Read-Write</entry>
	      <entry>The label for the link to the website of the program.
If this is not set, it defaults to the URL.
Default value: <literal>None</literal>.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>
	    <row valign="top">
	      <entry>"wrap-license"</entry>
	      <entry>Read-Write</entry>
	      <entry>If <literal>True</literal> the license text should be
wrapped. Default value: <literal>False</literal>.
This property is available in GTK+ 2.6 and above.</entry>
	    </row>

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

  </refsect1>

  <refsect1 id="style-properties-gtkaboutdialog">
    <title>gtk.AboutDialog Style Properties</title>

    <para><link linkend="style-properties-gtkwidget">gtk.Widget Style Properties</link></para>
    <para><link linkend="style-properties-gtkdialog">gtk.Dialog 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="4in"/>
	  <tbody>

	    <row valign="top">
	      <entry>"link-color"</entry>
	      <entry>Read</entry>
	      <entry>The color of hyperlinks. This property is not available
	      in GTK+ 2.10 and above.</entry>
	    </row>

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

  </refsect1>

  <refsect1 id="signal-prototypes-gtkaboutdialog">
    <title>gtk.AboutDialog 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>
    <para><link linkend="signal-prototypes-gtkwindow">gtk.Window Signal Prototypes</link></para>
    <para><link linkend="signal-prototypes-gtkdialog">gtk.Dialog Signal Prototypes</link></para>

    <variablelist>
      <varlistentry>
        <term>"<link linkend="signal-gtkaboutdialog--activate-link">activate-link</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>aboutdialog</parameter></methodparam>
            <methodparam><parameter>uri</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
    </variablelist>

  </refsect1>

  <refsect1>
    <title>Description</title>

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

    <para>The <link
    linkend="class-gtkaboutdialog"><classname>gtk.AboutDialog</classname></link>
    offers a simple way to display information about a program like its
    logo, name, copyright, website and license. It is also possible to give
    credits to the authors, documenters, translators and artists who have
    worked on the program. An about dialog is typically opened when the user
    selects the <guimenuitem>About</guimenuitem> option from the <guimenu>Help</guimenu>
    menu. All parts of the dialog are optional.</para>

    <para>About dialog often contain links and email addresses. <link
    linkend="class-gtkaboutdialog"><classname>gtk.AboutDialog</classname></link>
    supports this by offering global hooks, which are called when the user
    clicks on a link or email address, see the <link
    linkend="function-gtk--about-dialog-set-email-hook"><function>gtk.about_dialog_set_email_hook</function>()</link>
    and <link
    linkend="function-gtk--about-dialog-set-url-hook"><function>gtk.about_dialog_set_url_hook</function>()</link>
    functions. Email addresses in the authors, documenters and artists
    properties are recognized by looking for <literal>&lt;user@<!--
    -->host&gt;</literal>, URLs are recognized by looking for
    <literal>http://url</literal>, with <literal>url</literal> extending to
    the next space, tab or line break.</para>

  </refsect1>

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

    <programlisting><constructorsynopsis language="python">
	<methodname>gtk.AboutDialog</methodname>
	<methodparam></methodparam>
      </constructorsynopsis></programlisting>
    <variablelist>
      <varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	<listitem><simpara>a new <link
linkend="class-gtkdialog"><classname>gtk.AboutDialog</classname></link></simpara></listitem>
      </varlistentry>
    </variablelist>

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

    <para>Creates a new gtk.AboutDialog with default property values.</para>

  </refsect1>

  <refsect1>
    <title>Methods</title>

    <refsect2 id="method-gtkaboutdialog--get-name">
      <title>gtk.AboutDialog.get_name</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_name</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the program name.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <warning>
        <para>
          This method is deprecated in PyGTK 2.12 and above and should not be
          used in newly-written code. Use the <link linkend="method-gtkaboutdialog--set-program-name"><methodname>get_program_name</methodname></link>()
          method instead.
        </para>
      </warning>

      <para>The <methodname>get_name</methodname>() method returns the
      program name displayed in the about dialog.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-name">
      <title>gtk.AboutDialog.set_name</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_name</methodname>
	  <methodparam><parameter
			 role="keyword">name</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">name</parameter>&nbsp;:</term>
	  <listitem><simpara>a string containing the program
name or <literal>None</literal> to use the default name.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <warning>
        <para>
          This method is deprecated in PyGTK 2.12 and above and should not be
          used in newly-written code. Use the <link linkend="method-gtkaboutdialog--set-program-name"><methodname>set_program_name</methodname></link>()
          method instead.
        </para>
      </warning>

      <para>The <methodname>set_name</methodname>() method sets the name
to display in the about dialog. If <parameter>name</parameter> is <literal>None</literal>,
it defaults to g_get_application_name().</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-program-name">
      <title>gtk.AboutDialog.get_program_name</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_program_name</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the program name.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_program_name</methodname>() method returns the
      program name displayed in the about dialog.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-program-name">
      <title>gtk.AboutDialog.set_program_name</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_program_name</methodname>
	  <methodparam><parameter
			 role="keyword">name</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">name</parameter>&nbsp;:</term>
	  <listitem><simpara>a string containing the program
name or <literal>None</literal> to use the default name.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_program_name</methodname>() method sets the name
to display in the about dialog. If <parameter>name</parameter> is <literal>None</literal>,
it defaults to g_get_application_name().</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-version">
      <title>gtk.AboutDialog.get_version</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_version</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>The version string or
<literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_version</methodname>() method returns the
string contained in the "version" property.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-version">
      <title>gtk.AboutDialog.set_version</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_version</methodname>
	  <methodparam><parameter
			 role="keyword">version</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">version</parameter>&nbsp;:</term>
	  <listitem><simpara>the version string or
<literal>None</literal></simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_version</methodname>() method sets the
"version" property to the string in <parameter>version</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-copyright">
      <title>gtk.AboutDialog.get_copyright</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_copyright</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the copyright string or
<literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_copyright</methodname>() method returns the
string contained in the "copyright" property.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-copyright">
      <title>gtk.AboutDialog.set_copyright</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_copyright</methodname>
	  <methodparam><parameter
			 role="keyword">copyright</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">copyright</parameter>&nbsp;:</term>
	  <listitem><simpara>a string containing the copyright
notice or <literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_copyright</methodname>() method sets the
"copyright" property to the string contained in
<parameter>copyright</parameter>. If <parameter>copyright</parameter> is
<literal>None</literal>, the copyright notice is hidden.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-comments">
      <title>gtk.AboutDialog.get_comments</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_comments</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a string containing the
comments or <literal>None</literal></simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_comments</methodname>() method returns the
string contained in the "comments" property.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-comments">
      <title>gtk.AboutDialog.set_comments</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_comments</methodname>
	  <methodparam><parameter
			 role="keyword">comments</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">comments</parameter>&nbsp;:</term>
	  <listitem><simpara>a string containing the 
comments or <literal>None</literal>.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_comments</methodname>() method sets the
"comments" property to the string contained in
<parameter>comments</parameter>. If <parameter>comments</parameter> is
<literal>None</literal> the comments label is hidden.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-license">
      <title>gtk.AboutDialog.get_license</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_license</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a string containing the license 
information or <literal>None</literal></simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_license</methodname>() method returns the 
string contained in the "license" property.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-license">
      <title>gtk.AboutDialog.set_license</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_license</methodname>
	  <methodparam><parameter
			 role="keyword">license</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">license</parameter>&nbsp;:</term>
	  <listitem><simpara></simpara></listitem>
	</varlistentry>
     </variablelist>

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

      <para>The <methodname>set_license</methodname>() method sets the
"license" property to the string contained in
<parameter>license</parameter>. If <parameter>license</parameter> is
<literal>None</literal> the license button is hidden.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-wrap-license">
      <title>gtk.AboutDialog.get_wrap_license</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_wrap_license</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara><literal>True</literal> if the license text
should be wrapped</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_wrap_license</methodname>() method returns
the value of the "wrap-license" property. If "wrap-license" is
<literal>True</literal> the license text should be automatically
wrapped.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-wrap-license">
      <title>gtk.AboutDialog.set_wrap_license</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_wrap_license</methodname>
	  <methodparam><parameter
			 role="keyword">wrap_license</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">wrap_license</parameter>&nbsp;:</term>
	  <listitem><simpara></simpara></listitem>
	</varlistentry>
     </variablelist>

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

      <para>The <methodname>set_wrap_license</methodname>() method sets the
"wrap-license" property to the value of
<parameter>wrap_license</parameter>. If <parameter>wrap_license</parameter>
is <literal>True</literal> the license text should be automatically
wrapped.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-website">
      <title>gtk.AboutDialog.get_website</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_website</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a string containing the website URL or
<literal>None</literal></simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_website</methodname>() method returns the
string contained in the "website" property. The website should be a
URL.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-website">
      <title>gtk.AboutDialog.set_website</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_website</methodname>
	  <methodparam><parameter
			 role="keyword">website</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">website</parameter>&nbsp;:</term>
	  <listitem><simpara>a string containing the URL of the program's
website or <literal>None</literal></simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_website</methodname>() method sets the
"website" property to the string contained in
<parameter>website</parameter>. The string should be a valid URL.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-website-label">
      <title>gtk.AboutDialog.get_website_label</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_website_label</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a string containing the website link
label</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_website_label</methodname>() method returns
the contents of the "website_label" property. The website label is used if
the url hook has been set using the <link
linkend="function-gtk--about-dialog-set-url-hook"><function>gtk.about_dialog_set_url_hook</function>()</link>
function.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-website-label">
      <title>gtk.AboutDialog.set_website_label</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_website_label</methodname>
	  <methodparam><parameter
			 role="keyword">website_label</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">website_label</parameter>&nbsp;:</term>
	  <listitem><simpara></simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_website_label</methodname>() method sets the
"website_label" property to the string contained in
<parameter>website_label</parameter> if the url hook has been set using the
<link
linkend="function-gtk--about-dialog-set-url-hook"><function>gtk.about_dialog_set_url_hook</function>()</link>
function.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-authors">
      <title>gtk.AboutDialog.get_authors</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_authors</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a list containing the names of the program
authors</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_authors</methodname>() method returns the
contents of the "authors" property. The "authors" property contains a list
of the names of the authors of the program.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-authors">
      <title>gtk.AboutDialog.set_authors</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_authors</methodname>
	  <methodparam><parameter
			 role="keyword">authors</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">authors</parameter>&nbsp;:</term>
	  <listitem><simpara>a list containing the names of the program
authors.</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_authors</methodname>() method sets the
"authors" property to the list contained in
<parameter>authors</parameter>. The author names are displayed in the
authors tab of the secondary credits
dialog. <methodname>set_authors</methodname>() method will show the
<guibutton>Credits</guibutton> button if it is not displayed.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-documenters">
      <title>gtk.AboutDialog.get_documenters</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_documenters</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a list of the program
documenters</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_documenters</methodname>() method returns
the contents of the "documenters" property which contains a list of the
names of the program documenters.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-documenters">
      <title>gtk.AboutDialog.set_documenters</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_documenters</methodname>
	  <methodparam><parameter
			 role="keyword">documenters</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">documenters</parameter>&nbsp;:</term>
	  <listitem><simpara>a list of the names of the program
documenters</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_documenters</methodname>() method sets the
"documenters" property to the contents of
<parameter>documenters</parameter>. The documenter names are displayed in
the documenters tab of the secondary credits
dialog. <methodname>set_documenters</methodname>() method will show the
<guibutton>Credits</guibutton> button if it is not displayed.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-artists">
      <title>gtk.AboutDialog.get_artists</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_artists</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a list of the names of the program
artists</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_artists</methodname>() method returns the
contents of the "artists" property which contains a list of the names of the
program artists.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-artists">
      <title>gtk.AboutDialog.set_artists</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_artists</methodname>
	  <methodparam><parameter
			 role="keyword">artists</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">artists</parameter>&nbsp;:</term>
	  <listitem><simpara>a list of the names of the program
artists</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_artists</methodname>() method sets the
"artists" property to the contents of <parameter>artists</parameter>. The
artist names are displayed in the artists tab of the secondary credits
dialog. <methodname>set_artists</methodname>() method will show the
<guibutton>Credits</guibutton> button if it is not displayed.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-translator-credits">
      <title>gtk.AboutDialog.get_translator_credits</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_translator_credits</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a string containing the translator
credits</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_translator_credits</methodname>() method
returns the contents of the "translator-credits" property which contains the
credits for the current translation.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-translator-credits">
      <title>gtk.AboutDialog.set_translator_credits</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_translator_credits</methodname>
	  <methodparam><parameter
			 role="keyword">translator_credits</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">translator_credits</parameter>&nbsp;:</term>
	  <listitem><simpara>a string containing the current translation
credits</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_translator_credits</methodname>() method
sets the "translator_credits" property to the value of
<parameter>translator_credits</parameter>. The translator credits are
displayed in the translators tab of the secondary credits dialog.</para>

      <para>The intended use for this string is to display the translator of
the language which is currently used in the user interface. Using the
<function>gettext</function>() function, a simple way to achieve that is to
mark the string for translation.</para>

      <para>It is a good idea to use the customary msgid
"translator-credits" for this purpose, since translators will already know
the purpose of that msgid, and since <link
linkend="class-gtkaboutdialog"><classname>gtk.AboutDialog</classname></link>
will detect if "translator-credits" is untranslated and hide the tab.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-logo">
      <title>gtk.AboutDialog.get_logo</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_logo</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the <link
linkend="class-gdkpixbuf"><classname>gtk.gdk.Pixbuf</classname></link>
used as the logo</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_logo</methodname>() method returns the
contents of the "logo" property which contains a <link
linkend="class-gdkpixbuf"><classname>gtk.gdk.Pixbuf</classname></link> that
is used as the logo.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-logo">
      <title>gtk.AboutDialog.set_logo</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_logo</methodname>
	  <methodparam><parameter
			 role="keyword">logo</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">logo</parameter>&nbsp;:</term>
	  <listitem><simpara>a <link
linkend="class-gdkpixbuf"><classname>gtk.gdk.Pixbuf</classname></link> to be
used as the logo</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_logo</methodname>() method sets the "logo"
property to the <link
linkend="class-gdkpixbuf"><classname>gtk.gdk.Pixbuf</classname></link>
contained in <parameter>logo</parameter>. If <parameter>logo</parameter> is
<literal>None</literal>, the default window icon set with the <link
linkend="function-gtk--window-set-default-icon"><function>gtk.window_set_default_icon_list</function>()</link>
function will be used.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--get-logo-icon-name">
      <title>gtk.AboutDialog.get_logo_icon_name</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_logo_icon_name</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the name of the icon used as the
logo</simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>get_logo_name</methodname>() method returns the
contents of the "logo-icon-name" property which contains the name of the
icon used as the logo.</para>

    </refsect2>

    <refsect2 id="method-gtkaboutdialog--set-logo-icon-name">
      <title>gtk.AboutDialog.set_logo_icon_name</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_logo_icon_name</methodname>
	  <methodparam><parameter
			 role="keyword">icon_name</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">icon_name</parameter>&nbsp;:</term>
	  <listitem><simpara>the name of an icon or
<literal>None</literal></simpara></listitem>
	</varlistentry>
      </variablelist>

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

      <para>The <methodname>set_logo_icon_name</methodname>() method sets
the "logo-icon-name" property to the value of
<parameter>icon_name</parameter>. If <parameter>icon_name</parameter> is
<literal>None</literal>, the default window icon set with the <link
linkend="function-gtk--window-set-default-icon-list"><function>gtk.window_set_default_icon_list</function>()</link>
function will be used.</para>

    </refsect2>
    
  </refsect1>

  <refsect1>
    <title>Functions</title>
                                                                              
    <refsect2 id="function-gtk--about-dialog-set-email-hook">
      <title>gtk.about_dialog_set_email_hook</title>
                                                                              
      <programlisting><methodsynopsis language="python">
          <methodname>gtk.about_dialog_set_email_hook</methodname>
          <methodparam><parameter
                         role="keyword">func</parameter></methodparam>
          <methodparam><parameter
                         role="keyword">data</parameter></methodparam>
        </methodsynopsis></programlisting>
      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">func</parameter>&nbsp;:</term>
          <listitem><simpara> a function to call when an email link is
activated.</simpara></listitem>
        </varlistentry>
        <varlistentry>
          <term><parameter role="keyword">data</parameter>&nbsp;:</term>
          <listitem><simpara> data to pass to
<parameter>func</parameter></simpara></listitem>
        </varlistentry>
      </variablelist>

      <note>
        <para>This function is available in PyGTK 2.6 and above.</para>
      </note>
                                                                              
      <para>The <function>gtk.about_dialog_set_email_hook</function>
function installs a global function (specified by
<parameter>func</parameter>) to be called whenever the user activates an
email link in an about dialog.</para>

      <para>The signature of the callback function
<parameter>func</parameter> is:</para>

      <programlisting>
def func(dialog, link, user_data)
</programlisting>

      <para>where <parameter>link</parameter> is the email address
destination of the activated link, <parameter>dialog</parameter> is the
<link
linkend="class-gtkaboutdialog"><classname>gtk.AboutDialog</classname></link>
containing <parameter>link</parameter> and <parameter>user_data</parameter>
is the <parameter>data</parameter> argument passed to <link
linkend="function-gtk--about-dialog-set-email-hook"><function>gtk.about_dialog_set_email_hook</function>()</link>.</para>
                                                                              
    </refsect2>
                                                                              
    <refsect2 id="function-gtk--about-dialog-set-url-hook">
      <title>gtk.about_dialog_set_url_hook</title>
                                                                              
      <programlisting><methodsynopsis language="python">
          <methodname>gtk.about_dialog_set_url_hook</methodname>
          <methodparam><parameter
                         role="keyword">func</parameter></methodparam>
          <methodparam><parameter
                         role="keyword">data</parameter></methodparam>
        </methodsynopsis></programlisting>
      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">func</parameter>&nbsp;:</term>
          <listitem><simpara> a function to call when a URL link is
activated.</simpara></listitem>
        </varlistentry>
        <varlistentry>
          <term><parameter role="keyword">data</parameter>&nbsp;:</term>
          <listitem><simpara> data to pass to
<parameter>func</parameter></simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>The <function>gtk.about_dialog_set_url_hook</function> function
installs a global function (specified by <parameter>func</parameter>) to be
called whenever the user activates a URL link in an about dialog.</para>

      <para>The signature of the callback function
<parameter>func</parameter> is:</para>

      <programlisting>
def func(dialog, link, user_data)
</programlisting>

      <para>where <parameter>link</parameter> is the URL destination of the
activated link, <parameter>dialog</parameter> is the <link
linkend="class-gtkaboutdialog"><classname>gtk.AboutDialog</classname></link>
containing <parameter>link</parameter> and <parameter>user_data</parameter>
is the <parameter>data</parameter> argument passed to <link
linkend="function-gtk--about-dialog-set-url-hook"><function>gtk.about_dialog_set_url_hook</function>()</link>.</para>

    </refsect2>

  </refsect1>

  <refsect1>
    <title>Signals</title>

    <refsect2 id="signal-gtkaboutdialog--activate-link">
      <title>The "activate-link" gtk.AboutDialog Signal</title>

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

      <variablelist>
        <varlistentry>
          <term><parameter>aboutdialog</parameter>&nbsp;:</term>
          <listitem><simpara>the aboutdialog that received the signal</simpara></listitem>
        </varlistentry>
        <varlistentry>
          <term><parameter>uri</parameter>&nbsp;:</term>
          <listitem><simpara>the URI that is activated</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>

      <note>
        <para>This signal is available in PyGTK 2.24 and above.</para>
      </note>

      <para>The "activate-link" signal is emitted when an URI is activated. Applications may connect to it to override the default behaviour, which is to call
      <link linkend="function-gtk--show-uri"><methodname>gtk.show_uri</methodname></link>().</para>

    </refsect2>
  </refsect1>

 </refentry>