This file is indexed.

/usr/share/gir-1.0/AppIndicator-0.1.gir is in libappindicator-dev 0.4.92-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
<?xml version="1.0"?>
<!-- This file was automatically generated from C sources - DO NOT EDIT!
To affect the contents of this file, edit the original C definitions,
and/or use gtk-doc annotations.  -->
<repository version="1.2"
            xmlns="http://www.gtk.org/introspection/core/1.0"
            xmlns:c="http://www.gtk.org/introspection/c/1.0"
            xmlns:glib="http://www.gtk.org/introspection/glib/1.0">
  <include name="Atk" version="1.0"/>
  <include name="GLib" version="2.0"/>
  <include name="GModule" version="2.0"/>
  <include name="GObject" version="2.0"/>
  <include name="Gdk" version="2.0"/>
  <include name="GdkPixbuf" version="2.0"/>
  <include name="Gio" version="2.0"/>
  <include name="Gtk" version="2.0"/>
  <include name="Pango" version="1.0"/>
  <include name="cairo" version="1.0"/>
  <c:include name="libappindicator/app-indicator.h"/>
  <namespace name="AppIndicator"
             version="0.1"
             shared-library="libappindicator.so.1"
             c:identifier-prefixes="App"
             c:symbol-prefixes="app">
    <constant name="INDICATOR_SIGNAL_CONNECTION_CHANGED"
              value="connection-changed"
              c:type="APP_INDICATOR_SIGNAL_CONNECTION_CHANGED">
      <type name="utf8" c:type="gchar*"/>
    </constant>
    <constant name="INDICATOR_SIGNAL_NEW_ATTENTION_ICON"
              value="new-attention-icon"
              c:type="APP_INDICATOR_SIGNAL_NEW_ATTENTION_ICON">
      <type name="utf8" c:type="gchar*"/>
    </constant>
    <constant name="INDICATOR_SIGNAL_NEW_ICON"
              value="new-icon"
              c:type="APP_INDICATOR_SIGNAL_NEW_ICON">
      <type name="utf8" c:type="gchar*"/>
    </constant>
    <constant name="INDICATOR_SIGNAL_NEW_ICON_THEME_PATH"
              value="new-icon-theme-path"
              c:type="APP_INDICATOR_SIGNAL_NEW_ICON_THEME_PATH">
      <type name="utf8" c:type="gchar*"/>
    </constant>
    <constant name="INDICATOR_SIGNAL_NEW_LABEL"
              value="new-label"
              c:type="APP_INDICATOR_SIGNAL_NEW_LABEL">
      <type name="utf8" c:type="gchar*"/>
    </constant>
    <constant name="INDICATOR_SIGNAL_NEW_STATUS"
              value="new-status"
              c:type="APP_INDICATOR_SIGNAL_NEW_STATUS">
      <type name="utf8" c:type="gchar*"/>
    </constant>
    <constant name="INDICATOR_SIGNAL_SCROLL_EVENT"
              value="scroll-event"
              c:type="APP_INDICATOR_SIGNAL_SCROLL_EVENT">
      <type name="utf8" c:type="gchar*"/>
    </constant>
    <class name="Indicator"
           c:symbol-prefix="indicator"
           c:type="AppIndicator"
           parent="GObject.Object"
           glib:type-name="AppIndicator"
           glib:get-type="app_indicator_get_type"
           glib:type-struct="IndicatorClass">
      <doc xml:whitespace="preserve">A application indicator represents the values that are needed to show a
unique status in the panel for an application.  In general, applications
should try to fit in the other indicators that are available on the
panel before using this.  But, sometimes it is necissary.

Private fields</doc>
      <constructor name="new" c:identifier="app_indicator_new">
        <doc xml:whitespace="preserve">Creates a new #AppIndicator setting the properties:
#AppIndicator:id with @id, #AppIndicator:category with @category
and #AppIndicator:icon-name with @icon_name.</doc>
        <return-value transfer-ownership="full">
          <doc xml:whitespace="preserve">A pointer to a new #AppIndicator object.</doc>
          <type name="Indicator" c:type="AppIndicator*"/>
        </return-value>
        <parameters>
          <parameter name="id" transfer-ownership="none">
            <doc xml:whitespace="preserve">The unique id of the indicator to create.</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="icon_name" transfer-ownership="none">
            <doc xml:whitespace="preserve">The icon name for this indicator</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="category" transfer-ownership="none">
            <doc xml:whitespace="preserve">The category of indicator.</doc>
            <type name="IndicatorCategory" c:type="AppIndicatorCategory"/>
          </parameter>
        </parameters>
      </constructor>
      <constructor name="new_with_path"
                   c:identifier="app_indicator_new_with_path">
        <return-value transfer-ownership="full">
          <doc xml:whitespace="preserve">A pointer to a new #AppIndicator object.</doc>
          <type name="Indicator" c:type="AppIndicator*"/>
        </return-value>
        <parameters>
          <parameter name="id" transfer-ownership="none">
            <doc xml:whitespace="preserve">The unique id of the indicator to create.</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="icon_name" transfer-ownership="none">
            <doc xml:whitespace="preserve">The icon name for this indicator</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="category" transfer-ownership="none">
            <doc xml:whitespace="preserve">The category of indicator.</doc>
            <type name="IndicatorCategory" c:type="AppIndicatorCategory"/>
          </parameter>
          <parameter name="icon_theme_path" transfer-ownership="none">
            <doc xml:whitespace="preserve">A custom path for finding icons. Creates a new #AppIndicator setting the properties: #AppIndicator:id with @id, #AppIndicator:category with @category, #AppIndicator:icon-name with @icon_name and #AppIndicator:icon-theme-path with @icon_theme_path.</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
        </parameters>
      </constructor>
      <virtual-method name="connection_changed">
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="connected" transfer-ownership="none">
            <type name="gboolean" c:type="gboolean"/>
          </parameter>
          <parameter name="user_data" transfer-ownership="none" closure="1">
            <type name="gpointer" c:type="gpointer"/>
          </parameter>
        </parameters>
      </virtual-method>
      <virtual-method name="fallback" introspectable="0">
        <return-value>
          <type name="Gtk.StatusIcon" c:type="GtkStatusIcon*"/>
        </return-value>
      </virtual-method>
      <virtual-method name="new_attention_icon">
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="user_data" transfer-ownership="none" closure="0">
            <type name="gpointer" c:type="gpointer"/>
          </parameter>
        </parameters>
      </virtual-method>
      <virtual-method name="new_icon">
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="user_data" transfer-ownership="none" closure="0">
            <type name="gpointer" c:type="gpointer"/>
          </parameter>
        </parameters>
      </virtual-method>
      <virtual-method name="new_icon_theme_path">
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="icon_theme_path" transfer-ownership="none">
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="user_data" transfer-ownership="none" closure="1">
            <type name="gpointer" c:type="gpointer"/>
          </parameter>
        </parameters>
      </virtual-method>
      <virtual-method name="new_label">
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="label" transfer-ownership="none">
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="guide" transfer-ownership="none">
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="user_data" transfer-ownership="none" closure="2">
            <type name="gpointer" c:type="gpointer"/>
          </parameter>
        </parameters>
      </virtual-method>
      <virtual-method name="new_status">
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="status" transfer-ownership="none">
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="user_data" transfer-ownership="none" closure="1">
            <type name="gpointer" c:type="gpointer"/>
          </parameter>
        </parameters>
      </virtual-method>
      <virtual-method name="scroll_event">
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="delta" transfer-ownership="none">
            <type name="gint" c:type="gint"/>
          </parameter>
          <parameter name="direction" transfer-ownership="none">
            <type name="Gdk.ScrollDirection" c:type="GdkScrollDirection"/>
          </parameter>
          <parameter name="user_data" transfer-ownership="none" closure="2">
            <type name="gpointer" c:type="gpointer"/>
          </parameter>
        </parameters>
      </virtual-method>
      <virtual-method name="unfallback">
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="status_icon" transfer-ownership="none">
            <type name="Gtk.StatusIcon" c:type="GtkStatusIcon*"/>
          </parameter>
        </parameters>
      </virtual-method>
      <method name="build_menu_from_desktop"
              c:identifier="app_indicator_build_menu_from_desktop">
        <doc xml:whitespace="preserve">This function allows for building the Application Indicator menu
from a static desktop file.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="desktop_file" transfer-ownership="none">
            <doc xml:whitespace="preserve">A path to the desktop file to build the menu from</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="desktop_profile" transfer-ownership="none">
            <doc xml:whitespace="preserve">Which entries should be used from the desktop file</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
        </parameters>
      </method>
      <method name="get_attention_icon"
              c:identifier="app_indicator_get_attention_icon">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:attention-icon-name.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current attention icon name.</doc>
          <type name="utf8" c:type="gchar*"/>
        </return-value>
      </method>
      <method name="get_attention_icon_desc"
              c:identifier="app_indicator_get_attention_icon_desc">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:attention-icon-desc.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current attention icon description.</doc>
          <type name="utf8" c:type="gchar*"/>
        </return-value>
      </method>
      <method name="get_category" c:identifier="app_indicator_get_category">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:category.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current category.</doc>
          <type name="IndicatorCategory" c:type="AppIndicatorCategory"/>
        </return-value>
      </method>
      <method name="get_icon" c:identifier="app_indicator_get_icon">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:icon-name.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current icon name.</doc>
          <type name="utf8" c:type="gchar*"/>
        </return-value>
      </method>
      <method name="get_icon_desc" c:identifier="app_indicator_get_icon_desc">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:icon-desc.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current icon description.</doc>
          <type name="utf8" c:type="gchar*"/>
        </return-value>
      </method>
      <method name="get_icon_theme_path"
              c:identifier="app_indicator_get_icon_theme_path">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:icon-theme-path.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current icon theme path.</doc>
          <type name="utf8" c:type="gchar*"/>
        </return-value>
      </method>
      <method name="get_id" c:identifier="app_indicator_get_id">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:id.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current ID</doc>
          <type name="utf8" c:type="gchar*"/>
        </return-value>
      </method>
      <method name="get_label" c:identifier="app_indicator_get_label">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:label.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current label.</doc>
          <type name="utf8" c:type="gchar*"/>
        </return-value>
      </method>
      <method name="get_label_guide"
              c:identifier="app_indicator_get_label_guide">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:label-guide.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current label guide.</doc>
          <type name="utf8" c:type="gchar*"/>
        </return-value>
      </method>
      <method name="get_menu" c:identifier="app_indicator_get_menu">
        <doc xml:whitespace="preserve">Gets the menu being used for this application indicator.
Wrapper function for property #AppIndicator:menu.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">A #GtkMenu object or %NULL if one hasn't been set.</doc>
          <type name="Gtk.Menu" c:type="GtkMenu*"/>
        </return-value>
      </method>
      <method name="get_ordering_index"
              c:identifier="app_indicator_get_ordering_index">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:ordering-index.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current ordering index.</doc>
          <type name="guint32" c:type="guint32"/>
        </return-value>
      </method>
      <method name="get_secondary_activate_target"
              c:identifier="app_indicator_get_secondary_activate_target">
        <doc xml:whitespace="preserve">Gets the menuitem being called on secondary-activate event.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">A #GtkWidget object or %NULL if none has been set.</doc>
          <type name="Gtk.Widget" c:type="GtkWidget*"/>
        </return-value>
      </method>
      <method name="get_status" c:identifier="app_indicator_get_status">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:status.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current status.</doc>
          <type name="IndicatorStatus" c:type="AppIndicatorStatus"/>
        </return-value>
      </method>
      <method name="get_title"
              c:identifier="app_indicator_get_title"
              version="0.5">
        <doc xml:whitespace="preserve">Gets the title of the application indicator.  See the function
app_indicator_set_title() for information on the title.</doc>
        <return-value transfer-ownership="none">
          <doc xml:whitespace="preserve">The current title.</doc>
          <type name="utf8" c:type="gchar*"/>
        </return-value>
      </method>
      <method name="set_attention_icon"
              c:identifier="app_indicator_set_attention_icon"
              deprecated="Use app_indicator_set_attention_icon_full() instead.">
        <doc xml:whitespace="preserve">Wrapper for app_indicator_set_attention_icon_full() with a NULL
description.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="icon_name" transfer-ownership="none">
            <doc xml:whitespace="preserve">The name of the attention icon to set for this indicator</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
        </parameters>
      </method>
      <method name="set_attention_icon_full"
              c:identifier="app_indicator_set_attention_icon_full">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:attention-icon-name.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="icon_name" transfer-ownership="none">
            <doc xml:whitespace="preserve">The name of the attention icon to set for this indicator</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="icon_desc" transfer-ownership="none">
            <doc xml:whitespace="preserve">A textual description of the icon</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
        </parameters>
      </method>
      <method name="set_icon"
              c:identifier="app_indicator_set_icon"
              deprecated="Use app_indicator_set_icon_full()">
        <doc xml:whitespace="preserve">Wrapper function for app_indicator_set_icon_full() with a NULL
description.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="icon_name" transfer-ownership="none">
            <doc xml:whitespace="preserve">The icon name to set.</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
        </parameters>
      </method>
      <method name="set_icon_full" c:identifier="app_indicator_set_icon_full">
        <doc xml:whitespace="preserve">Sets the default icon to use when the status is active but
not set to attention.  In most cases, this should be the
application icon for the program.

Wrapper function for property #AppIndicator:icon-name and
#AppIndicator::icon-desc.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="icon_name" transfer-ownership="none">
            <doc xml:whitespace="preserve">The icon name to set.</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="icon_desc" transfer-ownership="none">
            <doc xml:whitespace="preserve">A textual description of the icon for accessibility</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
        </parameters>
      </method>
      <method name="set_icon_theme_path"
              c:identifier="app_indicator_set_icon_theme_path">
        <doc xml:whitespace="preserve">Sets the path to use when searching for icons.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="icon_theme_path" transfer-ownership="none">
            <doc xml:whitespace="preserve">The icon theme path to set.</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
        </parameters>
      </method>
      <method name="set_label" c:identifier="app_indicator_set_label">
        <doc xml:whitespace="preserve">This is a wrapper function for the #AppIndicator:label and
#AppIndicator:guide properties.  This function can take #NULL
as either @label or @guide and will clear the entries.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="label" transfer-ownership="none">
            <doc xml:whitespace="preserve">The label to show next to the icon.</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
          <parameter name="guide" transfer-ownership="none">
            <doc xml:whitespace="preserve">A guide to size the label correctly.</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
        </parameters>
      </method>
      <method name="set_menu" c:identifier="app_indicator_set_menu">
        <doc xml:whitespace="preserve">Sets the menu that should be shown when the Application Indicator
is clicked on in the panel.  An application indicator will not
be rendered unless it has a menu.

Wrapper function for property #AppIndicator:menu.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="menu" transfer-ownership="none" allow-none="1">
            <doc xml:whitespace="preserve">A #GtkMenu to set</doc>
            <type name="Gtk.Menu" c:type="GtkMenu*"/>
          </parameter>
        </parameters>
      </method>
      <method name="set_ordering_index"
              c:identifier="app_indicator_set_ordering_index">
        <doc xml:whitespace="preserve">Sets the ordering index for the app indicator which effects the
placement of it on the panel.  For almost all app indicator
this is not the function you're looking for.

Wrapper function for property #AppIndicator:ordering-index.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="ordering_index" transfer-ownership="none">
            <doc xml:whitespace="preserve">A value for the ordering of this app indicator</doc>
            <type name="guint32" c:type="guint32"/>
          </parameter>
        </parameters>
      </method>
      <method name="set_secondary_activate_target"
              c:identifier="app_indicator_set_secondary_activate_target">
        <doc xml:whitespace="preserve">Set the @menuitem to be activated when a secondary activation event (i.e. a
middle-click) is emitted over the #AppIndicator icon/label.

The @menuitem can be also a complex #GtkWidget, but to get activated when
a secondary activation occurs in the #Appindicator, it must be a visible and
active child (or inner-child) of the #AppIndicator:menu.

Setting @menuitem to %NULL causes to disable this feature.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="menuitem" transfer-ownership="none" allow-none="1">
            <doc xml:whitespace="preserve">A #GtkWidget to be activated on secondary activation</doc>
            <type name="Gtk.Widget" c:type="GtkWidget*"/>
          </parameter>
        </parameters>
      </method>
      <method name="set_status" c:identifier="app_indicator_set_status">
        <doc xml:whitespace="preserve">Wrapper function for property #AppIndicator:status.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="status" transfer-ownership="none">
            <doc xml:whitespace="preserve">The status to set for this indicator</doc>
            <type name="IndicatorStatus" c:type="AppIndicatorStatus"/>
          </parameter>
        </parameters>
      </method>
      <method name="set_title"
              c:identifier="app_indicator_set_title"
              version="0.5">
        <doc xml:whitespace="preserve">Sets the title of the application indicator, or how it should be referred
in a human readable form.  This string should be UTF-8 and localized as it
expected that users will set it.

In the Unity desktop the most prominent place that this is show will be
in the HUD.  HUD listings for this application indicator will start with
the title as the first part of the line for the menu items.

Setting @title to %NULL removes the title.</doc>
        <return-value transfer-ownership="none">
          <type name="none" c:type="void"/>
        </return-value>
        <parameters>
          <parameter name="title" transfer-ownership="none" allow-none="1">
            <doc xml:whitespace="preserve">Title of the app indicator</doc>
            <type name="utf8" c:type="gchar*"/>
          </parameter>
        </parameters>
      </method>
      <property name="attention-icon-desc"
                writable="1"
                transfer-ownership="none">
        <doc xml:whitespace="preserve">If the indicator sets it's status to %APP_INDICATOR_STATUS_ATTENTION
then this textual description of the icon shown.</doc>
        <type name="utf8"/>
      </property>
      <property name="attention-icon-name"
                writable="1"
                transfer-ownership="none">
        <doc xml:whitespace="preserve">If the indicator sets it's status to %APP_INDICATOR_STATUS_ATTENTION
then this icon is shown.</doc>
        <type name="utf8"/>
      </property>
      <property name="category"
                writable="1"
                construct-only="1"
                transfer-ownership="none">
        <doc xml:whitespace="preserve">The type of indicator that this represents.  Please don't use 'Other'. 
Defaults to 'ApplicationStatus'.</doc>
        <type name="utf8"/>
      </property>
      <property name="connected" transfer-ownership="none">
        <doc xml:whitespace="preserve">Pretty simple, %TRUE if we have a reasonable expectation of being 
displayed through this object. You should hide your TrayIcon if so.</doc>
        <type name="gboolean"/>
      </property>
      <property name="dbus-menu-server"
                introspectable="0"
                writable="1"
                transfer-ownership="none">
        <doc xml:whitespace="preserve">A way to get the internal dbusmenu server if it is available.
This should only be used for testing.</doc>
        <type/>
      </property>
      <property name="icon-desc" writable="1" transfer-ownership="none">
        <doc xml:whitespace="preserve">The description of the regular icon that is shown for the indicator.</doc>
        <type name="utf8"/>
      </property>
      <property name="icon-name" writable="1" transfer-ownership="none">
        <doc xml:whitespace="preserve">The name of the regular icon that is shown for the indicator.</doc>
        <type name="utf8"/>
      </property>
      <property name="icon-theme-path"
                writable="1"
                construct="1"
                transfer-ownership="none">
        <doc xml:whitespace="preserve">An additional place to look for icon names that may be installed by the
application.</doc>
        <type name="utf8"/>
      </property>
      <property name="id"
                writable="1"
                construct-only="1"
                transfer-ownership="none">
        <doc xml:whitespace="preserve">The ID for this indicator, which should be unique, but used consistently
by this program and its indicator.</doc>
        <type name="utf8"/>
      </property>
      <property name="label" writable="1" transfer-ownership="none">
        <doc xml:whitespace="preserve">A label that can be shown next to the string in the application
indicator.  The label will not be shown unless there is an icon
as well.  The label is useful for numerical and other frequently
updated information.  In general, it shouldn't be shown unless a
user requests it as it can take up a significant amount of space
on the user's panel.  This may not be shown in all visualizations.</doc>
        <type name="utf8"/>
      </property>
      <property name="label-guide" writable="1" transfer-ownership="none">
        <doc xml:whitespace="preserve">An optional string to provide guidance to the panel on how big
the #AppIndicator:label string could get.  If this is set correctly
then the panel should never 'jiggle' as the string adjusts through
out the range of options.  For instance, if you were providing a
percentage like "54% thrust" in #AppIndicator:label you'd want to
set this string to "100% thrust" to ensure space when Scotty can
get you enough power.</doc>
        <type name="utf8"/>
      </property>
      <property name="ordering-index" writable="1" transfer-ownership="none">
        <doc xml:whitespace="preserve">The ordering index is an odd parameter, and if you think you don't need
it you're probably right.  In general, the application indicator try
to place the applications in a recreatable place taking into account
which category they're in to try and group them.  But, there are some
cases where you'd want to ensure indicators are next to each other.
To do that you can override the generated ordering index and replace it
with a new one.  Again, you probably don't want to be doing this, but
in case you do, this is the way.</doc>
        <type name="guint"/>
      </property>
      <property name="status" writable="1" transfer-ownership="none">
        <doc xml:whitespace="preserve">Whether the indicator is shown or requests attention. Defaults to
'Passive'.</doc>
        <type name="utf8"/>
      </property>
      <property name="title" writable="1" transfer-ownership="none">
        <doc xml:whitespace="preserve">Provides a way to refer to this application indicator in a human
readable form.  This is used in the Unity desktop in the HUD as
the first part of the menu entries to distinguish them from the
focused application's entries.</doc>
        <type name="utf8"/>
      </property>
      <field name="parent">
        <type name="GObject.Object" c:type="GObject"/>
      </field>
      <field name="priv">
        <type name="IndicatorPrivate" c:type="AppIndicatorPrivate*"/>
      </field>
      <glib:signal name="connection-changed" when="last">
        <doc xml:whitespace="preserve">Signaled when we connect to a watcher, or when it drops away.</doc>
        <return-value transfer-ownership="none">
          <type name="none"/>
        </return-value>
        <parameters>
          <parameter name="arg1" transfer-ownership="none">
            <doc xml:whitespace="preserve">Whether we're connected or not</doc>
            <type name="gboolean"/>
          </parameter>
        </parameters>
      </glib:signal>
      <glib:signal name="new-attention-icon" when="last">
        <doc xml:whitespace="preserve">Emitted when #AppIndicator:attention-icon-name is changed</doc>
        <return-value transfer-ownership="none">
          <type name="none"/>
        </return-value>
      </glib:signal>
      <glib:signal name="new-icon" when="last">
        <doc xml:whitespace="preserve">when #AppIndicator:icon-name is changed</doc>
        <return-value transfer-ownership="none">
          <type name="none"/>
        </return-value>
      </glib:signal>
      <glib:signal name="new-icon-theme-path" when="last">
        <doc xml:whitespace="preserve">Signaled when there is a new icon set for the
object.</doc>
        <return-value transfer-ownership="none">
          <type name="none"/>
        </return-value>
        <parameters>
          <parameter name="object" transfer-ownership="none">
            <type name="utf8"/>
          </parameter>
        </parameters>
      </glib:signal>
      <glib:signal name="new-label" when="last">
        <doc xml:whitespace="preserve">Emitted when either #AppIndicator:label or #AppIndicator:label-guide are
changed.</doc>
        <return-value transfer-ownership="none">
          <type name="none"/>
        </return-value>
        <parameters>
          <parameter name="object" transfer-ownership="none">
            <type name="utf8"/>
          </parameter>
          <parameter name="p0" transfer-ownership="none">
            <type name="utf8"/>
          </parameter>
        </parameters>
      </glib:signal>
      <glib:signal name="new-status" when="last">
        <doc xml:whitespace="preserve">Emitted when #AppIndicator:status is changed</doc>
        <return-value transfer-ownership="none">
          <type name="none"/>
        </return-value>
        <parameters>
          <parameter name="arg1" transfer-ownership="none">
            <doc xml:whitespace="preserve">The string value of the #AppIndicatorStatus enum.</doc>
            <type name="utf8"/>
          </parameter>
        </parameters>
      </glib:signal>
      <glib:signal name="scroll-event" when="last">
        <doc xml:whitespace="preserve">Signaled when the #AppIndicator receives a scroll event.</doc>
        <return-value transfer-ownership="none">
          <type name="none"/>
        </return-value>
        <parameters>
          <parameter name="arg1" transfer-ownership="none">
            <doc xml:whitespace="preserve">How many steps the scroll wheel has taken</doc>
            <type name="gint"/>
          </parameter>
          <parameter name="arg2" transfer-ownership="none">
            <doc xml:whitespace="preserve">(type Gdk.ScrollDirection) Which direction the wheel went in</doc>
            <type name="guint"/>
          </parameter>
        </parameters>
      </glib:signal>
    </class>
    <enumeration name="IndicatorCategory" c:type="AppIndicatorCategory">
      <doc xml:whitespace="preserve">The category provides grouping for the indicators so that
users can find indicators that are similar together.</doc>
      <member name="application_status"
              value="0"
              c:identifier="APP_INDICATOR_CATEGORY_APPLICATION_STATUS"/>
      <member name="communications"
              value="1"
              c:identifier="APP_INDICATOR_CATEGORY_COMMUNICATIONS"/>
      <member name="system_services"
              value="2"
              c:identifier="APP_INDICATOR_CATEGORY_SYSTEM_SERVICES"/>
      <member name="hardware"
              value="3"
              c:identifier="APP_INDICATOR_CATEGORY_HARDWARE"/>
      <member name="other"
              value="4"
              c:identifier="APP_INDICATOR_CATEGORY_OTHER"/>
    </enumeration>
    <record name="IndicatorClass"
            c:type="AppIndicatorClass"
            glib:is-gtype-struct-for="Indicator">
      <doc xml:whitespace="preserve">The signals and external functions that make up the #AppIndicator
class object.</doc>
      <field name="parent_class">
        <type name="GObject.ObjectClass" c:type="GObjectClass"/>
      </field>
      <field name="new_icon">
        <callback name="new_icon">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
          <parameters>
            <parameter name="indicator" transfer-ownership="none">
              <type name="Indicator" c:type="AppIndicator*"/>
            </parameter>
            <parameter name="user_data" transfer-ownership="none" closure="1">
              <type name="gpointer" c:type="gpointer"/>
            </parameter>
          </parameters>
        </callback>
      </field>
      <field name="new_attention_icon">
        <callback name="new_attention_icon">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
          <parameters>
            <parameter name="indicator" transfer-ownership="none">
              <type name="Indicator" c:type="AppIndicator*"/>
            </parameter>
            <parameter name="user_data" transfer-ownership="none" closure="1">
              <type name="gpointer" c:type="gpointer"/>
            </parameter>
          </parameters>
        </callback>
      </field>
      <field name="new_status">
        <callback name="new_status">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
          <parameters>
            <parameter name="indicator" transfer-ownership="none">
              <type name="Indicator" c:type="AppIndicator*"/>
            </parameter>
            <parameter name="status" transfer-ownership="none">
              <type name="utf8" c:type="gchar*"/>
            </parameter>
            <parameter name="user_data" transfer-ownership="none" closure="2">
              <type name="gpointer" c:type="gpointer"/>
            </parameter>
          </parameters>
        </callback>
      </field>
      <field name="new_icon_theme_path">
        <callback name="new_icon_theme_path">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
          <parameters>
            <parameter name="indicator" transfer-ownership="none">
              <type name="Indicator" c:type="AppIndicator*"/>
            </parameter>
            <parameter name="icon_theme_path" transfer-ownership="none">
              <type name="utf8" c:type="gchar*"/>
            </parameter>
            <parameter name="user_data" transfer-ownership="none" closure="2">
              <type name="gpointer" c:type="gpointer"/>
            </parameter>
          </parameters>
        </callback>
      </field>
      <field name="new_label">
        <callback name="new_label">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
          <parameters>
            <parameter name="indicator" transfer-ownership="none">
              <type name="Indicator" c:type="AppIndicator*"/>
            </parameter>
            <parameter name="label" transfer-ownership="none">
              <type name="utf8" c:type="gchar*"/>
            </parameter>
            <parameter name="guide" transfer-ownership="none">
              <type name="utf8" c:type="gchar*"/>
            </parameter>
            <parameter name="user_data" transfer-ownership="none" closure="3">
              <type name="gpointer" c:type="gpointer"/>
            </parameter>
          </parameters>
        </callback>
      </field>
      <field name="connection_changed">
        <callback name="connection_changed">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
          <parameters>
            <parameter name="indicator" transfer-ownership="none">
              <type name="Indicator" c:type="AppIndicator*"/>
            </parameter>
            <parameter name="connected" transfer-ownership="none">
              <type name="gboolean" c:type="gboolean"/>
            </parameter>
            <parameter name="user_data" transfer-ownership="none" closure="2">
              <type name="gpointer" c:type="gpointer"/>
            </parameter>
          </parameters>
        </callback>
      </field>
      <field name="scroll_event">
        <callback name="scroll_event">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
          <parameters>
            <parameter name="indicator" transfer-ownership="none">
              <type name="Indicator" c:type="AppIndicator*"/>
            </parameter>
            <parameter name="delta" transfer-ownership="none">
              <type name="gint" c:type="gint"/>
            </parameter>
            <parameter name="direction" transfer-ownership="none">
              <type name="Gdk.ScrollDirection" c:type="GdkScrollDirection"/>
            </parameter>
            <parameter name="user_data" transfer-ownership="none" closure="3">
              <type name="gpointer" c:type="gpointer"/>
            </parameter>
          </parameters>
        </callback>
      </field>
      <field name="app_indicator_reserved_ats">
        <callback name="app_indicator_reserved_ats">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
        </callback>
      </field>
      <field name="fallback" introspectable="0">
        <callback name="fallback" introspectable="0">
          <return-value>
            <type name="Gtk.StatusIcon" c:type="GtkStatusIcon*"/>
          </return-value>
          <parameters>
            <parameter name="indicator" transfer-ownership="none">
              <type name="Indicator" c:type="AppIndicator*"/>
            </parameter>
          </parameters>
        </callback>
      </field>
      <field name="unfallback">
        <callback name="unfallback">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
          <parameters>
            <parameter name="indicator" transfer-ownership="none">
              <type name="Indicator" c:type="AppIndicator*"/>
            </parameter>
            <parameter name="status_icon" transfer-ownership="none">
              <type name="Gtk.StatusIcon" c:type="GtkStatusIcon*"/>
            </parameter>
          </parameters>
        </callback>
      </field>
      <field name="app_indicator_reserved_1">
        <callback name="app_indicator_reserved_1">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
        </callback>
      </field>
      <field name="app_indicator_reserved_2">
        <callback name="app_indicator_reserved_2">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
        </callback>
      </field>
      <field name="app_indicator_reserved_3">
        <callback name="app_indicator_reserved_3">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
        </callback>
      </field>
      <field name="app_indicator_reserved_4">
        <callback name="app_indicator_reserved_4">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
        </callback>
      </field>
      <field name="app_indicator_reserved_5">
        <callback name="app_indicator_reserved_5">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
        </callback>
      </field>
      <field name="app_indicator_reserved_6">
        <callback name="app_indicator_reserved_6">
          <return-value transfer-ownership="none">
            <type name="none" c:type="void"/>
          </return-value>
        </callback>
      </field>
    </record>
    <record name="IndicatorPrivate" c:type="AppIndicatorPrivate" disguised="1">
      <doc xml:whitespace="preserve">Private Fields</doc>
    </record>
    <enumeration name="IndicatorStatus" c:type="AppIndicatorStatus">
      <doc xml:whitespace="preserve">These are the states that the indicator can be on in
the user's panel.  The indicator by default starts
in the state @APP_INDICATOR_STATUS_PASSIVE and can be
shown by setting it to @APP_INDICATOR_STATUS_ACTIVE.</doc>
      <member name="passive"
              value="0"
              c:identifier="APP_INDICATOR_STATUS_PASSIVE"/>
      <member name="active"
              value="1"
              c:identifier="APP_INDICATOR_STATUS_ACTIVE"/>
      <member name="attention"
              value="2"
              c:identifier="APP_INDICATOR_STATUS_ATTENTION"/>
    </enumeration>
  </namespace>
</repository>