aboutsummaryrefslogtreecommitdiff
path: root/src/app-indicator.c
blob: 87e66ed4288d0d0a645b57f0ec5aad44463a25d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
/*
An object to represent the application as an application indicator
in the system panel.

Copyright 2009 Canonical Ltd.
Copyright 2022-2023 Robert Tari

Authors:
    Ted Gould <ted@canonical.com>
    Cody Russell <cody.russell@canonical.com>
    Robert Tari <robert@tari.in>

This program is free software: you can redistribute it and/or modify it
under the terms of either or both of the following licenses:

1) the GNU Lesser General Public License version 3, as published by the
   Free Software Foundation; and/or
2) the GNU Lesser General Public License version 2.1, as published by
   the Free Software Foundation.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranties of
MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
PURPOSE.  See the applicable version of the GNU Lesser General Public
License for more details.

You should have received a copy of both the GNU Lesser General Public
License version 3 and version 2.1 along with this program.  If not, see
<http://www.gnu.org/licenses/>
*/

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#define _GNU_SOURCE
#include <stdlib.h>

#include <libdbusmenu-glib/menuitem.h>
#include <libdbusmenu-glib/server.h>
#include <libdbusmenu-gtk/client.h>
#include <libdbusmenu-gtk/parser.h>

#include <libayatana-indicator/indicator-desktop-shortcuts.h>

#include <stdlib.h>

#include "app-indicator.h"
#include "app-indicator-enum-types.h"
#include "application-service-marshal.h"

#include "gen-notification-watcher.xml.h"
#include "gen-notification-item.xml.h"

#include "dbus-shared.h"
#include "generate-id.h"

#define PANEL_ICON_SUFFIX  "panel"

/**
 * AppIndicatorPrivate:
 * @id: The ID of the indicator.  Maps to AppIndicator:id.
 * @category: Which category the indicator is.  Maps to AppIndicator:category.
 * @status: The status of the indicator.  Maps to AppIndicator:status.
 * @icon_name: The name of the icon to use.  Maps to AppIndicator:icon-name.
 * @attention_icon_name: The name of the attention icon to use.  Maps to AppIndicator:attention-icon-name.
 * @menu: The menu for this indicator.  Maps to AppIndicator:menu
 * @watcher_proxy: The proxy connection to the watcher we're connected to.  If we're not connected to one this will be %NULL.
 *
 * All of the private data in an instance of an application indicator.
 *
 */
typedef struct {
    /*< Private >*/
    /* Properties */
    gchar                *id;
    gchar                *clean_id;
    AppIndicatorCategory  category;
    AppIndicatorStatus    status;
    gchar                *icon_name;
    gchar                *absolute_icon_name;
    gchar                *attention_icon_name;
    gchar                *absolute_attention_icon_name;
    gchar                *icon_theme_path;
    gchar                *absolute_icon_theme_path;
    DbusmenuServer       *menuservice;
    GtkWidget            *menu;
    GtkWidget            *sec_activate_target;
    gboolean              sec_activate_enabled;
    guint32               ordering_index;
    gchar *               title;
    gchar *               label;
    gchar *               label_guide;
    gchar *               accessible_desc;
    gchar *               att_accessible_desc;
    guint                 label_change_idle;

    GtkStatusIcon *       status_icon;
    gint                  fallback_timer;

    /* Fun stuff */
    GDBusConnection      *connection;
    guint                 dbus_registration;
    gchar *               path;

    /* StatusNotifierWatcher */
    GDBusProxy           *watcher_proxy;
    guint                 watcher_id;

    /* Might be used */
    IndicatorDesktopShortcuts * shorties;
} AppIndicatorPrivate;

/* Signals Stuff */
enum {
    NEW_ICON,
    NEW_ATTENTION_ICON,
    NEW_STATUS,
    NEW_LABEL,
    CONNECTION_CHANGED,
    NEW_ICON_THEME_PATH,
    SCROLL_EVENT,
    LAST_SIGNAL
};

static guint signals[LAST_SIGNAL] = { 0 };

/* Enum for the properties so that they can be quickly
   found and looked up. */
enum {
    PROP_0,
    PROP_ID,
    PROP_CATEGORY,
    PROP_STATUS,
    PROP_ICON_NAME,
    PROP_ICON_DESC,
    PROP_ATTENTION_ICON_NAME,
    PROP_ATTENTION_ICON_DESC,
    PROP_ICON_THEME_PATH,
    PROP_CONNECTED,
    PROP_LABEL,
    PROP_LABEL_GUIDE,
    PROP_ORDERING_INDEX,
    PROP_DBUS_MENU_SERVER,
    PROP_TITLE,
    PROP_MENU
};

/* The strings so that they can be slowly looked up. */
#define PROP_ID_S                    "id"
#define PROP_CATEGORY_S              "category"
#define PROP_STATUS_S                "status"
#define PROP_ICON_NAME_S             "icon-name"
#define PROP_ICON_DESC_S             "icon-desc"
#define PROP_ATTENTION_ICON_NAME_S   "attention-icon-name"
#define PROP_ATTENTION_ICON_DESC_S   "attention-icon-desc"
#define PROP_ICON_THEME_PATH_S       "icon-theme-path"
#define PROP_CONNECTED_S             "connected"
#define PROP_LABEL_S                 "label"
#define PROP_LABEL_GUIDE_S           "label-guide"
#define PROP_ORDERING_INDEX_S        "ordering-index"
#define PROP_DBUS_MENU_SERVER_S      "dbus-menu-server"
#define PROP_TITLE_S                 "title"
#define PROP_MENU_S                 "menu"

/* Default Path */
#define DEFAULT_ITEM_PATH   "/org/ayatana/NotificationItem"

/* More constants */
#define DEFAULT_FALLBACK_TIMER  100 /* in milliseconds */

/* Globals */
static GDBusNodeInfo *            item_node_info = NULL;
static GDBusInterfaceInfo *       item_interface_info = NULL;
static GDBusNodeInfo *            watcher_node_info = NULL;
static GDBusInterfaceInfo *       watcher_interface_info = NULL;

/* Boiler plate */
static void app_indicator_class_init (AppIndicatorClass *klass);
static void app_indicator_init       (AppIndicator *self);
static void app_indicator_dispose    (GObject *object);
static void app_indicator_finalize   (GObject *object);
/* Property functions */
static void app_indicator_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec);
static void app_indicator_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec);
/* Other stuff */
static void signal_label_change (AppIndicator * self);
static void check_connect (AppIndicator * self);
static void register_service_cb (GObject * obj, GAsyncResult * res, gpointer user_data);
static void start_fallback_timer (AppIndicator * self, gboolean disable_timeout);
static gboolean fallback_timer_expire (gpointer data);
static GtkStatusIcon * fallback (AppIndicator * self);
static void status_icon_status_wrapper (AppIndicator * self, const gchar * status, gpointer data);
static gboolean scroll_event_wrapper(GtkWidget *status_icon, GdkEventScroll *event, gpointer user_data);
static gboolean middle_click_wrapper(GtkWidget *status_icon, GdkEventButton *event, gpointer user_data);
static void status_icon_changes (AppIndicator * self, gpointer data);
static void status_icon_activate (GtkStatusIcon * icon, gpointer data);
static void status_icon_menu_activate (GtkStatusIcon *status_icon, guint button, guint activate_time, gpointer user_data);
static void unfallback (AppIndicator * self, GtkStatusIcon * status_icon);
static gchar * append_panel_icon_suffix (const gchar * icon_name);
static gchar * get_real_theme_path (AppIndicator * self);
static gchar * append_snap_prefix (const gchar * path);
static void theme_changed_cb (GtkIconTheme * theme, gpointer user_data);
static void sec_activate_target_parent_changed(GtkWidget *menuitem, GtkWidget *old_parent, gpointer   user_data);
static GVariant * bus_get_prop (GDBusConnection * connection, const gchar * sender, const gchar * path, const gchar * interface, const gchar * property, GError ** error, gpointer user_data);
static void bus_method_call (GDBusConnection * connection, const gchar * sender, const gchar * path, const gchar * interface, const gchar * method, GVariant * params, GDBusMethodInvocation * invocation, gpointer user_data);
static void bus_creation (GObject * obj, GAsyncResult * res, gpointer user_data);

static const GDBusInterfaceVTable item_interface_table = {
    .method_call = bus_method_call,
    .get_property = bus_get_prop,
    .set_property = NULL /* No properties that can be set */
};

/* GObject type */
G_DEFINE_TYPE_WITH_PRIVATE (AppIndicator, app_indicator, G_TYPE_OBJECT);

static void
watcher_ready_cb (GObject      *source_object,
                  GAsyncResult *res,
                  gpointer      user_data)
{
    AppIndicator *self = APP_INDICATOR(user_data);
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);

    GError *error = NULL;

    priv->watcher_proxy = g_dbus_proxy_new_finish (res, &error);

    if (error) {
        start_fallback_timer (self, FALSE);
        g_object_unref (self);

        g_error_free (error);
        return;
    }

    check_connect (self);
    g_object_unref (self);
}

static void
name_appeared_handler (GDBusConnection *connection,
                       const gchar     *name,
                       const gchar     *name_owner,
                       gpointer         user_data)
{
    AppIndicator *self = APP_INDICATOR(user_data);
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);

    g_dbus_proxy_new (priv->connection,
                      G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES |
                      G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS,
                      watcher_interface_info,
                      NOTIFICATION_WATCHER_DBUS_ADDR,
                      NOTIFICATION_WATCHER_DBUS_OBJ,
                      NOTIFICATION_WATCHER_DBUS_IFACE,
                      NULL,
                      (GAsyncReadyCallback) watcher_ready_cb,
                      (AppIndicator*)g_object_ref (self));
}

static void
name_vanished_handler (GDBusConnection *connection,
                       const gchar     *name,
                       gpointer         user_data)
{
    AppIndicator *self = APP_INDICATOR(user_data);
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);

    g_clear_object (&priv->watcher_proxy);

    /* Emit the AppIndicator::connection-changed signal*/
    g_signal_emit (self, signals[CONNECTION_CHANGED], 0, FALSE);

    start_fallback_timer (self, FALSE);
}

static void
app_indicator_class_init (AppIndicatorClass *klass)
{
    GObjectClass *object_class = G_OBJECT_CLASS (klass);

    /* Clean up */
    object_class->dispose = app_indicator_dispose;
    object_class->finalize = app_indicator_finalize;

    /* Property funcs */
    object_class->set_property = app_indicator_set_property;
    object_class->get_property = app_indicator_get_property;

    /* Our own funcs */
    klass->fallback = fallback;
    klass->unfallback = unfallback;

    /* Properties */

    /**
     * AppIndicator:id:
     *
     * The ID for this indicator, which should be unique, but used consistently
     * by this program and its indicator.
     */
    g_object_class_install_property (object_class,
                                         PROP_ID,
                                         g_param_spec_string(PROP_ID_S,
                                                             "The ID for this indicator",
                                                             "An ID that should be unique, but used consistently by this program and its indicator.",
                                                             NULL,
                                                             G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY));

    /**
     * AppIndicator:category:
     *
     * The type of indicator that this represents.  Please don't use 'Other'.
     * Defaults to 'ApplicationStatus'.
     */
    g_object_class_install_property (object_class,
                                         PROP_CATEGORY,
                                         g_param_spec_string (PROP_CATEGORY_S,
                                                              "Indicator Category",
                                                              "The type of indicator that this represents.  Please don't use 'other'. Defaults to 'ApplicationStatus'.",
                                                              NULL,
                                                              G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY));

    /**
     * AppIndicator:status:
     *
     * Whether the indicator is shown or requests attention. Can be one of
     * 'Passive' (the indicator should not be shown), 'Active' (the indicator
     * should be shown in its default state), and 'Attention' (the indicator
     * should now show it's attention icon). Defaults to 'Passive'.
     */
    g_object_class_install_property (object_class,
                                         PROP_STATUS,
                                         g_param_spec_string (PROP_STATUS_S,
                                                              "Indicator Status",
                                                              "Whether the indicator is shown or requests attention. Can be one of 'Passive' (the indicator should not be shown), 'Active' (the indicator should be shown in its default state), and 'Attention' (the indicator should now show it's attention icon). Defaults to 'Passive'.",
                                                              NULL,
                                                              G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));

    /**
     * AppIndicator:icon-name:
     *
     * The name of the regular icon that is shown for the indicator.
     */
    g_object_class_install_property(object_class,
                                    PROP_ICON_NAME,
                                    g_param_spec_string (PROP_ICON_NAME_S,
                                                         "An icon for the indicator",
                                                         "The default icon that is shown for the indicator.",
                                                         NULL,
                                                         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
    /**
     * AppIndicator:icon-desc:
     *
     * The description of the regular icon that is shown for the indicator.
     */
    g_object_class_install_property(object_class,
                                    PROP_ICON_DESC,
                                    g_param_spec_string (PROP_ICON_DESC_S,
                                                         "A description of the icon for the indicator",
                                                         "A description of the default icon that is shown for the indicator.",
                                                         NULL,
                                                         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));

    /**
     * AppIndicator:attention-icon-name:
     *
     * If the indicator sets it's status to %APP_INDICATOR_STATUS_ATTENTION
     * then this icon is shown.
     */
    g_object_class_install_property (object_class,
                                         PROP_ATTENTION_ICON_NAME,
                                         g_param_spec_string (PROP_ATTENTION_ICON_NAME_S,
                                                              "An icon to show when the indicator request attention.",
                                                              "If the indicator sets it's status to 'attention' then this icon is shown.",
                                                              NULL,
                                                              G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
    /**
     * AppIndicator:attention-icon-desc:
     *
     * If the indicator sets it's status to %APP_INDICATOR_STATUS_ATTENTION
     * then this textual description of the icon shown.
     */
    g_object_class_install_property (object_class,
                                     PROP_ATTENTION_ICON_DESC,
                                     g_param_spec_string (PROP_ATTENTION_ICON_DESC_S,
                                                          "A description of the icon to show when the indicator request attention.",
                                                          "When the indicator is an attention mode this should describe the icon shown",
                                                          NULL,
                                                          G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
    /**
     * AppIndicator:icon-theme-path:
     *
     * An additional place to look for icon names that may be installed by the
     * application.
     */
    g_object_class_install_property(object_class,
                                    PROP_ICON_THEME_PATH,
                                    g_param_spec_string (PROP_ICON_THEME_PATH_S,
                                                             "An additional path for custom icons.",
                                                             "An additional place to look for icon names that may be installed by the application.",
                                                             NULL,
                                                             G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT));

    /**
     * AppIndicator:connected:
     *
     * Pretty simple, %TRUE if we have a reasonable expectation of being
     * displayed through this object. You should hide your TrayIcon if so.
     */
    g_object_class_install_property (object_class,
                                         PROP_CONNECTED,
                                         g_param_spec_boolean (PROP_CONNECTED_S,
                                                               "Whether we're conneced to a watcher",
                                                               "Pretty simple, true if we have a reasonable expectation of being displayed through this object.  You should hide your TrayIcon if so.",
                                                               FALSE,
                                                               G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
    /**
     * AppIndicator:label:
     *
     * 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.
     */
    g_object_class_install_property(object_class,
                                    PROP_LABEL,
                                    g_param_spec_string (PROP_LABEL_S,
                                                         "A label next to the icon",
                                                         "A label to provide dynamic information.",
                                                         NULL,
                                                         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
    /**
     * AppIndicator:label-guide:
     *
     * 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.
     */
    g_object_class_install_property(object_class,
                                    PROP_LABEL_GUIDE,
                                    g_param_spec_string (PROP_LABEL_GUIDE_S,
                                                         "A string to size the space available for the label.",
                                                         "To ensure that the label does not cause the panel to 'jiggle' this string should provide information on how much space it could take.",
                                                         NULL,
                                                         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
    /**
     * AppIndicator:ordering-index:
     *
     * 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.
     */
    g_object_class_install_property(object_class,
                                    PROP_ORDERING_INDEX,
                                    g_param_spec_uint (PROP_ORDERING_INDEX_S,
                                                       "The location that this app indicator should be in the list.",
                                                       "A way to override the default ordering of the applications by providing a very specific idea of where this entry should be placed.",
                                                       0, G_MAXUINT32, 0,
                                                       G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));

    /**
     * AppIndicator:dbus-menu-server:
     *
     * A way to get the internal dbusmenu server if it is available.
     * This should only be used for testing.
     */
    g_object_class_install_property(object_class,
                                    PROP_DBUS_MENU_SERVER,
                                    g_param_spec_object (PROP_DBUS_MENU_SERVER_S,
                                                         "The internal DBusmenu Server",
                                                         "DBusmenu server which is available for testing the application indicators.",
                                                         DBUSMENU_TYPE_SERVER,
                                                         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
    /**
     * AppIndicator:title:
     *
     * 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.
     */
    g_object_class_install_property(object_class,
                                    PROP_TITLE,
                                    g_param_spec_string (PROP_TITLE_S,
                                                         "Title of the application indicator",
                                                         "A human readable way to refer to this application indicator in the UI.",
                                                         NULL,
                                                         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));

    /**
     * AppIndicator:menu:
     *
     * The menu that should be shown when the Application Indicator
     * is clicked on in the panel.
     */
    g_object_class_install_property(object_class,
                                    PROP_MENU,
                                    g_param_spec_string (PROP_MENU_S,
                                                         "The menu of the application indicator",
                                                         "The menu that should be shown when the Application Indicator is clicked on in the panel.",
                                                         NULL,
                                                         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));

    /* Signals */

    /**
     * AppIndicator::new-icon:
     * @arg0: The #AppIndicator object
     *
     * when #AppIndicator:icon-name is changed
     */
    signals[NEW_ICON] = g_signal_new (APP_INDICATOR_SIGNAL_NEW_ICON,
                                      G_TYPE_FROM_CLASS(klass),
                                      G_SIGNAL_RUN_LAST,
                                      G_STRUCT_OFFSET (AppIndicatorClass, new_icon),
                                      NULL, NULL,
                                      g_cclosure_marshal_VOID__VOID,
                                      G_TYPE_NONE, 0);

    /**
     * AppIndicator::new-attention-icon:
     * @arg0: The #AppIndicator object
     *
     * Emitted when #AppIndicator:attention-icon-name is changed
     */
    signals[NEW_ATTENTION_ICON] = g_signal_new (APP_INDICATOR_SIGNAL_NEW_ATTENTION_ICON,
                                                G_TYPE_FROM_CLASS(klass),
                                                G_SIGNAL_RUN_LAST,
                                                G_STRUCT_OFFSET (AppIndicatorClass, new_attention_icon),
                                                NULL, NULL,
                                                g_cclosure_marshal_VOID__VOID,
                                                G_TYPE_NONE, 0);

    /**
     * AppIndicator::new-status:
     * @arg0: The #AppIndicator object
     * @arg1: The string value of the #AppIndicatorStatus enum.
     *
     * Emitted when #AppIndicator:status is changed
     */
    signals[NEW_STATUS] = g_signal_new (APP_INDICATOR_SIGNAL_NEW_STATUS,
                                        G_TYPE_FROM_CLASS(klass),
                                        G_SIGNAL_RUN_LAST,
                                        G_STRUCT_OFFSET (AppIndicatorClass, new_status),
                                        NULL, NULL,
                                        g_cclosure_marshal_VOID__STRING,
                                        G_TYPE_NONE, 1,
                                            G_TYPE_STRING);

    /**
     * AppIndicator::new-label:
     * @arg0: The #AppIndicator object
     * @arg1: The string for the label
     * @arg2: The string for the guide
     *
     * Emitted when either #AppIndicator:label or #AppIndicator:label-guide are
     * changed.
    */
    signals[NEW_LABEL] = g_signal_new (APP_INDICATOR_SIGNAL_NEW_LABEL,
                                        G_TYPE_FROM_CLASS(klass),
                                        G_SIGNAL_RUN_LAST,
                                        G_STRUCT_OFFSET (AppIndicatorClass, new_label),
                                        NULL, NULL,
                                        _application_service_marshal_VOID__STRING_STRING,
                                        G_TYPE_NONE, 2, G_TYPE_STRING, G_TYPE_STRING);

    /**
     * AppIndicator::connection-changed:
     * @arg0: The #AppIndicator object
     * @arg1: Whether we're connected or not
     *
     * Signaled when we connect to a watcher, or when it drops away.
     */
    signals[CONNECTION_CHANGED] = g_signal_new (APP_INDICATOR_SIGNAL_CONNECTION_CHANGED,
                                                G_TYPE_FROM_CLASS(klass),
                                                G_SIGNAL_RUN_LAST,
                                                G_STRUCT_OFFSET (AppIndicatorClass, connection_changed),
                                                NULL, NULL,
                                                g_cclosure_marshal_VOID__BOOLEAN,
                                                G_TYPE_NONE, 1, G_TYPE_BOOLEAN);

    /**
     * AppIndicator::new-icon-theme-path:
     * @arg0: The #AppIndicator object
     * @arg1: The icon theme path
     *
     * Signaled when there is a new icon set for the
     * object.
     */
    signals[NEW_ICON_THEME_PATH] = g_signal_new (APP_INDICATOR_SIGNAL_NEW_ICON_THEME_PATH,
                                      G_TYPE_FROM_CLASS(klass),
                                      G_SIGNAL_RUN_LAST,
                                      G_STRUCT_OFFSET (AppIndicatorClass, new_icon_theme_path),
                                      NULL, NULL,
                                      g_cclosure_marshal_VOID__STRING,
                                      G_TYPE_NONE, 1, G_TYPE_STRING);

    /**
     * AppIndicator::scroll-event:
     * @arg0: The #AppIndicator object
     * @arg1: How many steps the scroll wheel has taken
     * @arg2: (type Gdk.ScrollDirection): Which direction the wheel went in
     *
     * Signaled when the #AppIndicator receives a scroll event.
     */
    signals[SCROLL_EVENT] = g_signal_new (APP_INDICATOR_SIGNAL_SCROLL_EVENT,
                                      G_TYPE_FROM_CLASS(klass),
                                      G_SIGNAL_RUN_LAST,
                                      G_STRUCT_OFFSET (AppIndicatorClass, scroll_event),
                                      NULL, NULL,
                                      _application_service_marshal_VOID__INT_UINT,
                                      G_TYPE_NONE, 2, G_TYPE_INT, GDK_TYPE_SCROLL_DIRECTION);

    /* DBus interfaces */
    if (item_node_info == NULL) {
        GError * error = NULL;

        item_node_info = g_dbus_node_info_new_for_xml(_notification_item, &error);
        if (error != NULL) {
            g_error("Unable to parse Notification Item DBus interface: %s", error->message);
            g_error_free(error);
        }
    }

    if (item_interface_info == NULL && item_node_info != NULL) {
        item_interface_info = g_dbus_node_info_lookup_interface(item_node_info, NOTIFICATION_ITEM_DBUS_IFACE);

        if (item_interface_info == NULL) {
            g_error("Unable to find interface '" NOTIFICATION_ITEM_DBUS_IFACE "'");
        }
    }

    if (watcher_node_info == NULL) {
        GError * error = NULL;

        watcher_node_info = g_dbus_node_info_new_for_xml(_notification_watcher, &error);
        if (error != NULL) {
            g_error("Unable to parse Notification Item DBus interface: %s", error->message);
            g_error_free(error);
        }
    }

    if (watcher_interface_info == NULL && watcher_node_info != NULL) {
        watcher_interface_info = g_dbus_node_info_lookup_interface(watcher_node_info, NOTIFICATION_WATCHER_DBUS_IFACE);

        if (watcher_interface_info == NULL) {
            g_error("Unable to find interface '" NOTIFICATION_WATCHER_DBUS_IFACE "'");
        }
    }

    return;
}

static void
app_indicator_init (AppIndicator *self)
{
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    priv->id = NULL;
    priv->clean_id = NULL;
    priv->category = APP_INDICATOR_CATEGORY_OTHER;
    priv->status = APP_INDICATOR_STATUS_PASSIVE;
    priv->icon_name = NULL;
    priv->attention_icon_name = NULL;
    priv->icon_theme_path = NULL;
    priv->absolute_icon_theme_path = get_real_theme_path (self);
    priv->menu = NULL;
    priv->menuservice = NULL;
    priv->ordering_index = 0;
    priv->title = NULL;
    priv->label = NULL;
    priv->label_guide = NULL;
    priv->label_change_idle = 0;

    priv->connection = NULL;
    priv->dbus_registration = 0;
    priv->path = NULL;

    priv->status_icon = NULL;
    priv->fallback_timer = 0;

    priv->shorties = NULL;

    priv->sec_activate_target = NULL;
    priv->sec_activate_enabled = FALSE;

    priv->watcher_proxy = NULL;
    priv->watcher_id = g_bus_watch_name (G_BUS_TYPE_SESSION,
                                         NOTIFICATION_WATCHER_DBUS_ADDR,
                                         G_BUS_NAME_WATCHER_FLAGS_NONE,
                                         (GBusNameAppearedCallback) name_appeared_handler,
                                         (GBusNameVanishedCallback) name_vanished_handler,
                                         self, NULL);

    /* Start getting the session bus */
    g_object_ref(self); /* ref for the bus creation callback */
    g_bus_get(G_BUS_TYPE_SESSION, NULL, bus_creation, self);

    g_signal_connect(G_OBJECT(gtk_icon_theme_get_default()),
        "changed", G_CALLBACK(theme_changed_cb), self);

    return;
}

/* Free all objects, make sure that all the dbus
   signals are sent out before we shut this down. */
static void
app_indicator_dispose (GObject *object)
{
    AppIndicator *self = APP_INDICATOR (object);
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);

    if (priv->shorties != NULL) {
        g_object_unref(G_OBJECT(priv->shorties));
        priv->shorties = NULL;
    }

    if (priv->status != APP_INDICATOR_STATUS_PASSIVE) {
        app_indicator_set_status(self, APP_INDICATOR_STATUS_PASSIVE);
    }

    if (priv->status_icon != NULL) {
        AppIndicatorClass * class = APP_INDICATOR_GET_CLASS(object);
        if (class->unfallback != NULL) {
            class->unfallback(self, priv->status_icon);
        }
        priv->status_icon = NULL;
    }

    if (priv->fallback_timer != 0) {
        g_source_remove(priv->fallback_timer);
        priv->fallback_timer = 0;
    }

    if (priv->label_change_idle != 0) {
        g_source_remove(priv->label_change_idle);
        priv->label_change_idle = 0;
    }

    if (priv->menu != NULL) {
        g_object_unref(G_OBJECT(priv->menu));
        priv->menu = NULL;
    }

    if (priv->menuservice != NULL) {
        g_object_unref (priv->menuservice);
    }

    if (priv->watcher_id != 0) {
        g_bus_unwatch_name (priv->watcher_id);
        priv->watcher_id = 0;
    }

    if (priv->watcher_proxy != NULL) {
        g_object_unref(G_OBJECT(priv->watcher_proxy));
        priv->watcher_proxy = NULL;

        /* Emit the AppIndicator::connection-changed signal*/
        g_signal_emit (self, signals[CONNECTION_CHANGED], 0, FALSE);
    }

    if (priv->dbus_registration != 0) {
        g_dbus_connection_unregister_object(priv->connection, priv->dbus_registration);
        priv->dbus_registration = 0;
    }

    if (priv->connection != NULL) {
        g_object_unref(G_OBJECT(priv->connection));
        priv->connection = NULL;
    }

    if (priv->sec_activate_target != NULL) {
        g_signal_handlers_disconnect_by_func (priv->sec_activate_target, sec_activate_target_parent_changed, self);
        g_object_unref(G_OBJECT(priv->sec_activate_target));
        priv->sec_activate_target = NULL;
    }

    g_signal_handlers_disconnect_by_func(gtk_icon_theme_get_default(), G_CALLBACK(theme_changed_cb), self);

    G_OBJECT_CLASS (app_indicator_parent_class)->dispose (object);
    return;
}

/* Free all of the memory that we could be using in
   the object. */
static void
app_indicator_finalize (GObject *object)
{
    AppIndicator * self = APP_INDICATOR(object);
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);

    if (priv->status != APP_INDICATOR_STATUS_PASSIVE) {
        g_warning("Finalizing Application Status with the status set to: %d", priv->status);
    }

    if (priv->id != NULL) {
        g_free(priv->id);
        priv->id = NULL;
    }

    if (priv->clean_id != NULL) {
        g_free(priv->clean_id);
        priv->clean_id = NULL;
    }

    if (priv->icon_name != NULL) {
        g_free(priv->icon_name);
        priv->icon_name = NULL;
    }

    if (priv->absolute_icon_name != NULL) {
        g_free(priv->absolute_icon_name);
        priv->absolute_icon_name = NULL;
    }

    if (priv->attention_icon_name != NULL) {
        g_free(priv->attention_icon_name);
        priv->attention_icon_name = NULL;
    }

    if (priv->absolute_attention_icon_name != NULL) {
        g_free(priv->absolute_attention_icon_name);
        priv->absolute_attention_icon_name = NULL;
    }

    if (priv->icon_theme_path != NULL) {
        g_free(priv->icon_theme_path);
        priv->icon_theme_path = NULL;
    }

    if (priv->absolute_icon_theme_path != NULL) {
        g_free(priv->absolute_icon_theme_path);
        priv->absolute_icon_theme_path = NULL;
    }

    if (priv->title != NULL) {
        g_free(priv->title);
        priv->title = NULL;
    }

    if (priv->label != NULL) {
        g_free(priv->label);
        priv->label = NULL;
    }

    if (priv->label_guide != NULL) {
        g_free(priv->label_guide);
        priv->label_guide = NULL;
    }

    if (priv->accessible_desc != NULL) {
        g_free(priv->accessible_desc);
        priv->accessible_desc = NULL;
    }

    if (priv->att_accessible_desc != NULL) {
        g_free(priv->att_accessible_desc);
        priv->att_accessible_desc = NULL;
    }

    if (priv->path != NULL) {
        g_free(priv->path);
        priv->path = NULL;
    }

    G_OBJECT_CLASS (app_indicator_parent_class)->finalize (object);
    return;
}

#define WARN_BAD_TYPE(prop, value)  g_warning("Can not work with property '%s' with value of type '%s'.", prop, G_VALUE_TYPE_NAME(value))

/* Set some properties */
static void
app_indicator_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec)
{
        AppIndicator *self = APP_INDICATOR (object);
        AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);
        GEnumValue *enum_val;

        switch (prop_id) {
        case PROP_ID:
          if (priv->id != NULL) {
            g_warning ("Resetting ID value when I already had a value of: %s", priv->id);
            break;
          }

          priv->id = g_strdup (g_value_get_string (value));

          priv->clean_id = g_strdup(priv->id);
          gchar * cleaner;
          for (cleaner = priv->clean_id; *cleaner != '\0'; cleaner++) {
            if (!g_ascii_isalnum(*cleaner)) {
              *cleaner = '_';
            }
          }

          check_connect (self);
          break;

        case PROP_CATEGORY:
          enum_val = g_enum_get_value_by_nick ((GEnumClass *) g_type_class_ref (APP_INDICATOR_TYPE_INDICATOR_CATEGORY),
                                               g_value_get_string (value));

          if (priv->category != enum_val->value)
            {
              priv->category = enum_val->value;
            }

          break;

        case PROP_STATUS:
          enum_val = g_enum_get_value_by_nick ((GEnumClass *) g_type_class_ref (APP_INDICATOR_TYPE_INDICATOR_STATUS),
                                               g_value_get_string (value));

          app_indicator_set_status (APP_INDICATOR (object),
                                    enum_val->value);
          break;

        case PROP_ICON_NAME:
          app_indicator_set_icon_full (APP_INDICATOR (object),
                                       g_value_get_string (value),
                                       priv->accessible_desc);
          check_connect (self);
          break;

        case PROP_ICON_DESC:
          app_indicator_set_icon_full (APP_INDICATOR (object),
                                       priv->icon_name,
                                       g_value_get_string (value));
          check_connect (self);
          break;

        case PROP_ATTENTION_ICON_NAME:
          app_indicator_set_attention_icon_full (APP_INDICATOR (object),
                                                 g_value_get_string (value),
                                                 priv->att_accessible_desc);
          break;

        case PROP_ATTENTION_ICON_DESC:
          app_indicator_set_attention_icon_full (APP_INDICATOR (object),
                                                 priv->attention_icon_name,
                                                 g_value_get_string (value));
          break;

        case PROP_ICON_THEME_PATH:
          app_indicator_set_icon_theme_path (APP_INDICATOR (object),
                                            g_value_get_string (value));
          check_connect (self);
          break;

        case PROP_LABEL: {
          gchar * oldlabel = priv->label;
          priv->label = g_value_dup_string(value);

          if (priv->label != NULL && priv->label[0] == '\0') {
            g_free(priv->label);
            priv->label = NULL;
          }

          if (g_strcmp0(oldlabel, priv->label) != 0) {
            signal_label_change(APP_INDICATOR(object));
          }

          if (oldlabel != NULL) {
            g_free(oldlabel);
          }
          break;
        }
        case PROP_TITLE: {
          gchar * oldtitle = priv->title;
          priv->title = g_value_dup_string(value);

          if (priv->title != NULL && priv->title[0] == '\0') {
            g_free(priv->title);
            priv->title = NULL;
          }

          if (g_strcmp0(oldtitle, priv->title) != 0 && priv->connection != NULL) {
            GError * error = NULL;

            g_dbus_connection_emit_signal(priv->connection,
                                          NULL,
                                          priv->path,
                                          NOTIFICATION_ITEM_DBUS_IFACE,
                                          "NewTitle",
                                          NULL,
                                          &error);

            if (error != NULL) {
                g_warning("Unable to send signal for NewTitle: %s", error->message);
                g_error_free(error);
            }
          }

          if (oldtitle != NULL) {
            g_free(oldtitle);
          }

          if (priv->status_icon != NULL) {
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
            gtk_status_icon_set_title(priv->status_icon, priv->title ? priv->title : "");
G_GNUC_END_IGNORE_DEPRECATIONS
          }
          break;
        }
        case PROP_LABEL_GUIDE: {
          gchar * oldguide = priv->label_guide;
          priv->label_guide = g_value_dup_string(value);

          if (priv->label_guide != NULL && priv->label_guide[0] == '\0') {
            g_free(priv->label_guide);
            priv->label_guide = NULL;
          }

          if (g_strcmp0(oldguide, priv->label_guide) != 0) {
            signal_label_change(APP_INDICATOR(object));
          }

          if (priv->label_guide != NULL && priv->label_guide[0] == '\0') {
            g_free(priv->label_guide);
            priv->label_guide = NULL;
          }

          if (oldguide != NULL) {
            g_free(oldguide);
          }
          break;
        }
        case PROP_ORDERING_INDEX:
          priv->ordering_index = g_value_get_uint(value);
          break;

        case PROP_DBUS_MENU_SERVER:
            g_clear_object (&priv->menuservice);
            priv->menuservice = DBUSMENU_SERVER (g_value_dup_object(value));
            break;

        case PROP_MENU:
            g_clear_object (&priv->menu);
            priv->menu = GTK_WIDGET (g_value_dup_object(value));
            break;

        default:
          G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
          break;
        }

    return;
}

/* Function to fill our value with the property it's requesting. */
static void
app_indicator_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec)
{
        AppIndicator *self = APP_INDICATOR (object);
        AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);
        GEnumValue *enum_value;

        switch (prop_id) {
        case PROP_ID:
          g_value_set_string (value, priv->id);
          break;

        case PROP_CATEGORY:
          enum_value = g_enum_get_value ((GEnumClass *) g_type_class_ref (APP_INDICATOR_TYPE_INDICATOR_CATEGORY), priv->category);
          g_value_set_string (value, enum_value->value_nick);
          break;

        case PROP_STATUS:
          enum_value = g_enum_get_value ((GEnumClass *) g_type_class_ref (APP_INDICATOR_TYPE_INDICATOR_STATUS), priv->status);
          g_value_set_string (value, enum_value->value_nick);
          break;

        case PROP_ICON_NAME:
          g_value_set_string (value, priv->icon_name);
          break;

        case PROP_ICON_DESC:
          g_value_set_string (value, priv->accessible_desc);
          break;

        case PROP_ATTENTION_ICON_NAME:
          g_value_set_string (value, priv->attention_icon_name);
          break;

        case PROP_ATTENTION_ICON_DESC:
          g_value_set_string (value, priv->att_accessible_desc);
          break;

        case PROP_ICON_THEME_PATH:
          g_value_set_string (value, priv->icon_theme_path);
          break;

        case PROP_CONNECTED: {
            gboolean connected = FALSE;

            if (priv->watcher_proxy != NULL) {
                gchar * name = g_dbus_proxy_get_name_owner(priv->watcher_proxy);
                if (name != NULL) {
                    connected = TRUE;
                    g_free(name);
                }
            }

            g_value_set_boolean (value, connected);
            break;
        }

        case PROP_LABEL:
          g_value_set_string (value, priv->label);
          break;

        case PROP_LABEL_GUIDE:
          g_value_set_string (value, priv->label_guide);
          break;

        case PROP_ORDERING_INDEX:
          g_value_set_uint(value, priv->ordering_index);
          break;

        case PROP_DBUS_MENU_SERVER:
            g_value_set_object(value, priv->menuservice);
            break;

        case PROP_TITLE:
            g_value_set_string(value, priv->title);
            break;

        case PROP_MENU:
            g_value_set_object(value, priv->menu);
            break;

        default:
          G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
          break;
        }

    return;
}

/* DBus bus has been created, well maybe, but we got a call
   back about it so we need to check into it. */
static void
bus_creation (GObject * obj, GAsyncResult * res, gpointer user_data)
{
    GError * error = NULL;

    GDBusConnection * connection = g_bus_get_finish(res, &error);
    if (error != NULL) {
        g_warning("Unable to get the session bus: %s", error->message);
        g_error_free(error);
        g_object_unref(G_OBJECT(user_data));
        return;
    }

    AppIndicator * app = APP_INDICATOR(user_data);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(app);
    priv->connection = connection;

    /* If the connection was blocking the exporting of the
       object this function will export everything. */
    check_connect(app);

    g_object_unref(G_OBJECT(app));

    return;
}

static void
bus_method_call (GDBusConnection * connection, const gchar * sender,
                 const gchar * path, const gchar * interface,
                 const gchar * method, GVariant * params,
                 GDBusMethodInvocation * invocation, gpointer user_data)
{
    g_return_if_fail(APP_IS_INDICATOR(user_data));

    AppIndicator * app = APP_INDICATOR(user_data);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(app);
    GVariant * retval = NULL;

    if (g_strcmp0(method, "Scroll") == 0) {
        GdkScrollDirection direction;
        gint delta;
        const gchar *orientation;

        g_variant_get(params, "(i&s)", &delta, &orientation);

        if (g_strcmp0(orientation, "horizontal") == 0) {
            direction = (delta >= 0) ? GDK_SCROLL_RIGHT : GDK_SCROLL_LEFT;
        } else if (g_strcmp0(orientation, "vertical") == 0) {
            direction = (delta >= 0) ? GDK_SCROLL_DOWN : GDK_SCROLL_UP;
        } else {
            g_dbus_method_invocation_return_value(invocation, retval);
            return;
        }

        delta = ABS(delta);
        g_signal_emit(app, signals[SCROLL_EVENT], 0, delta, direction);

    } else if (g_strcmp0(method, "SecondaryActivate") == 0 ||
               g_strcmp0(method, "XAyatanaSecondaryActivate") == 0) {
        GtkWidget *menuitem = priv->sec_activate_target;

        if (priv->sec_activate_enabled && menuitem &&
            gtk_widget_get_visible (menuitem) &&
            gtk_widget_get_sensitive (menuitem))
        {
            gtk_widget_activate (menuitem);
        }
    } else {
        g_warning("Calling method '%s' on the app-indicator and it's unknown", method);
    }

    g_dbus_method_invocation_return_value(invocation, retval);
}

/* DBus is asking for a property so we should figure out what it
   wants and try and deliver. */
static GVariant *
bus_get_prop (GDBusConnection * connection, const gchar * sender, const gchar * path, const gchar * interface, const gchar * property, GError ** error, gpointer user_data)
{
    g_return_val_if_fail(APP_IS_INDICATOR(user_data), NULL);
    AppIndicator * app = APP_INDICATOR(user_data);
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(app);

    if (g_strcmp0(property, "Id") == 0) {
        return g_variant_new_string(priv->id ? priv->id : "");
    } else if (g_strcmp0(property, "Category") == 0) {
        GEnumValue *enum_value;
        enum_value = g_enum_get_value ((GEnumClass *) g_type_class_ref (APP_INDICATOR_TYPE_INDICATOR_CATEGORY), priv->category);
        return g_variant_new_string(enum_value->value_nick ? enum_value->value_nick : "");
    } else if (g_strcmp0(property, "Status") == 0) {
        GEnumValue *enum_value;
        enum_value = g_enum_get_value ((GEnumClass *) g_type_class_ref (APP_INDICATOR_TYPE_INDICATOR_STATUS), priv->status);
        return g_variant_new_string(enum_value->value_nick ? enum_value->value_nick : "");
    } else if (g_strcmp0(property, "IconName") == 0) {
        if (priv->absolute_icon_name) {
            return g_variant_new_string(priv->absolute_icon_name);
        }
        return g_variant_new_string(priv->icon_name ? priv->icon_name : "");
    } else if (g_strcmp0(property, "AttentionIconName") == 0) {
        if (priv->absolute_attention_icon_name) {
            return g_variant_new_string(priv->absolute_attention_icon_name);
        }
        return g_variant_new_string(priv->attention_icon_name ? priv->attention_icon_name : "");
    } else if (g_strcmp0(property, "Title") == 0) {
        const gchar * output = NULL;
        if (priv->title == NULL) {
            const gchar * name = g_get_application_name();
            if (name != NULL) {
                output = name;
            } else {
                output = "";
            }
        } else {
            output = priv->title;
        }
        return g_variant_new_string(output);
    } else if (g_strcmp0(property, "IconThemePath") == 0) {
        if (priv->absolute_icon_theme_path) {
            return g_variant_new_string(priv->absolute_icon_theme_path);
        }
        return g_variant_new_string(priv->icon_theme_path ? priv->icon_theme_path : "");
    } else if (g_strcmp0(property, "Menu") == 0) {
        if (priv->menuservice != NULL) {
            GValue strval = { 0 };
            g_value_init(&strval, G_TYPE_STRING);
            g_object_get_property (G_OBJECT (priv->menuservice), DBUSMENU_SERVER_PROP_DBUS_OBJECT, &strval);
            GVariant * var = g_variant_new("o", g_value_get_string(&strval));
            g_value_unset(&strval);
            return var;
        } else {
            return g_variant_new("o", "/");
        }
    } else if (g_strcmp0(property, "XAyatanaLabel") == 0) {
        return g_variant_new_string(priv->label ? priv->label : "");
    } else if (g_strcmp0(property, "XAyatanaLabelGuide") == 0) {
        return g_variant_new_string(priv->label_guide ? priv->label_guide : "");
    } else if (g_strcmp0(property, "XAyatanaOrderingIndex") == 0) {
        return g_variant_new_uint32(priv->ordering_index);
    } else if (g_strcmp0(property, "IconAccessibleDesc") == 0) {
        return g_variant_new_string(priv->accessible_desc ? priv->accessible_desc : "");
    } else if (g_strcmp0(property, "AttentionAccessibleDesc") == 0) {
        return g_variant_new_string(priv->att_accessible_desc ? priv->att_accessible_desc : "");
    }

    *error = g_error_new(0, 0, "Unknown property: %s", property);
    return NULL;
}

/* Sends the label changed signal and resets the source ID */
static gboolean
signal_label_change_idle (gpointer user_data)
{
    AppIndicator * self = (AppIndicator *)user_data;
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);

    gchar * label = priv->label != NULL ? priv->label : "";
    gchar * guide = priv->label_guide != NULL ? priv->label_guide : "";

    g_signal_emit(G_OBJECT(self), signals[NEW_LABEL], 0,
                  label, guide);
    if (priv->dbus_registration != 0 && priv->connection != NULL) {
        GError * error = NULL;

        g_dbus_connection_emit_signal(priv->connection,
                                      NULL,
                                      priv->path,
                                      NOTIFICATION_ITEM_DBUS_IFACE,
                                      "XAyatanaNewLabel",
                                      g_variant_new("(ss)", label, guide),
                                      &error);

        if (error != NULL) {
            g_warning("Unable to send signal for NewIcon: %s", error->message);
            g_error_free(error);
        }
    }

    priv->label_change_idle = 0;

    return FALSE;
}

/* Sets up an idle function to send the label changed signal
   so that we don't send it too many times. */
static void
signal_label_change (AppIndicator * self)
{
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);

    /* don't set it twice */
    if (priv->label_change_idle != 0) {
        return;
    }

    priv->label_change_idle = g_idle_add(signal_label_change_idle, self);
    return;
}

/* This function is used to see if we have enough information to
   connect to things.  If we do, and we're not connected, it
   connects for us. */
static void
check_connect (AppIndicator *self)
{
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);

    /* Do we have a connection? */
    if (priv->connection == NULL) return;

    /* If we already have a proxy, let's see if it has someone
       implementing it.  If not, we can't do much more than to
       do nothing. */
    if (priv->watcher_proxy != NULL) {
        gchar * name = g_dbus_proxy_get_name_owner(priv->watcher_proxy);
        if (name == NULL) {
            return;
        }
        g_free(name);
    }

    /* Do we have enough information? */
    if (priv->menu == NULL) return;
    if (priv->icon_name == NULL) return;
    if (priv->id == NULL) return;

    if (priv->path == NULL) {
        priv->path = g_strdup_printf(DEFAULT_ITEM_PATH "/%s", priv->clean_id);
    }

    if (priv->dbus_registration == 0) {
        GError * error = NULL;
        priv->dbus_registration = g_dbus_connection_register_object(priv->connection,
                                                                    priv->path,
                                                                    item_interface_info,
                                                                    &item_interface_table,
                                                                    self,
                                                                    NULL,
                                                                    &error);
        if (error != NULL) {
            g_warning("Unable to register object on path '%s': %s", priv->path, error->message);
            g_error_free(error);
            return;
        }
    }

    /* NOTE: It's really important the order here.  We make sure to *publish*
       the object on the bus and *then* get the proxy.  The reason is that we
       want to ensure all the filters are setup before talking to the watcher
       and that's where the order is important. */

    if (priv->watcher_proxy == NULL)
        return;

    g_dbus_proxy_call (priv->watcher_proxy,
                       "RegisterStatusNotifierItem",
                       g_variant_new ("(s)", priv->path),
                       G_DBUS_CALL_FLAGS_NONE,
                       -1, NULL,
                       (GAsyncReadyCallback) register_service_cb,
                       (AppIndicator*)g_object_ref (self));
}

/* Responce from the DBus command to register a service
   with a NotificationWatcher. */
static void
register_service_cb (GObject * obj, GAsyncResult * res, gpointer user_data)
{
    GError * error = NULL;
    GVariant * returns = g_dbus_proxy_call_finish(G_DBUS_PROXY(obj), res, &error);

    /* We don't care about any return values */
    if (returns != NULL) {
        g_variant_unref(returns);
    }

    if (error != NULL) {
        /* They didn't respond, ewww.  Not sure what they could
           be doing */
        g_warning("Unable to connect to the Notification Watcher: %s", error->message);
        start_fallback_timer(APP_INDICATOR(user_data), TRUE);
        g_object_unref(G_OBJECT(user_data));
        return;
    }

    g_return_if_fail(APP_IS_INDICATOR(user_data));
    AppIndicator * app = APP_INDICATOR(user_data);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(app);

    /* Emit the AppIndicator::connection-changed signal*/
    g_signal_emit (app, signals[CONNECTION_CHANGED], 0, TRUE);

    if (priv->status_icon) {
        AppIndicatorClass * class = APP_INDICATOR_GET_CLASS(app);
        if (class->unfallback != NULL) {
            class->unfallback(app, priv->status_icon);
            priv->status_icon = NULL;
        }
    }

    g_object_unref(G_OBJECT(user_data));
    return;
}

/* A helper function to get the nick out of a given
   category enum value. */
static const gchar *
category_from_enum (AppIndicatorCategory category)
{
  GEnumValue *value;

  value = g_enum_get_value ((GEnumClass *)g_type_class_ref (APP_INDICATOR_TYPE_INDICATOR_CATEGORY), category);
  return value->value_nick;
}

/* A function that will start the fallback timer if it's not
   already started.  It sets up the DBus watcher to see if
   there is a change.  Also, provides an override mode for cases
   where it's unlikely that a timer will help anything. */
static void
start_fallback_timer (AppIndicator * self, gboolean disable_timeout)
{
    g_return_if_fail(APP_IS_INDICATOR(self));
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    if (priv->fallback_timer != 0) {
        /* The timer is set, let's just be happy with the one
           we've already got running */
        return;
    }

    if (priv->status_icon != NULL) {
        /* We're already fallen back.  Let's not do it again. */
        return;
    }

    if (disable_timeout) {
        fallback_timer_expire(self);
    } else {
        priv->fallback_timer = g_timeout_add(DEFAULT_FALLBACK_TIMER, fallback_timer_expire, self);
    }

    return;
}

/* A function that gets executed when we want to change the
   state of the fallback. */
static gboolean
fallback_timer_expire (gpointer data)
{
    g_return_val_if_fail(APP_IS_INDICATOR(data), FALSE);

        AppIndicator * app = APP_INDICATOR(data);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(app);
    AppIndicatorClass * class = APP_INDICATOR_GET_CLASS(data);

    if (priv->status_icon == NULL) {
        if (class->fallback != NULL) {
            priv->status_icon = class->fallback(APP_INDICATOR(data));
        }
    } else {
        if (class->unfallback != NULL) {
            class->unfallback(APP_INDICATOR(data), priv->status_icon);
            priv->status_icon = NULL;
        } else {
            g_warning("No 'unfallback' function but the 'fallback' function returned a non-NULL result.");
        }
    }

    priv->fallback_timer = 0;
    return FALSE;
}

/* emit a NEW_ICON signal in response for the theme change */
static void
theme_changed_cb (GtkIconTheme * theme, gpointer user_data)
{
    g_signal_emit (user_data, signals[NEW_ICON], 0);

    AppIndicator * self = (AppIndicator *)user_data;
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(self);

    if (priv->dbus_registration != 0 && priv->connection != NULL) {
        GError * error = NULL;

        g_dbus_connection_emit_signal(priv->connection,
                                      NULL,
                                      priv->path,
                                      NOTIFICATION_ITEM_DBUS_IFACE,
                                      "NewIcon",
                                      NULL,
                                      &error);

        if (error != NULL) {
            g_warning("Unable to send signal for NewIcon: %s", error->message);
            g_error_free(error);
        }
    }

    return;
}

/* Creates a StatusIcon that can be used when the application
   indicator area isn't available. */
static GtkStatusIcon *
fallback (AppIndicator * self)
{
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
    GtkStatusIcon * icon = gtk_status_icon_new();
    gtk_status_icon_set_name(icon, app_indicator_get_id(self));
G_GNUC_END_IGNORE_DEPRECATIONS
    const gchar * title = app_indicator_get_title(self);
    if (title != NULL) {
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
        gtk_status_icon_set_title(icon, title);
G_GNUC_END_IGNORE_DEPRECATIONS
    }

    g_signal_connect(G_OBJECT(self), APP_INDICATOR_SIGNAL_NEW_STATUS,
        G_CALLBACK(status_icon_status_wrapper), icon);
    g_signal_connect(G_OBJECT(self), APP_INDICATOR_SIGNAL_NEW_ICON,
        G_CALLBACK(status_icon_changes), icon);
    g_signal_connect(G_OBJECT(self), APP_INDICATOR_SIGNAL_NEW_ATTENTION_ICON,
        G_CALLBACK(status_icon_changes), icon);

    status_icon_changes(self, icon);

    g_signal_connect(G_OBJECT(icon), "activate", G_CALLBACK(status_icon_activate), self);
    g_signal_connect(G_OBJECT(icon), "popup-menu", G_CALLBACK(status_icon_menu_activate), self);
    g_signal_connect(G_OBJECT(icon), "scroll-event", G_CALLBACK(scroll_event_wrapper), self);
    g_signal_connect(G_OBJECT(icon), "button-release-event", G_CALLBACK(middle_click_wrapper), self);

    return icon;
}

/* A wrapper as the status update prototype is a little
   bit different, but we want to handle it the same. */
static void
status_icon_status_wrapper (AppIndicator * self, const gchar * status, gpointer data)
{
    return status_icon_changes(self, data);
}

/* A wrapper for redirecting the scroll events to the app-indicator from status
   icon widget. */
static gboolean
scroll_event_wrapper (GtkWidget *status_icon, GdkEventScroll *event, gpointer data)
{
    g_return_val_if_fail(APP_IS_INDICATOR(data), FALSE);
    AppIndicator * app = APP_INDICATOR(data);
    g_signal_emit(app, signals[SCROLL_EVENT], 0, 1, event->direction);

    return TRUE;
}

static gboolean
middle_click_wrapper (GtkWidget *status_icon, GdkEventButton *event, gpointer data)
{
    g_return_val_if_fail(APP_IS_INDICATOR(data), FALSE);
    AppIndicator * app = APP_INDICATOR(data);
    AppIndicatorPrivate *priv = app_indicator_get_instance_private(app);

    if (event->button == 2 && event->type == GDK_BUTTON_RELEASE) {
        GtkAllocation alloc;
        gint px = event->x;
        gint py = event->y;
        gtk_widget_get_allocation (status_icon, &alloc);
        GtkWidget *menuitem = priv->sec_activate_target;

        if (px >= 0 && px < alloc.width && py >= 0 && py < alloc.height &&
            priv->sec_activate_enabled && menuitem &&
            gtk_widget_get_visible (menuitem) &&
            gtk_widget_get_sensitive (menuitem))
        {
            gtk_widget_activate (menuitem);
            return TRUE;
        }
    }

    return FALSE;
}

/* This tracks changes to either the status or the icons
   that are associated with the app indicator */
static void
status_icon_changes (AppIndicator * self, gpointer data)
{
    GtkStatusIcon * icon = GTK_STATUS_ICON(data);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    /* add the icon_theme_path once if needed */
    GtkIconTheme *icon_theme = gtk_icon_theme_get_default();
    const gchar *theme_path = priv->absolute_icon_theme_path ?
                                priv->absolute_icon_theme_path :
                                priv->icon_theme_path;

    if (theme_path != NULL) {
        gchar **path;
        gint n_elements, i;
        gboolean found=FALSE;
        gtk_icon_theme_get_search_path(icon_theme, &path, &n_elements);
        if (path != NULL) {
            for (i=0; i< n_elements; i++) {
                if(g_strcmp0(path[i], theme_path) == 0) {
                    found=TRUE;
                    break;
                }
            }
            g_strfreev (path);
        }
        if(!found) {
            gtk_icon_theme_append_search_path(icon_theme, theme_path);
        }
    }

    const gchar * icon_name = NULL;
    switch (app_indicator_get_status(self)) {
    case APP_INDICATOR_STATUS_PASSIVE:
        /* hide first to avoid that the change is visible to the user */
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
        gtk_status_icon_set_visible(icon, FALSE);
G_GNUC_END_IGNORE_DEPRECATIONS
        icon_name = app_indicator_get_icon(self);
        break;
    case APP_INDICATOR_STATUS_ACTIVE:
        icon_name = app_indicator_get_icon(self);
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
        gtk_status_icon_set_visible(icon, TRUE);
G_GNUC_END_IGNORE_DEPRECATIONS
        break;
    case APP_INDICATOR_STATUS_ATTENTION:
        /* get the _attention_ icon here */
        icon_name = app_indicator_get_attention_icon(self);
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
        gtk_status_icon_set_visible(icon, TRUE);
G_GNUC_END_IGNORE_DEPRECATIONS
        break;
    };

    if (icon_name != NULL) {
        gchar *snapped_icon = append_snap_prefix(icon_name);

        if (g_file_test(icon_name, G_FILE_TEST_EXISTS)) {
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
            gtk_status_icon_set_from_file(icon, icon_name);
G_GNUC_END_IGNORE_DEPRECATIONS
        } else if (snapped_icon && g_file_test(snapped_icon, G_FILE_TEST_EXISTS)) {
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
            gtk_status_icon_set_from_file(icon, snapped_icon);
G_GNUC_END_IGNORE_DEPRECATIONS
        } else {
            gchar *longname = append_panel_icon_suffix(icon_name);

            if (longname != NULL && gtk_icon_theme_has_icon (icon_theme, longname)) {
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
                gtk_status_icon_set_from_icon_name(icon, longname);
G_GNUC_END_IGNORE_DEPRECATIONS
            } else {
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
                gtk_status_icon_set_from_icon_name(icon, icon_name);
G_GNUC_END_IGNORE_DEPRECATIONS
            }

            g_free(longname);
        }

        g_free(snapped_icon);
    }

    return;
}

/* Handles the activate action by the status icon by showing
   the menu in a popup. */
static void
status_icon_activate (GtkStatusIcon * icon, gpointer data)
{
    GtkMenu * menu = app_indicator_get_menu(APP_INDICATOR(data));
    if (menu == NULL)
        return;
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
    gtk_menu_popup(menu,
                   NULL, /* Parent Menu */
                   NULL, /* Parent item */
                   gtk_status_icon_position_menu,
                   icon,
                   1, /* Button */
                   gtk_get_current_event_time());
G_GNUC_END_IGNORE_DEPRECATIONS
    return;
}

/* Handles the right-click action by the status icon by showing
   the menu in a popup. */
static void
status_icon_menu_activate (GtkStatusIcon *status_icon, guint button, guint activate_time, gpointer user_data)
{
    status_icon_activate(status_icon, user_data);
}

/* Removes the status icon as the application indicator area
   is now up and running again. */
static void
unfallback (AppIndicator * self, GtkStatusIcon * status_icon)
{
    g_signal_handlers_disconnect_by_func(G_OBJECT(self), status_icon_status_wrapper, status_icon);
    g_signal_handlers_disconnect_by_func(G_OBJECT(self), status_icon_changes, status_icon);
    g_signal_handlers_disconnect_by_func(G_OBJECT(self), scroll_event_wrapper, status_icon);
    g_signal_handlers_disconnect_by_func(G_OBJECT(self), middle_click_wrapper, status_icon);
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
    gtk_status_icon_set_visible(status_icon, FALSE);
G_GNUC_END_IGNORE_DEPRECATIONS
    g_object_unref(G_OBJECT(status_icon));
    return;
}

/* A helper function that appends PANEL_ICON_SUFFIX to the given icon name
   if it's missing. */
static gchar *
append_panel_icon_suffix (const gchar *icon_name)
{
    gchar * long_name = NULL;

    if (!g_str_has_suffix (icon_name, PANEL_ICON_SUFFIX)) {
        long_name =
            g_strdup_printf("%s-%s", icon_name, PANEL_ICON_SUFFIX);
        } else {
            long_name = g_strdup (icon_name);
        }

    return long_name;
}

static gboolean
widget_is_menu_child(AppIndicator * self, GtkWidget *child)
{
    g_return_val_if_fail(APP_IS_INDICATOR(self), FALSE);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    if (!priv->menu) return FALSE;
    if (!child) return FALSE;

    GtkWidget *parent;

    while ((parent = gtk_widget_get_parent(child))) {
        if (parent == priv->menu)
            return TRUE;

        if (GTK_IS_MENU(parent))
            child = gtk_menu_get_attach_widget(GTK_MENU(parent));
        else
            child = parent;
    }

    return FALSE;
}

static void
sec_activate_target_parent_changed(GtkWidget *menuitem, GtkWidget *old_parent,
                                   gpointer data)
{
    g_return_if_fail(APP_IS_INDICATOR(data));
    AppIndicator *self = APP_INDICATOR(data);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);
    priv->sec_activate_enabled = widget_is_menu_child(self, menuitem);
}


/* ************************* */
/*    Public Functions       */
/* ************************* */

/**
 * app_indicator_new:
 * @id: The unique id of the indicator to create.
 * @icon_name: The icon name for this indicator
 * @category: The category of indicator.
 *
 * Creates a new #AppIndicator setting the properties:
 * #AppIndicator:id with @id, #AppIndicator:category with @category
 * and #AppIndicator:icon-name with @icon_name.
 *
 * Return value: A pointer to a new #AppIndicator object.
 */
AppIndicator *
app_indicator_new (const gchar          *id,
                   const gchar          *icon_name,
                   AppIndicatorCategory  category)
{
  AppIndicator *indicator = g_object_new (APP_INDICATOR_TYPE,
                                          PROP_ID_S, id,
                                          PROP_CATEGORY_S, category_from_enum (category),
                                          PROP_ICON_NAME_S, icon_name,
                                          NULL);

  return indicator;
}

/**
 * app_indicator_new_with_path:
 * @id: The unique id of the indicator to create.
 * @icon_name: The icon name for this indicator
 * @category: The category of indicator.
 * @icon_theme_path: 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.
 *
 * Return value: A pointer to a new #AppIndicator object.
 */
AppIndicator *
app_indicator_new_with_path (const gchar          *id,
                             const gchar          *icon_name,
                             AppIndicatorCategory  category,
                             const gchar          *icon_theme_path)
{
    AppIndicator *indicator = g_object_new (APP_INDICATOR_TYPE,
                                            PROP_ID_S, id,
                                            PROP_CATEGORY_S, category_from_enum (category),
                                            PROP_ICON_NAME_S, icon_name,
                                            PROP_ICON_THEME_PATH_S, icon_theme_path,
                                            NULL);

    return indicator;
}

/**
 * app_indicator_get_type:
 *
 * Generates or returns the unique #GType for #AppIndicator.
 *
 * Return value: A unique #GType for #AppIndicator objects.
 */

/**
 * app_indicator_set_status:
 * @self: The #AppIndicator object to use
 * @status: The status to set for this indicator
 *
 * Wrapper function for property #AppIndicator:status.
 */
void
app_indicator_set_status (AppIndicator *self, AppIndicatorStatus status)
{
    g_return_if_fail (APP_IS_INDICATOR (self));
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    if (priv->status != status) {
        GEnumValue *value = g_enum_get_value ((GEnumClass *) g_type_class_ref (APP_INDICATOR_TYPE_INDICATOR_STATUS), status);

        priv->status = status;
        g_signal_emit (self, signals[NEW_STATUS], 0, value->value_nick);

        if (priv->dbus_registration != 0 && priv->connection != NULL) {
            GError * error = NULL;

            g_dbus_connection_emit_signal(priv->connection,
                                          NULL,
                                          priv->path,
                                          NOTIFICATION_ITEM_DBUS_IFACE,
                                          "NewStatus",
                                          g_variant_new("(s)", value->value_nick),
                                          &error);

            if (error != NULL) {
                g_warning("Unable to send signal for NewStatus: %s", error->message);
                g_error_free(error);
            }
        }
    }

    return;
}

/**
 * app_indicator_set_attention_icon:
 * @self: The #AppIndicator object to use
 * @icon_name: The name of the attention icon to set for this indicator
 *
 * Wrapper for app_indicator_set_attention_icon_full() with a NULL
 * description.
 *
 * Deprecated: Use app_indicator_set_attention_icon_full() instead.
 */
void
app_indicator_set_attention_icon (AppIndicator *self, const gchar *icon_name)
{
    return app_indicator_set_attention_icon_full(self, icon_name, NULL);
}

/**
 * app_indicator_set_attention_icon_full:
 * @self: The #AppIndicator object to use
 * @icon_name: The name of the attention icon to set for this indicator
 * @icon_desc: (nullable): A textual description of the icon
 *
 * Wrapper function for property #AppIndicator:attention-icon-name.
 */
void
app_indicator_set_attention_icon_full (AppIndicator *self, const gchar *icon_name, const gchar * icon_desc)
{
    g_return_if_fail (APP_IS_INDICATOR (self));
    g_return_if_fail (icon_name != NULL);
    gboolean changed = FALSE;

    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    if (g_strcmp0 (priv->attention_icon_name, icon_name) != 0) {
        g_free (priv->attention_icon_name);
        priv->attention_icon_name = g_strdup (icon_name);

        g_free(priv->absolute_attention_icon_name);
        priv->absolute_attention_icon_name = NULL;

        if (icon_name && icon_name[0] == '/') {
            priv->absolute_attention_icon_name = append_snap_prefix (icon_name);
        }

        changed = TRUE;
    }

    if (g_strcmp0(priv->att_accessible_desc, icon_desc) != 0) {
        g_free (priv->att_accessible_desc);
        priv->att_accessible_desc = g_strdup (icon_desc);
        changed = TRUE;
    }

    if (changed) {
        g_signal_emit (self, signals[NEW_ATTENTION_ICON], 0);

        if (priv->dbus_registration != 0 && priv->connection != NULL) {
            GError * error = NULL;

            g_dbus_connection_emit_signal(priv->connection,
                                          NULL,
                                          priv->path,
                                          NOTIFICATION_ITEM_DBUS_IFACE,
                                          "NewAttentionIcon",
                                          NULL,
                                          &error);

            if (error != NULL) {
                g_warning("Unable to send signal for NewAttentionIcon: %s", error->message);
                g_error_free(error);
            }
        }
    }

    return;
}

/**
 * app_indicator_set_icon:
 * @self: The #AppIndicator object to use
 * @icon_name: The icon name to set.
 *
 * Wrapper function for app_indicator_set_icon_full() with a NULL
 * description.
 *
 * Deprecated: Use app_indicator_set_icon_full()
 */
void
app_indicator_set_icon (AppIndicator *self, const gchar *icon_name)
{
    return app_indicator_set_icon_full(self, icon_name, NULL);
}

/**
 * app_indicator_set_icon_full:
 * @self: The #AppIndicator object to use
 * @icon_name: The icon name to set.
 * @icon_desc: (nullable): A textual description of the icon for accessibility
 *
 * 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.
 */
void
app_indicator_set_icon_full (AppIndicator *self, const gchar *icon_name, const gchar * icon_desc)
{
    g_return_if_fail (APP_IS_INDICATOR (self));
    g_return_if_fail (icon_name != NULL);
    gboolean changed = FALSE;

    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    if (g_strcmp0 (priv->icon_name, icon_name) != 0) {
        if (priv->icon_name) {
            g_free (priv->icon_name);
        }

        priv->icon_name = g_strdup(icon_name);

        g_free(priv->absolute_icon_name);
        priv->absolute_icon_name = NULL;

        if (icon_name && icon_name[0] == '/') {
            priv->absolute_icon_name = append_snap_prefix (icon_name);
        }

        changed = TRUE;
    }

    if (g_strcmp0(priv->accessible_desc, icon_desc) != 0) {
        if (priv->accessible_desc != NULL) {
            g_free(priv->accessible_desc);
        }

        priv->accessible_desc = g_strdup(icon_desc);
        changed = TRUE;
    }

    if (changed) {
        g_signal_emit (self, signals[NEW_ICON], 0);

        if (priv->dbus_registration != 0 && priv->connection != NULL) {
            GError * error = NULL;

            g_dbus_connection_emit_signal(priv->connection,
                                          NULL,
                                          priv->path,
                                          NOTIFICATION_ITEM_DBUS_IFACE,
                                          "NewIcon",
                                          NULL,
                                          &error);

            if (error != NULL) {
                g_warning("Unable to send signal for NewIcon: %s", error->message);
                g_error_free(error);
            }
        }
    }

    return;
}

/**
 * app_indicator_set_label:
 * @self: The #AppIndicator object to use
 * @label: The label to show next to the icon.
 * @guide: A guide to size the label correctly.
 *
 * This is a wrapper function for the #AppIndicator:label and
 * #AppIndicator:label-guide properties.  This function can take #NULL
 * as either @label or @guide and will clear the entries.
*/
void
app_indicator_set_label (AppIndicator *self, const gchar * label, const gchar * guide)
{
    g_return_if_fail (APP_IS_INDICATOR (self));
    /* Note: The label can be NULL, it's okay */
    /* Note: The guide can be NULL, it's okay */

    g_object_set(G_OBJECT(self),
                 PROP_LABEL_S,       label == NULL ? "" : label,
                 PROP_LABEL_GUIDE_S, guide == NULL ? "" : guide,
                 NULL);

    return;
}

static const gchar *
get_snap_prefix ()
{
    const gchar *snap = g_getenv ("SNAP");
    return (snap && *snap != '\0') ? snap : NULL;
}

static gchar *
append_snap_prefix (const gchar *path)
{
    gint i;
    const gchar *snap = get_snap_prefix ();
    g_autofree gchar *canon_path = NULL;

    if (snap != NULL && path != NULL) {
        canon_path = realpath(path, NULL);

        if (g_str_has_prefix (canon_path, "/tmp/")) {
            g_warning ("Using '/tmp' paths in SNAP environment will lead to unreadable resources");
            return NULL;
        }

        if (g_str_has_prefix (canon_path, snap) ||
            g_str_has_prefix (canon_path, g_get_home_dir ()) ||
            g_str_has_prefix (canon_path, g_get_user_cache_dir ()) ||
            g_str_has_prefix (canon_path, g_get_user_config_dir ()) ||
            g_str_has_prefix (canon_path, g_get_user_data_dir ()) ||
            g_str_has_prefix (canon_path, g_get_user_runtime_dir ())) {
            return g_strdup (canon_path);
        }

        for (i = 0; i < G_USER_N_DIRECTORIES; ++ i) {
            if (g_str_has_prefix (canon_path, g_get_user_special_dir (i))) {
                return g_strdup (canon_path);
            }
        }

        return g_build_path (G_DIR_SEPARATOR_S, snap, canon_path, NULL);
    }

    return NULL;
}

static gchar *
get_real_theme_path (AppIndicator * self)
{
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    const gchar *theme_path = priv->icon_theme_path;
    gchar *snapped_path = append_snap_prefix (theme_path);

    if (snapped_path != NULL) {
        return snapped_path;
    } else if (get_snap_prefix ()) {
        return g_build_path (G_DIR_SEPARATOR_S, g_get_user_data_dir (), "icons", NULL);
    }

    return NULL;
}

/**
 * app_indicator_set_icon_theme_path:
 * @self: The #AppIndicator object to use
 * @icon_theme_path: The icon theme path to set.
 *
 * Sets the path to use when searching for icons.
 */
void
app_indicator_set_icon_theme_path (AppIndicator *self, const gchar *icon_theme_path)
{
    g_return_if_fail (APP_IS_INDICATOR (self));
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    if (g_strcmp0 (priv->icon_theme_path, icon_theme_path) != 0) {
        if (priv->icon_theme_path != NULL)
            g_free(priv->icon_theme_path);

        priv->icon_theme_path = g_strdup(icon_theme_path);

        g_free (priv->absolute_icon_theme_path);
        priv->absolute_icon_theme_path = get_real_theme_path (self);

        g_signal_emit (self, signals[NEW_ICON_THEME_PATH], 0, priv->icon_theme_path);

        if (priv->dbus_registration != 0 && priv->connection != NULL) {
            const gchar *theme_path = priv->absolute_icon_theme_path ?
                                        priv->absolute_icon_theme_path :
                                        priv->icon_theme_path;
            GError * error = NULL;

            g_dbus_connection_emit_signal(priv->connection,
                                          NULL,
                                          priv->path,
                                          NOTIFICATION_ITEM_DBUS_IFACE,
                                          "NewIconThemePath",
                                          g_variant_new("(s)", theme_path ? theme_path : ""),
                                          &error);

            if (error != NULL) {
                g_warning("Unable to send signal for NewIconThemePath: %s", error->message);
                g_error_free(error);
            }
        }
    }

    return;
}

/* Does the dbusmenu related work.  If there isn't a server, it builds
   one and if there are menus it runs the parse to put those menus into
   the server. */
static void
setup_dbusmenu (AppIndicator *self)
{
    DbusmenuMenuitem *root = NULL;

    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    if (priv->menu) {
        root = dbusmenu_gtk_parse_menu_structure(priv->menu);
    }

    if (priv->menuservice == NULL) {
        gchar * path = g_strdup_printf(DEFAULT_ITEM_PATH "/%s/Menu", priv->clean_id);
        priv->menuservice = dbusmenu_server_new (path);
        g_free(path);
    }

    dbusmenu_server_set_root (priv->menuservice, root);

    /* Drop our local ref as set_root should get it's own. */
    if (root != NULL) {
        g_object_unref(root);
    }

    return;
}

/**
 * app_indicator_set_menu:
 * @self: The #AppIndicator
 * @menu: (allow-none): A #GtkMenu to set
 *
 * 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.
 */
void
app_indicator_set_menu (AppIndicator *self, GtkMenu *menu)
{
  g_return_if_fail (APP_IS_INDICATOR (self));
  g_return_if_fail (GTK_IS_MENU (menu));

  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  g_return_if_fail (priv->clean_id != NULL);

  if (priv->menu != NULL)
    {
      g_object_unref (priv->menu);
    }

  priv->menu = GTK_WIDGET (menu);
  g_object_ref_sink (priv->menu);

  setup_dbusmenu (self);

  priv->sec_activate_enabled = widget_is_menu_child (self, priv->sec_activate_target);

  check_connect (self);

  return;
}

/**
 * app_indicator_set_ordering_index:
 * @self: The #AppIndicator
 * @ordering_index: A value for the ordering of this app indicator
 *
 * 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.
 */
void
app_indicator_set_ordering_index (AppIndicator *self, guint32 ordering_index)
{
    g_return_if_fail (APP_IS_INDICATOR (self));

    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    priv->ordering_index = ordering_index;

    return;
}

/**
 * app_indicator_set_secondary_activate_target:
 * @self: The #AppIndicator
 * @menuitem: (allow-none): A #GtkWidget to be activated on secondary activation
 *
 * 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.
 */
void
app_indicator_set_secondary_activate_target (AppIndicator *self, GtkWidget *menuitem)
{
    g_return_if_fail (APP_IS_INDICATOR (self));
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    if (priv->sec_activate_target) {
        g_signal_handlers_disconnect_by_func (priv->sec_activate_target,
                                              sec_activate_target_parent_changed,
                                              self);
        g_object_unref(G_OBJECT(priv->sec_activate_target));
        priv->sec_activate_target = NULL;
    }

    if (menuitem == NULL) {
        return;
    }

    g_return_if_fail (GTK_IS_WIDGET (menuitem));

    priv->sec_activate_target = (GtkWidget*)g_object_ref(G_OBJECT(menuitem));
    priv->sec_activate_enabled = widget_is_menu_child(self, menuitem);
    g_signal_connect(menuitem, "parent-set", G_CALLBACK(sec_activate_target_parent_changed), self);
}

/**
 * app_indicator_set_title:
 * @self: The #AppIndicator
 * @title: (allow-none): Title of the app indicator
 *
 * 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.
 *
 * Since: 0.5
 *
 */
void
app_indicator_set_title (AppIndicator *self, const gchar * title)
{
    g_return_if_fail (APP_IS_INDICATOR (self));

    g_object_set(G_OBJECT(self),
                 PROP_TITLE_S, title == NULL ? "": title,
                 NULL);

    return;
}

/**
 * app_indicator_get_id:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:id.
 *
 * Return value: The current ID
 */
const gchar *
app_indicator_get_id (AppIndicator *self)
{
  g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);
  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  return priv->id;
}

/**
 * app_indicator_get_category:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:category.
 *
 * Return value: The current category.
 */
AppIndicatorCategory
app_indicator_get_category (AppIndicator *self)
{
  g_return_val_if_fail (APP_IS_INDICATOR (self), APP_INDICATOR_CATEGORY_APPLICATION_STATUS);
  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  return priv->category;
}

/**
 * app_indicator_get_status:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:status.
 *
 * Return value: The current status.
 */
AppIndicatorStatus
app_indicator_get_status (AppIndicator *self)
{
  g_return_val_if_fail (APP_IS_INDICATOR (self), APP_INDICATOR_STATUS_PASSIVE);
  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  return priv->status;
}

/**
 * app_indicator_get_icon:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:icon-name.
 *
 * Return value: The current icon name.
 */
const gchar *
app_indicator_get_icon (AppIndicator *self)
{
  g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);
  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  return priv->icon_name;
}

/**
 * app_indicator_get_icon_desc:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:icon-desc.
 *
 * Return value: The current icon description.
*/
const gchar *
app_indicator_get_icon_desc (AppIndicator *self)
{
  g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);
  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  return priv->accessible_desc;
}

/**
 * app_indicator_get_icon_theme_path:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:icon-theme-path.
 *
 * Return value: The current icon theme path.
 */
const gchar *
app_indicator_get_icon_theme_path (AppIndicator *self)
{
  g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);
  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  return priv->icon_theme_path;
}

/**
 * app_indicator_get_attention_icon:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:attention-icon-name.
 *
 * Return value: The current attention icon name.
 */
const gchar *
app_indicator_get_attention_icon (AppIndicator *self)
{
  g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);
  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  return priv->attention_icon_name;
}

/**
 * app_indicator_get_attention_icon_desc:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:attention-icon-desc.
 *
 * Return value: The current attention icon description.
 */
const gchar *
app_indicator_get_attention_icon_desc (AppIndicator *self)
{
  g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);
  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  return priv->att_accessible_desc;
}

/**
 * app_indicator_get_title:
 * @self: The #AppIndicator object to use
 *
 * Gets the title of the application indicator.  See the function
 * app_indicator_set_title() for information on the title.
 *
 * Return value: The current title.
 *
 * Since: 0.5
 *
 */
const gchar *
app_indicator_get_title (AppIndicator *self)
{
    g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);
    return priv->title;
}


/**
 * app_indicator_get_menu:
 * @self: The #AppIndicator object to use
 *
 * Gets the menu being used for this application indicator.
 * Wrapper function for property #AppIndicator:menu.
 *
 * Returns: (transfer none): A #GtkMenu object or %NULL if one hasn't been set.
 */
GtkMenu *
app_indicator_get_menu (AppIndicator *self)
{
    g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);

    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    return GTK_MENU(priv->menu);
}

/**
 * app_indicator_get_label:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:label.
 *
 * Return value: The current label.
 */
const gchar *
app_indicator_get_label (AppIndicator *self)
{
  g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);
  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  return priv->label;
}

/**
 * app_indicator_get_label_guide:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:label-guide.
 *
 * Return value: The current label guide.
 */
const gchar *
app_indicator_get_label_guide (AppIndicator *self)
{
  g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);
  AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

  return priv->label_guide;
}

/**
 * app_indicator_get_ordering_index:
 * @self: The #AppIndicator object to use
 *
 * Wrapper function for property #AppIndicator:ordering-index.
 *
 * Return value: The current ordering index.
 */
guint32
app_indicator_get_ordering_index (AppIndicator *self)
{
    g_return_val_if_fail (APP_IS_INDICATOR (self), 0);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    if (priv->ordering_index == 0) {
        return _generate_id(priv->category, priv->id);
    } else {
        return priv->ordering_index;
    }
}

/**
 * app_indicator_get_secondary_activate_target:
 * @self: The #AppIndicator object to use
 *
 * Gets the menuitem being called on secondary-activate event.
 *
 * Returns: (transfer none): A #GtkWidget object or %NULL if none has been set.
 */
GtkWidget *
app_indicator_get_secondary_activate_target (AppIndicator *self)
{
    g_return_val_if_fail (APP_IS_INDICATOR (self), NULL);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    return GTK_WIDGET(priv->sec_activate_target);
}

#define APP_INDICATOR_SHORTY_NICK "app-indicator-shorty-nick"

/* Callback when an item from the desktop shortcuts gets
   called. */
static void
shorty_activated_cb (DbusmenuMenuitem * mi, guint timestamp, gpointer user_data)
{
    gchar * nick = g_object_get_data(G_OBJECT(mi), APP_INDICATOR_SHORTY_NICK);
    g_return_if_fail(nick != NULL);

    g_return_if_fail(APP_IS_INDICATOR(user_data));
    AppIndicator * self = APP_INDICATOR(user_data);
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    g_return_if_fail(priv->shorties != NULL);

    indicator_desktop_shortcuts_nick_exec_with_context(priv->shorties, nick, NULL);

    return;
}

/**
 * app_indicator_build_menu_from_desktop:
 * @self: The #AppIndicator object to use
 * @desktop_file: A path to the desktop file to build the menu from
 * @desktop_profile: Which entries should be used from the desktop file
 *
 * This function allows for building the Application Indicator menu
 * from a static desktop file.
 */
void
app_indicator_build_menu_from_desktop (AppIndicator * self, const gchar * desktop_file, const gchar * desktop_profile)
{
    g_return_if_fail(APP_IS_INDICATOR(self));
    AppIndicatorPrivate * priv = app_indicator_get_instance_private(self);

    /* Build a new shortcuts object */
    if (priv->shorties != NULL) {
        g_object_unref(priv->shorties);
        priv->shorties = NULL;
    }
    priv->shorties = indicator_desktop_shortcuts_new(desktop_file, desktop_profile);
    g_return_if_fail(priv->shorties != NULL);

    const gchar ** nicks = indicator_desktop_shortcuts_get_nicks(priv->shorties);
    int nick_num;

    /* Place the items on a dbusmenu */
    DbusmenuMenuitem * root = dbusmenu_menuitem_new();

    for (nick_num = 0; nicks[nick_num] != NULL; nick_num++) {
        DbusmenuMenuitem * item = dbusmenu_menuitem_new();
        g_object_set_data(G_OBJECT(item), APP_INDICATOR_SHORTY_NICK, (gpointer)nicks[nick_num]);

        gchar * name = indicator_desktop_shortcuts_nick_get_name(priv->shorties, nicks[nick_num]);
        dbusmenu_menuitem_property_set(item, DBUSMENU_MENUITEM_PROP_LABEL, name);
        g_free(name);

        g_signal_connect(G_OBJECT(item), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(shorty_activated_cb), self);

        dbusmenu_menuitem_child_append(root, item);
    }

    /* Swap it if needed */
    if (priv->menuservice == NULL) {
        gchar * path = g_strdup_printf(DEFAULT_ITEM_PATH "/%s/Menu", priv->clean_id);
        priv->menuservice = dbusmenu_server_new (path);
        g_free(path);
    }

    dbusmenu_server_set_root (priv->menuservice, root);

    if (priv->menu != NULL) {
        g_object_unref(G_OBJECT(priv->menu));
        priv->menu = NULL;
    }

    return;
}