summaryrefslogtreecommitdiff
path: root/docs/reference/pygtk-gtkstatusicon.xml
blob: b48ab5463f487a0daa74d1d73882c59f3d5aa97d (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
<?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-gtkstatusicon">

  <refnamediv>
    <refname>gtk.StatusIcon</refname>
      <refpurpose>display an icon in the system tray (new in PyGTK
      2.10)</refpurpose>
  </refnamediv>

  <refsect1>
    <title>Synopsis</title>

    <classsynopsis language="python">
      <ooclass><classname>gtk.StatusIcon</classname></ooclass>
      <ooclass><classname><link linkend="class-gobject">gobject.GObject</link></classname></ooclass>
      <constructorsynopsis language="python">
        <methodname><link linkend="constructor-gtkstatusicon">gtk.StatusIcon</link></methodname>
        <methodparam></methodparam>
      </constructorsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-storage-type">get_storage_type</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-gicon">get_gicon</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-pixbuf">get_pixbuf</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-stock">get_stock</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-icon-name">get_icon_name</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-size">get_size</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-x11-window-id">get_x11_window_id</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--set-tooltip">set_tooltip</link></methodname>
        <methodparam><parameter role="keyword">tooltip_text</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--set-visible">set_visible</link></methodname>
        <methodparam><parameter role="keyword">visible</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-visible">get_visible</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--set-blinking">set_blinking</link></methodname>
        <methodparam><parameter role="keyword">blinking</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-blinking">get_blinking</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--is-embedded">is_embedded</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-geometry">get_geometry</link></methodname>
        <methodparam><parameter role="keyword">screen</parameter></methodparam>
        <methodparam><parameter role="keyword">area</parameter></methodparam>
        <methodparam><parameter role="keyword">orientation</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--get-screen">get_screen</link></methodname>
        <methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--set-screen">set_screen</link></methodname>
        <methodparam><parameter role="keyword">screen</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--set-from-pixbuf">set_from_pixbuf</link></methodname>
        <methodparam><parameter role="keyword">pixbuf</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--set-from-file">set_from_file</link></methodname>
        <methodparam><parameter role="keyword">filename</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--set-from-stock">set_from_stock</link></methodname>
        <methodparam><parameter role="keyword">stock_id</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--set-from-icon-name">set_from_icon_name</link></methodname>
        <methodparam><parameter role="keyword">icon_name</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
        <methodname><link linkend="method-gtkstatusicon--set-from-gicon">set_from_gicon</link></methodname>
        <methodparam><parameter role="keyword">gicon</parameter></methodparam>
      </methodsynopsis>
</classsynopsis>

<programlisting>
<emphasis role="bold">Functions</emphasis>

<methodsynopsis language="python">
    <methodname><link linkend="function-gtk--status-icon-new-from-pixbuf">gtk.status_icon_new_from_pixbuf</link></methodname>
    <methodparam><parameter role="keyword">pixbuf</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="function-gtk--status-icon-new-from-file">gtk.status_icon_new_from_file</link></methodname>
    <methodparam><parameter role="keyword">filename</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="function-gtk--status-icon-new-from-gicon">gtk.status_icon_new_from_gicon</link></methodname>
    <methodparam><parameter role="keyword">filename</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="function-gtk--status-icon-new-from-stock">gtk.status_icon_new_from_stock</link></methodname>
    <methodparam><parameter role="keyword">stock_id</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="function-gtk--status-icon-new-from-icon-name">gtk.status_icon_new_from_icon_name</link></methodname>
    <methodparam><parameter role="keyword">icon_name</parameter></methodparam>
  </methodsynopsis><methodsynopsis language="python">
    <methodname><link linkend="function-gtk--status-icon-position-menu">gtk.status_icon_position_menu</link></methodname>
    <methodparam><parameter>menu</parameter></methodparam>
    <methodparam><parameter>statusicon</parameter></methodparam>
  </methodsynopsis></programlisting>

  </refsect1>

  <refsect1>
    <title>Ancestry</title>

<synopsis>+-- <link linkend="class-gobject">gobject.GObject</link>
  +-- <link linkend="class-gtkstatusicon">gtk.StatusIcon</link>
</synopsis>

  </refsect1>

  <refsect1 id="properties-gtkstatusicon">
    <title>gtk.StatusIcon Properties</title>

    <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>"blinking"</entry>
          <entry>Read-Write</entry>
          <entry>if <literal>True</literal> the status icon is
          blinking. Default value: <literal>False</literal>.</entry>
        </row>
        
        <row valign="top">
          <entry>"embedded"</entry>
          <entry>Read-Write</entry>
          <entry><literal>True</literal> if the status icon is
          embedded in a notification area.
          Default value: <literal>False</literal>.
          This property is available in GTK+ 2.12 and above.</entry>
        </row>

        <row valign="top">
          <entry>"file"</entry>
          <entry>Write</entry>
          <entry>Filename to load and display. Default value:
          <literal>None</literal>.</entry>
        </row>

        <row valign="top">
          <entry>"gicon"</entry>
          <entry>Read-Write</entry>
          <entry>The GIcon displayed in the GtkStatusIcon. For themed icons,
          the image will be updated automatically if the theme changes.</entry>
          Available from GTK+ 2.14.
        </row>

        <row valign="top">
          <entry>"icon-name"</entry>
          <entry>Read-Write</entry>
          <entry>The name of the icon from the icon theme. Default value:
          <literal>None</literal>.</entry>
        </row>
        
        <row valign="top">
          <entry>"orientation"</entry>
          <entry>Read-Write</entry>
          <entry>The orientation of the tray in which the statusicon is embedded.
          Default value: gtk.ORIENTATION_HORIZONTAL.
          This property is available in GTK+ 2.12 and above.</entry>
        </row>

        <row valign="top">
          <entry>"pixbuf"</entry>
          <entry>Read-Write</entry>
          <entry>A <link
          linkend="class-gdkpixbuf"><classname>gtk.gdk.Pixbuf</classname></link>
          to display.</entry>
        </row>

        <row valign="top">
          <entry>"size"</entry>
          <entry>Read</entry>
          <entry>The size of the icon. Default value: 0.</entry>
        </row>

        <row valign="top">
          <entry>"stock"</entry>
          <entry>Read-Write</entry>
          <entry>Stock ID for a stock image to display. Default value:
          <literal>None</literal>.</entry>
        </row>

        <row valign="top">
          <entry>"storage-type"</entry>
          <entry>Read</entry>
          <entry>The representation being used for image data. Default
          value: <literal>gtk.IMAGE_EMPTY</literal>.</entry>
        </row>

        <row valign="top">
          <entry>"visible"</entry>
          <entry>Read-Write</entry>
          <entry>If <literal>True</literal> the status icon is
          visible. Default value: <literal>True</literal>.</entry>
        </row>

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

  </refsect1>

  <refsect1 id="signal-prototypes-gtkstatusicon">
    <title>gtk.StatusIcon Signal Prototypes</title>

    <para><link linkend="signal-prototypes-gobject">gobject.GObject Signal Prototypes</link></para>

      <variablelist>
      <varlistentry>
        <term>"<link linkend="signal-gtkstatusicon--activate">activate</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>status_icon</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkstatusicon--popup-menu">popup-menu</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>status_icon</parameter></methodparam>
            <methodparam><parameter>button</parameter></methodparam>
            <methodparam><parameter>activate_time</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link linkend="signal-gtkstatusicon--size-changed">size-changed</link>"</term>
        <listitem>
          <methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>status_icon</parameter></methodparam>
            <methodparam><parameter>size</parameter></methodparam>
           <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
    </variablelist>

  </refsect1>

  <refsect1>
    <title>Description</title>

    <para>The "system tray" or notification area is normally used for
    transient icons that indicate some special state. For example, a system
    tray icon might appear to tell the user that they have new mail, or have
    an incoming instant message, or something along those lines. The basic
    idea is that creating an icon in the notification area is less annoying
    than popping up a dialog.</para>

    <para>A <link
    linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link>
    object can be used to display an icon in a "system tray".  The icon can
    have a tooltip, and the user can interact with it by activating it or
    popping up a context menu. Critical information should not solely be
    displayed in a <link
    linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link>,
    since it may not be visible (e.g. when the user doesn't have a
    notification area on his panel).  This can be checked with the <link
    linkend="method-gtkstatusicon--is-embedded"><methodname>gtk.StatusIcon.is_embedded()</methodname></link>
    method.</para>

    <para>On X11, the implementation follows the freedesktop.org "System
    Tray" <ulink
    url="http://www.freedesktop.org/wiki/Standards/systemtray-spec">specification</ulink>.
    Implementations of the "tray" side of this specification can be found
    e.g. in the GNOME and KDE panel applications.</para>

    <para>Note that a <link
    linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link>
    is <emphasis>not</emphasis> a widget, but just a <link
    linkend="class-gobject"><classname>gobject.GObject</classname></link>.
    Making it a widget would be impractical, since the system tray on Win32
    doesn't allow to embed arbitrary widgets.</para>

  </refsect1>

  <refsect1>
    <title>Constructor</title>

    <refsect2 id="constructor-gtkstatusicon">
      <title>gtk.StatusIcon</title>

      <programlisting><constructorsynopsis language="python">
        <methodname>gtk.StatusIcon</methodname>
        <methodparam></methodparam>
      </constructorsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>a new <link
          linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link></simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Creates an empty status icon object.</para>

    </refsect2>

  </refsect1>

  <refsect1>
    <title>Methods</title>

    <refsect2 id="method-gtkstatusicon--set-from-pixbuf">
      <title>gtk.StatusIcon.set_from_pixbuf</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_from_pixbuf</methodname>
        <methodparam><parameter role="keyword">pixbuf</parameter></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">pixbuf</parameter>&nbsp;:</term>
          <listitem><simpara>a <link
          linkend="class-gdkpixbuf"><classname>gtk.gdk.Pixbuf</classname></link>
          or <literal>None</literal></simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Makes <parameter>status_icon</parameter> display
      <parameter>pixbuf</parameter>.  See the <link
      linkend="function-gtk--status-icon-new-from-pixbuf"><function>gtk.status_icon_new_from_pixbuf</function>()</link>
      function for details.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--set-from-file">
      <title>gtk.StatusIcon.set_from_file</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_from_file</methodname>
        <methodparam><parameter role="keyword">filename</parameter></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">filename</parameter>&nbsp;:</term>
          <listitem><simpara>a filename</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Makes <parameter>status_icon</parameter> display the file
      <parameter>filename</parameter>.  See the <link
      linkend="function-gtk--status-icon-new-from-file"><function>gtk.status_icon_new_from_file</function>()</link>
      function for details.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--set-from-stock">
      <title>gtk.StatusIcon.set_from_stock</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_from_stock</methodname>
        <methodparam><parameter role="keyword">stock_id</parameter></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">stock_id</parameter>&nbsp;:</term>
          <listitem><simpara>a stock icon id</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Makes <parameter>status_icon</parameter> display the stock icon
      with the id <parameter>stock_id</parameter>.  See the <link
      linkend="function-gtk--status-icon-new-from-stock"><function>gtk.status_icon_new_from_stock</function>()</link>
      function for details.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--set-from-icon-name">
      <title>gtk.StatusIcon.set_from_icon_name</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_from_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>an icon name</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Makes <parameter>status_icon</parameter> display the icon named
      <parameter>icon_name</parameter> from the current icon theme.  See the
      <link
      linkend="function-gtk--status-icon-new-from-icon-name"><function>gtk.status_icon_new_from_icon_name</function>()</link>
      function for details.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--set-from-gicon">
      <title>gtk.StatusIcon.set_from_gicon</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_from_gicon</methodname>
        <methodparam><parameter role="keyword">gicon</parameter></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">gicon</parameter>&nbsp;:</term>
          <listitem><simpara>a gio.Icon()</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Makes <parameter>status_icon</parameter> display the <parameter>gio.Icon()</parameter>
      See <methodname><link linkend="function-gtk--status-icon-new-from-gicon">gtk.status_icon_new_from_gicon</link></methodname>()
      for details</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--get-storage-type">
      <title>gtk.StatusIcon.get_storage_type</title>

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

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>the image representation being used - one of
          the <xref linkend="gtk-image-type-constants"
          endterm="gtk-image-type-constants-title"></xref>.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Gets the type of representation being used by the <link
      linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link>
      to store image data. If the <link
      linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link>
      has no image data, the return value will be
      <literal>gtk.IMAGE_EMPTY</literal>.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--get-gicon">
      <title>gtk.StatusIcon.get_gicon</title>

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

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>the displayed icon, or <literal>None</literal>
          if the image is empty.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>
        Retrieves the gio.Icon() being displayed by the
        <link linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link>.
        The storage type of the status icon must be gtk.IMAGE_EMPTY or gtk.IMAGE_GICON.
        If this method fails, icon is left unchanged;
      </para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--get-x11-window-id">
      <title>gtk.StatusIcon.get_x11_window_id</title>

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

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>An 32 bit unsigned integer identifier for the
          underlying X11 Window.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>
        This function is only useful on the X11/freedesktop.org platform. It
        returns a window ID for the widget in the underlying status icon
        implementation. This is useful for the Galago notification service,
        which can send a window ID in the protocol in order for the server
        to position notification windows pointing to a status icon reliably.
      </para>
      <para>
        This function is not intended for other use cases which are more likely
        to be met by one of the non-X11 specific methods,
        such as
        <methodname><link linkend="function-gtk--status-icon-position-menu">gtk.status_icon_position_menu</link></methodname>().
      </para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--get-pixbuf">
      <title>gtk.StatusIcon.get_pixbuf</title>

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

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>the displayed pixbuf, or
          <literal>None</literal> if the image is
          empty.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Gets the <link
      linkend="class-gdkpixbuf"><classname>gtk.gdk.Pixbuf</classname></link>
      being displayed by the <link
      linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link>.
      The storage type of the status icon must be
      <literal>gtk.IMAGE_EMPTY</literal> or
      <literal>gtk.IMAGE_PIXBUF</literal> (see the <link
      linkend="method-gtkstatusicon--get-storage-type"><methodname>gtk.StatusIcon.get_storage_type()</methodname></link>
      method).</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--get-stock">
      <title>gtk.StatusIcon.get_stock</title>

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

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>stock id of the displayed stock icon, or
          <literal>None</literal> if the image is
          empty.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Gets the id of the stock icon being displayed by the <link
      linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link>.
      The storage type of the status icon must be
      <literal>gtk.IMAGE_EMPTY</literal> or
      <literal>gtk.IMAGE_STOCK</literal> (see the <link
      linkend="method-gtkstatusicon--get-storage-type"><methodname>gtk.StatusIcon.get_storage_type()</methodname></link>
      method).</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--get-icon-name">
      <title>gtk.StatusIcon.get_icon_name</title>

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

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>name of the displayed icon, or
          <literal>None</literal> if the image is
          empty.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Gets the name of the icon being displayed by the <link
      linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link>.
      The storage type of the status icon must be
      <literal>gtk.IMAGE_EMPTY</literal> or
      <literal>gtk.IMAGE_ICON_NAME</literal> (see the <link
      linkend="method-gtkstatusicon--get-storage-type"><methodname>gtk.StatusIcon.get_storage_type()</methodname></link>
      method).</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--get-size">
      <title>gtk.StatusIcon.get_size</title>

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

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>the size that is available for the
          image</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Gets the size in pixels that is available for the image.  Stock
      icons and named icons adapt their size automatically if the size of
      the notification area changes. For other storage types, the
      "size-changed" signal can be used to react to size changes.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--set-tooltip">
      <title>gtk.StatusIcon.set_tooltip</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_tooltip</methodname>
        <methodparam><parameter role="keyword">tooltip_text</parameter></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">tooltip_text</parameter>&nbsp;:</term>
          <listitem><simpara>the tooltip text, or
          <literal>None</literal></simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Sets the tooltip of the status icon.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--set-visible">
      <title>gtk.StatusIcon.set_visible</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_visible</methodname>
        <methodparam><parameter role="keyword">visible</parameter></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">visible</parameter>&nbsp;:</term>
          <listitem><simpara>if <literal>True</literal> show the status
          icon, if <literal>False</literal> hide it</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Shows or hides a status icon.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--get-visible">
      <title>gtk.StatusIcon.get_visible</title>

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

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara><literal>True</literal> if the status icon is
          visible</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Returns <literal>True</literal> if the status icon is visible.
      Note that being visible does not guarantee that the user can actually
      see the icon, see also the <link
      linkend="method-gtkstatusicon--is-embedded"><methodname>gtk.StatusIcon.is_embedded()</methodname></link>
      method.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--set-blinking">
      <title>gtk.StatusIcon.set_blinking</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_blinking</methodname>
        <methodparam><parameter role="keyword">blinking</parameter></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">blinking</parameter>&nbsp;:</term>
          <listitem><simpara>if <literal>True</literal> turn blinking on, if
          <literal>False</literal> turn it off</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Makes the status icon start or stop blinking.  Note that
      blinking user interface elements may be problematic for some users,
      and thus may be turned off, in which case this setting has no
      effect.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--get-blinking">
      <title>gtk.StatusIcon.get_blinking</title>

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

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara><literal>True</literal> if the icon is
          blinking</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Returns <literal>True</literal> if the icon is blinking, see the
      <link
      linkend="method-gtkstatusicon--set-blinking"><methodname>gtk.StatusIcon.set_blinking()</methodname></link>
      method.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--is-embedded">
      <title>gtk.StatusIcon.is_embedded</title>

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

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara><literal>True</literal> if the status icon is
          embedded in a notification area.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Returns <literal>True</literal> if the status icon is embedded
      in a notification area.</para>

    </refsect2>

    <refsect2 id="method-gtkstatusicon--get-geometry">
      <title>gtk.StatusIcon.get_geometry</title>

      <programlisting><methodsynopsis language="python">
        <methodname>get_geometry</methodname>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>a 3-tuple (containing the screen, area occupied
          by the status icon and the panel orientation) or
          None.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Returns information in a 3-tuple about the location of the
      status icon on screen. The 3-tuple contains the <link
      linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link>,
      the area occupied by the status icon as a <link
      linkend="class-gdkrectangle"><classname>gtk.gdk.Rectangle</classname></link>
      and the orientation of the panel containing the statis icon - one of
      the <xref linkend="gtk-orientation-constants"
      endterm="gtk-orientation-constants-title"></xref>. This information
      can be used to e.g. position popups like notification bubbles.  See
      the <link
      linkend="function-gtk--status-icon-position-menu"><function>gtk.status_icon_position_menu</function>()</link>
      function for a more convenient alternative for positioning
      menus.</para>
      
      <para>Note that some platforms do not provide this information.</para>

    </refsect2>
    
    <refsect2 id="method-gtkstatusicon--get-screen">
      <title>gtk.StatusIcon.get_screen</title>

      <programlisting><methodsynopsis language="python">
        <methodname>get_screen</methodname>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara>a <link linkend="class-gdkscreen">
          <classname>gtk.gdk.Screen</classname></link>.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Returns the <link linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link>
      associated with status_icon.</para>

    </refsect2>
    
    <refsect2 id="method-gtkstatusicon--set-screen">
      <title>gtk.StatusIcon.set_screen</title>

      <programlisting><methodsynopsis language="python">
        <methodname>set_screen</methodname>
        <methodparam><parameter role="keyword">screen</parameter></methodparam>
      </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><parameter role="keyword">screen</parameter>&nbsp;:</term>
          <listitem><simpara>a <link linkend="class-gdkscreen">
          <classname>gtk.gdk.Screen</classname></link>.</simpara></listitem>
        </varlistentry>
      </variablelist>

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

      <para>Sets the <link linkend="class-gdkscreen"><classname>gtk.gdk.Screen</classname></link>
      where status_icon is displayed; if the icon is already mapped, it will be unmapped,
      and then remapped on the new screen.</para>

    </refsect2>

  </refsect1>

  <refsect1>
    <title>Functions</title>

    <refsect2 id="function-gtk--status-icon-new-from-pixbuf">
      <title>gtk.status_icon_new_from_pixbuf</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>gtk.status_icon_new_from_pixbuf</methodname>
	  <methodparam><parameter
			 role="keyword">pixbuf</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">pixbuf</parameter>&nbsp;:</term>
	  <listitem><simpara></simpara></listitem>
	</varlistentry>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a new <link
	  linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link></simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>Creates a status icon displaying <parameter>pixbuf</parameter>.
      The image will be scaled down to fit in the available space in the
      notification area, if necessary.</para>

    </refsect2>

    <refsect2 id="function-gtk--status-icon-new-from-file">
      <title>gtk.status_icon_new_from_file</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>gtk.status_icon_new_from_file</methodname>
	  <methodparam><parameter
			 role="keyword">filename</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">filename</parameter>&nbsp;:</term>
	  <listitem><simpara></simpara></listitem>
	</varlistentry>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a new <link
	  linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link></simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>Creates a status icon displaying the image in the file specified
      by <parameter>filename</parameter>.  The image will be scaled down to
      fit in the available space in the notification area, if
      necessary.</para>

    </refsect2>

    <refsect2 id="function-gtk--status-icon-new-from-gicon">
      <title>gtk.status_icon_new_from_gicon</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>gtk.status_icon_new_from_gicon</methodname>
	  <methodparam><parameter
			 role="keyword">gicon</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">gicon</parameter>&nbsp;:</term>
	  <listitem><simpara></simpara></listitem>
	</varlistentry>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a new <link
	  linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link></simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>
        Creates a status icon displaying a gio.Icon(). If the icon is a
        themed icon, it will be updated when the theme changes.
      </para>

    </refsect2>

    <refsect2 id="function-gtk--status-icon-new-from-stock">
      <title>gtk.status_icon_new_from_stock</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>gtk.status_icon_new_from_stock</methodname>
	  <methodparam><parameter
			 role="keyword">stock_id</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">stock_id</parameter>&nbsp;:</term>
	  <listitem><simpara>a stock icon id</simpara></listitem>
	</varlistentry>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a new <link
	  linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link></simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>Creates a status icon displaying a stock icon. Sample stock icon
      names are <literal>gtk.STOCK_OPEN</literal>,
      <literal>gtk.STOCK_QUIT</literal>. You can register your own stock
      icon names, see the <link
      linkend="method-gtkiconfactory--add-default"><methodname>gtk.IconFactory.add_default</methodname>()</link>
      and <link
      linkend="method-gtkiconfactory--add"><methodname>gtk.IconFactory.add</methodname>()</link>
      methods.</para>

    </refsect2>

    <refsect2 id="function-gtk--status-icon-new-from-icon-name">
      <title>gtk.status_icon_new_from_icon_name</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>gtk.status_icon_new_from_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>an icon name</simpara></listitem>
	</varlistentry>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a new <link
	  linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link></simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>Creates a status icon displaying an icon from the current icon
      theme. If the current icon theme is changed, the icon will be updated
      appropriately.</para>

    </refsect2>

    <refsect2 id="function-gtk--status-icon-position-menu">
      <title>gtk.status_icon_position_menu</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>gtk.status_icon_position_menu</methodname>
	  <methodparam><parameter>menu</parameter></methodparam>
	  <methodparam><parameter>statusicon</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter>menu</parameter>&nbsp;:</term>
	  <listitem><simpara>the <link
	  linkend="class-gtkmenu"><classname>gtk.Menu</classname></link></simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>statusicon</parameter>&nbsp;:</term>
	  <listitem><simpara>the <link
	  linkend="class-gtkstatusicon"><classname>gtk.StatusIcon</classname></link></simpara></listitem>
	</varlistentry>
	<varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a 3-tuple containing the x and y coordinates
	  for the menu and a boolean indicating whether the menu should be
	  pushed in to be completely inside the screen instead of just
	  clamped to the size to the screen.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>Menu positioning function to use with the <link
      linkend="method-gtkmenu--popup"><methodname>popup</methodname>()</link>
      method to position <parameter>menu</parameter> aligned to
      <parameter>statusicon</parameter> .</para>

      <para>Eample use of this function is:</para>

      <programlisting>
  menu.popup(None, None, gtk.status_icon_position_menu, 
             event.button, event.time, statusicon)
      </programlisting>

    </refsect2>

  </refsect1>

  <refsect1>
    <title>Signals</title>

    <refsect2 id="signal-gtkstatusicon--activate">
      <title>The "activate" gtk.StatusIcon Signal</title>

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

      <variablelist>
        <varlistentry>
          <term><parameter>status_icon</parameter>&nbsp;:</term>
          <listitem><simpara>the object which 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>

      <note>
        <para>This signal is available in GTK+ 2.10 and above.</para>
      </note>

      <para>Gets emitted when the user activates the status icon.  If and
      how status icons can be activated is platform-dependent.</para>

    </refsect2>

    <refsect2 id="signal-gtkstatusicon--popup-menu">
      <title>The "popup-menu" gtk.StatusIcon Signal</title>

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

      <variablelist>
        <varlistentry>
          <term><parameter>status_icon</parameter>&nbsp;:</term>
          <listitem><simpara>the object which received the signal</simpara></listitem>
        </varlistentry>
        <varlistentry>
          <term><parameter>button</parameter>&nbsp;:</term>
          <listitem><simpara>the button that was pressed, or 0 if the 
  signal is not emitted in response to a button press event</simpara></listitem>
        </varlistentry>
        <varlistentry>
          <term><parameter>activate_time</parameter>&nbsp;:</term>
          <listitem><simpara>the timestamp of the event that
  triggered the signal emission</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 GTK+ 2.10 and above.</para>
      </note>

      <para>Gets emitted when the user brings up the context menu of the
      status icon. Whether status icons can have context menus and how these
      are activated is platform-dependent.</para>
      
      <para>The <parameter>button</parameter> and
      <parameter>activate_timeout</parameter> parameters should be passed as
      the last two arguments to the <link
      linkend="method-gtkmenu--popup"><methodname>gtk.Menu.popup()</methodname></link>
      method.</para>

    </refsect2>

    <refsect2 id="signal-gtkstatusicon--size-changed">
      <title>The "size-changed" gtk.StatusIcon Signal</title>

      <programlisting><methodsynopsis language="python"><methodname>callback</methodname>
            <methodparam><parameter>status_icon</parameter></methodparam>
            <methodparam><parameter>size</parameter></methodparam>
            <methodparam><parameter>statusicon</parameter></methodparam>
            <methodparam><parameter>arg1</parameter></methodparam>
            <methodparam><parameter>user_param1</parameter></methodparam>
            <methodparam><parameter>...</parameter></methodparam>
          </methodsynopsis></programlisting>

      <variablelist>
        <varlistentry>
          <term><parameter>status_icon</parameter>&nbsp;:</term>
          <listitem><simpara>the object which received the signal</simpara></listitem>
        </varlistentry>
        <varlistentry>
          <term><parameter>size</parameter>&nbsp;:</term>
          <listitem><simpara>the new size</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>
        <varlistentry>
          <term><emphasis>Returns</emphasis>&nbsp;:</term>
          <listitem><simpara><literal>True</literal> if the icon was updated
          for the new size. Otherwise, GTK+ will scale the icon as
          necessary.</simpara></listitem>
        </varlistentry>
      </variablelist>

      <note>
        <para>This signal is available in GTK+ 2.10 and above.</para>
      </note>

      <para>Gets emitted when the size available for the image changes,
      e.g. because the notification area got resized.</para>

    </refsect2>

</refsect1>

</refentry>