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
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::Layer;
use crate::RelationSet;
use crate::RelationType;
use crate::Role;
use crate::State;
use crate::StateSet;
use glib::object::Cast;
use glib::object::IsA;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
use glib::translate::*;
use glib::StaticType;
use glib::ToValue;
use std::boxed::Box as Box_;
use std::fmt;
use std::mem::transmute;

glib::wrapper! {
    /// This class is the primary class for accessibility support via the
    /// Accessibility ToolKit (ATK). Objects which are instances of
    /// [`Object`][crate::Object] (or instances of AtkObject-derived types) are queried
    /// for properties which relate basic (and generic) properties of a UI
    /// component such as name and description. Instances of [`Object`][crate::Object]
    /// may also be queried as to whether they implement other ATK
    /// interfaces (e.g. [`Action`][crate::Action], [`Component`][crate::Component], etc.), as appropriate
    /// to the role which a given UI component plays in a user interface.
    ///
    /// All UI components in an application which provide useful
    /// information or services to the user must provide corresponding
    /// [`Object`][crate::Object] instances on request (in GTK+, for instance, usually on
    /// a call to `gtk_widget_get_accessible` ()), either via ATK support
    /// built into the toolkit for the widget class or ancestor class, or
    /// in the case of custom widgets, if the inherited [`Object`][crate::Object]
    /// implementation is insufficient, via instances of a new [`Object`][crate::Object]
    /// subclass.
    ///
    /// See also: [`ObjectFactory`][crate::ObjectFactory], [`Registry`][crate::Registry]. (GTK+ users see also
    /// `GtkAccessible`).
    ///
    /// # Implements
    ///
    /// [`AtkObjectExt`][trait@crate::prelude::AtkObjectExt], [`trait@glib::ObjectExt`]
    #[doc(alias = "AtkObject")]
    pub struct Object(Object<ffi::AtkObject, ffi::AtkObjectClass>);

    match fn {
        type_ => || ffi::atk_object_get_type(),
    }
}

impl Object {
    pub const NONE: Option<&'static Object> = None;
}

/// Trait containing all [`struct@Object`] methods.
///
/// # Implementors
///
/// [`GObjectAccessible`][struct@crate::GObjectAccessible], [`NoOpObject`][struct@crate::NoOpObject], [`Object`][struct@crate::Object], [`Plug`][struct@crate::Plug], [`Socket`][struct@crate::Socket], [`TableCell`][struct@crate::TableCell], [`Window`][struct@crate::Window]
pub trait AtkObjectExt: 'static {
    /// Adds a relationship of the specified type with the specified target.
    /// ## `relationship`
    /// The [`RelationType`][crate::RelationType] of the relation
    /// ## `target`
    /// The [`Object`][crate::Object] which is to be the target of the relation.
    ///
    /// # Returns
    ///
    /// TRUE if the relationship is added.
    #[doc(alias = "atk_object_add_relationship")]
    fn add_relationship(&self, relationship: RelationType, target: &impl IsA<Object>) -> bool;

    /// Gets the accessible id of the accessible.
    ///
    /// # Returns
    ///
    /// a character string representing the accessible id of the object, or
    /// NULL if no such string was set.
    #[cfg(any(feature = "v2_34", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v2_34")))]
    #[doc(alias = "atk_object_get_accessible_id")]
    #[doc(alias = "get_accessible_id")]
    fn accessible_id(&self) -> Option<glib::GString>;

    /// Gets the accessible description of the accessible.
    ///
    /// # Returns
    ///
    /// a character string representing the accessible description
    /// of the accessible.
    #[doc(alias = "atk_object_get_description")]
    #[doc(alias = "get_description")]
    fn description(&self) -> Option<glib::GString>;

    /// Gets the 0-based index of this accessible in its parent; returns -1 if the
    /// accessible does not have an accessible parent.
    ///
    /// # Returns
    ///
    /// an integer which is the index of the accessible in its parent
    #[doc(alias = "atk_object_get_index_in_parent")]
    #[doc(alias = "get_index_in_parent")]
    fn index_in_parent(&self) -> i32;

    /// Gets the layer of the accessible.
    ///
    /// # Deprecated
    ///
    /// Use atk_component_get_layer instead.
    ///
    /// # Returns
    ///
    /// an [`Layer`][crate::Layer] which is the layer of the accessible
    #[doc(alias = "atk_object_get_layer")]
    #[doc(alias = "get_layer")]
    fn layer(&self) -> Layer;

    /// Gets the zorder of the accessible. The value G_MININT will be returned
    /// if the layer of the accessible is not ATK_LAYER_MDI.
    ///
    /// # Deprecated
    ///
    /// Use atk_component_get_mdi_zorder instead.
    ///
    /// # Returns
    ///
    /// a gint which is the zorder of the accessible, i.e. the depth at
    /// which the component is shown in relation to other components in the same
    /// container.
    #[doc(alias = "atk_object_get_mdi_zorder")]
    #[doc(alias = "get_mdi_zorder")]
    fn mdi_zorder(&self) -> i32;

    /// Gets the number of accessible children of the accessible.
    ///
    /// # Returns
    ///
    /// an integer representing the number of accessible children
    /// of the accessible.
    #[doc(alias = "atk_object_get_n_accessible_children")]
    #[doc(alias = "get_n_accessible_children")]
    fn n_accessible_children(&self) -> i32;

    /// Gets the accessible name of the accessible.
    ///
    /// # Returns
    ///
    /// a character string representing the accessible name of the object.
    #[doc(alias = "atk_object_get_name")]
    #[doc(alias = "get_name")]
    fn name(&self) -> Option<glib::GString>;

    /// Gets a UTF-8 string indicating the POSIX-style LC_MESSAGES locale
    /// of `self`.
    ///
    /// # Returns
    ///
    /// a UTF-8 string indicating the POSIX-style LC_MESSAGES
    ///  locale of `self`.
    #[doc(alias = "atk_object_get_object_locale")]
    #[doc(alias = "get_object_locale")]
    fn object_locale(&self) -> Option<glib::GString>;

    /// Gets the accessible parent of the accessible. By default this is
    /// the one assigned with [`set_parent()`][Self::set_parent()], but it is assumed
    /// that ATK implementors have ways to get the parent of the object
    /// without the need of assigning it manually with
    /// [`set_parent()`][Self::set_parent()], and will return it with this method.
    ///
    /// If you are only interested on the parent assigned with
    /// [`set_parent()`][Self::set_parent()], use [`peek_parent()`][Self::peek_parent()].
    ///
    /// # Returns
    ///
    /// an [`Object`][crate::Object] representing the accessible
    /// parent of the accessible
    #[doc(alias = "atk_object_get_parent")]
    #[doc(alias = "get_parent")]
    #[must_use]
    fn parent(&self) -> Option<Object>;

    /// Gets the role of the accessible.
    ///
    /// # Returns
    ///
    /// an [`Role`][crate::Role] which is the role of the accessible
    #[doc(alias = "atk_object_get_role")]
    #[doc(alias = "get_role")]
    fn role(&self) -> Role;

    //#[doc(alias = "atk_object_initialize")]
    //fn initialize(&self, data: /*Unimplemented*/Option<Fundamental: Pointer>);

    /// Emits a state-change signal for the specified state.
    ///
    /// Note that as a general rule when the state of an existing object changes,
    /// emitting a notification is expected.
    /// ## `state`
    /// an `AtkState` whose state is changed
    /// ## `value`
    /// a gboolean which indicates whether the state is being set on or off
    #[doc(alias = "atk_object_notify_state_change")]
    fn notify_state_change(&self, state: State, value: bool);

    /// Gets the accessible parent of the accessible, if it has been
    /// manually assigned with atk_object_set_parent. Otherwise, this
    /// function returns [`None`].
    ///
    /// This method is intended as an utility for ATK implementors, and not
    /// to be exposed to accessible tools. See [`parent()`][Self::parent()] for
    /// further reference.
    ///
    /// # Returns
    ///
    /// an [`Object`][crate::Object] representing the accessible
    /// parent of the accessible if assigned
    #[doc(alias = "atk_object_peek_parent")]
    #[must_use]
    fn peek_parent(&self) -> Option<Object>;

    /// Gets a reference to the specified accessible child of the object.
    /// The accessible children are 0-based so the first accessible child is
    /// at index 0, the second at index 1 and so on.
    /// ## `i`
    /// a gint representing the position of the child, starting from 0
    ///
    /// # Returns
    ///
    /// an [`Object`][crate::Object] representing the specified
    /// accessible child of the accessible.
    #[doc(alias = "atk_object_ref_accessible_child")]
    #[must_use]
    fn ref_accessible_child(&self, i: i32) -> Option<Object>;

    /// Gets the [`RelationSet`][crate::RelationSet] associated with the object.
    ///
    /// # Returns
    ///
    /// an [`RelationSet`][crate::RelationSet] representing the relation set
    /// of the object.
    #[doc(alias = "atk_object_ref_relation_set")]
    fn ref_relation_set(&self) -> Option<RelationSet>;

    /// Gets a reference to the state set of the accessible; the caller must
    /// unreference it when it is no longer needed.
    ///
    /// # Returns
    ///
    /// a reference to an [`StateSet`][crate::StateSet] which is the state
    /// set of the accessible
    #[doc(alias = "atk_object_ref_state_set")]
    fn ref_state_set(&self) -> Option<StateSet>;

    /// Removes a relationship of the specified type with the specified target.
    /// ## `relationship`
    /// The [`RelationType`][crate::RelationType] of the relation
    /// ## `target`
    /// The [`Object`][crate::Object] which is the target of the relation to be removed.
    ///
    /// # Returns
    ///
    /// TRUE if the relationship is removed.
    #[doc(alias = "atk_object_remove_relationship")]
    fn remove_relationship(&self, relationship: RelationType, target: &impl IsA<Object>) -> bool;

    /// Sets the accessible ID of the accessible. This is not meant to be presented
    /// to the user, but to be an ID which is stable over application development.
    /// Typically, this is the gtkbuilder ID. Such an ID will be available for
    /// instance to identify a given well-known accessible object for tailored screen
    /// reading, or for automatic regression testing.
    /// ## `name`
    /// a character string to be set as the accessible id
    #[cfg(any(feature = "v2_34", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v2_34")))]
    #[doc(alias = "atk_object_set_accessible_id")]
    fn set_accessible_id(&self, name: &str);

    /// Sets the accessible description of the accessible. You can't set
    /// the description to NULL. This is reserved for the initial value. In
    /// this aspect NULL is similar to ATK_ROLE_UNKNOWN. If you want to set
    /// the name to a empty value you can use "".
    /// ## `description`
    /// a character string to be set as the accessible description
    #[doc(alias = "atk_object_set_description")]
    fn set_description(&self, description: &str);

    /// Sets the accessible name of the accessible. You can't set the name
    /// to NULL. This is reserved for the initial value. In this aspect
    /// NULL is similar to ATK_ROLE_UNKNOWN. If you want to set the name to
    /// a empty value you can use "".
    /// ## `name`
    /// a character string to be set as the accessible name
    #[doc(alias = "atk_object_set_name")]
    fn set_name(&self, name: &str);

    /// Sets the accessible parent of the accessible. `parent` can be NULL.
    /// ## `parent`
    /// an [`Object`][crate::Object] to be set as the accessible parent
    #[doc(alias = "atk_object_set_parent")]
    fn set_parent(&self, parent: &impl IsA<Object>);

    /// Sets the role of the accessible.
    /// ## `role`
    /// an [`Role`][crate::Role] to be set as the role
    #[doc(alias = "atk_object_set_role")]
    fn set_role(&self, role: Role);

    #[doc(alias = "accessible-component-layer")]
    fn accessible_component_layer(&self) -> i32;

    #[doc(alias = "accessible-component-mdi-zorder")]
    fn accessible_component_mdi_zorder(&self) -> i32;

    #[doc(alias = "accessible-description")]
    fn accessible_description(&self) -> Option<glib::GString>;

    #[doc(alias = "accessible-description")]
    fn set_accessible_description(&self, accessible_description: Option<&str>);

    #[doc(alias = "accessible-hypertext-nlinks")]
    fn accessible_hypertext_nlinks(&self) -> i32;

    #[doc(alias = "accessible-name")]
    fn accessible_name(&self) -> Option<glib::GString>;

    #[doc(alias = "accessible-name")]
    fn set_accessible_name(&self, accessible_name: Option<&str>);

    #[doc(alias = "accessible-parent")]
    fn accessible_parent(&self) -> Option<Object>;

    #[doc(alias = "accessible-parent")]
    fn set_accessible_parent<P: IsA<Object>>(&self, accessible_parent: Option<&P>);

    #[doc(alias = "accessible-role")]
    fn accessible_role(&self) -> Role;

    #[doc(alias = "accessible-role")]
    fn set_accessible_role(&self, accessible_role: Role);

    /// Table caption.
    ///
    /// # Deprecated
    ///
    /// Since 1.3. Use table-caption-object instead.
    #[doc(alias = "accessible-table-caption")]
    fn accessible_table_caption(&self) -> Option<glib::GString>;

    /// Table caption.
    ///
    /// # Deprecated
    ///
    /// Since 1.3. Use table-caption-object instead.
    #[doc(alias = "accessible-table-caption")]
    fn set_accessible_table_caption(&self, accessible_table_caption: Option<&str>);

    #[doc(alias = "accessible-table-caption-object")]
    fn accessible_table_caption_object(&self) -> Option<Object>;

    #[doc(alias = "accessible-table-caption-object")]
    fn set_accessible_table_caption_object<P: IsA<Object>>(
        &self,
        accessible_table_caption_object: Option<&P>,
    );

    /// Accessible table column description.
    ///
    /// # Deprecated
    ///
    /// Since 2.12. Use [`TableExt::column_description()`][crate::prelude::TableExt::column_description()]
    /// and [`TableExt::set_column_description()`][crate::prelude::TableExt::set_column_description()] instead.
    #[doc(alias = "accessible-table-column-description")]
    fn accessible_table_column_description(&self) -> Option<glib::GString>;

    /// Accessible table column description.
    ///
    /// # Deprecated
    ///
    /// Since 2.12. Use [`TableExt::column_description()`][crate::prelude::TableExt::column_description()]
    /// and [`TableExt::set_column_description()`][crate::prelude::TableExt::set_column_description()] instead.
    #[doc(alias = "accessible-table-column-description")]
    fn set_accessible_table_column_description(
        &self,
        accessible_table_column_description: Option<&str>,
    );

    /// Accessible table column header.
    ///
    /// # Deprecated
    ///
    /// Since 2.12. Use [`TableExt::column_header()`][crate::prelude::TableExt::column_header()] and
    /// [`TableExt::set_column_header()`][crate::prelude::TableExt::set_column_header()] instead.
    #[doc(alias = "accessible-table-column-header")]
    fn accessible_table_column_header(&self) -> Option<Object>;

    /// Accessible table column header.
    ///
    /// # Deprecated
    ///
    /// Since 2.12. Use [`TableExt::column_header()`][crate::prelude::TableExt::column_header()] and
    /// [`TableExt::set_column_header()`][crate::prelude::TableExt::set_column_header()] instead.
    #[doc(alias = "accessible-table-column-header")]
    fn set_accessible_table_column_header<P: IsA<Object>>(
        &self,
        accessible_table_column_header: Option<&P>,
    );

    /// Accessible table row description.
    ///
    /// # Deprecated
    ///
    /// Since 2.12. Use [`TableExt::row_description()`][crate::prelude::TableExt::row_description()] and
    /// [`TableExt::set_row_description()`][crate::prelude::TableExt::set_row_description()] instead.
    #[doc(alias = "accessible-table-row-description")]
    fn accessible_table_row_description(&self) -> Option<glib::GString>;

    /// Accessible table row description.
    ///
    /// # Deprecated
    ///
    /// Since 2.12. Use [`TableExt::row_description()`][crate::prelude::TableExt::row_description()] and
    /// [`TableExt::set_row_description()`][crate::prelude::TableExt::set_row_description()] instead.
    #[doc(alias = "accessible-table-row-description")]
    fn set_accessible_table_row_description(&self, accessible_table_row_description: Option<&str>);

    /// Accessible table row header.
    ///
    /// # Deprecated
    ///
    /// Since 2.12. Use [`TableExt::row_header()`][crate::prelude::TableExt::row_header()] and
    /// [`TableExt::set_row_header()`][crate::prelude::TableExt::set_row_header()] instead.
    #[doc(alias = "accessible-table-row-header")]
    fn accessible_table_row_header(&self) -> Option<Object>;

    /// Accessible table row header.
    ///
    /// # Deprecated
    ///
    /// Since 2.12. Use [`TableExt::row_header()`][crate::prelude::TableExt::row_header()] and
    /// [`TableExt::set_row_header()`][crate::prelude::TableExt::set_row_header()] instead.
    #[doc(alias = "accessible-table-row-header")]
    fn set_accessible_table_row_header<P: IsA<Object>>(
        &self,
        accessible_table_row_header: Option<&P>,
    );

    #[doc(alias = "accessible-table-summary")]
    fn accessible_table_summary(&self) -> Option<Object>;

    #[doc(alias = "accessible-table-summary")]
    fn set_accessible_table_summary<P: IsA<Object>>(&self, accessible_table_summary: Option<&P>);

    /// Numeric value of this object, in case being and AtkValue.
    ///
    /// # Deprecated
    ///
    /// Since 2.12. Use [`ValueExt::value_and_text()`][crate::prelude::ValueExt::value_and_text()] to get
    /// the value, and value-changed signal to be notified on their value
    /// changes.
    #[doc(alias = "accessible-value")]
    fn accessible_value(&self) -> f64;

    /// Numeric value of this object, in case being and AtkValue.
    ///
    /// # Deprecated
    ///
    /// Since 2.12. Use [`ValueExt::value_and_text()`][crate::prelude::ValueExt::value_and_text()] to get
    /// the value, and value-changed signal to be notified on their value
    /// changes.
    #[doc(alias = "accessible-value")]
    fn set_accessible_value(&self, accessible_value: f64);

    /// The "active-descendant-changed" signal is emitted by an object
    /// which has the state ATK_STATE_MANAGES_DESCENDANTS when the focus
    /// object in the object changes. For instance, a table will emit the
    /// signal when the cell in the table which has focus changes.
    /// ## `arg1`
    /// the newly focused object.
    #[doc(alias = "active-descendant-changed")]
    fn connect_active_descendant_changed<F: Fn(&Self, &Object) + 'static>(
        &self,
        detail: Option<&str>,
        f: F,
    ) -> SignalHandlerId;

    /// The signal "children-changed" is emitted when a child is added or
    /// removed form an object. It supports two details: "add" and
    /// "remove"
    /// ## `arg1`
    /// The index of the added or removed child. The value can be
    /// -1. This is used if the value is not known by the implementor
    /// when the child is added/removed or irrelevant.
    /// ## `arg2`
    /// A gpointer to the child AtkObject which was added or
    /// removed. If the child was removed, it is possible that it is not
    /// available for the implementor. In that case this pointer can be
    /// NULL.
    #[doc(alias = "children-changed")]
    fn connect_children_changed<F: Fn(&Self, u32, &Object) + 'static>(
        &self,
        detail: Option<&str>,
        f: F,
    ) -> SignalHandlerId;

    //#[doc(alias = "property-change")]
    //fn connect_property_change<Unsupported or ignored types>(&self, detail: Option<&str>, f: F) -> SignalHandlerId;

    /// The "state-change" signal is emitted when an object's state
    /// changes. The detail value identifies the state type which has
    /// changed.
    /// ## `arg1`
    /// The name of the state which has changed
    /// ## `arg2`
    /// A boolean which indicates whether the state has been set or unset.
    #[doc(alias = "state-change")]
    fn connect_state_change<F: Fn(&Self, &str, bool) + 'static>(
        &self,
        detail: Option<&str>,
        f: F,
    ) -> SignalHandlerId;

    /// The "visible-data-changed" signal is emitted when the visual
    /// appearance of the object changed.
    #[doc(alias = "visible-data-changed")]
    fn connect_visible_data_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    #[doc(alias = "accessible-component-layer")]
    fn connect_accessible_component_layer_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-component-mdi-zorder")]
    fn connect_accessible_component_mdi_zorder_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-description")]
    fn connect_accessible_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-hypertext-nlinks")]
    fn connect_accessible_hypertext_nlinks_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-name")]
    fn connect_accessible_name_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    #[doc(alias = "accessible-parent")]
    fn connect_accessible_parent_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    #[doc(alias = "accessible-role")]
    fn connect_accessible_role_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;

    #[doc(alias = "accessible-table-caption")]
    fn connect_accessible_table_caption_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-table-caption-object")]
    fn connect_accessible_table_caption_object_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-table-column-description")]
    fn connect_accessible_table_column_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-table-column-header")]
    fn connect_accessible_table_column_header_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-table-row-description")]
    fn connect_accessible_table_row_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-table-row-header")]
    fn connect_accessible_table_row_header_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-table-summary")]
    fn connect_accessible_table_summary_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;

    #[doc(alias = "accessible-value")]
    fn connect_accessible_value_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
}

impl<O: IsA<Object>> AtkObjectExt for O {
    fn add_relationship(&self, relationship: RelationType, target: &impl IsA<Object>) -> bool {
        unsafe {
            from_glib(ffi::atk_object_add_relationship(
                self.as_ref().to_glib_none().0,
                relationship.into_glib(),
                target.as_ref().to_glib_none().0,
            ))
        }
    }

    #[cfg(any(feature = "v2_34", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v2_34")))]
    fn accessible_id(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_none(ffi::atk_object_get_accessible_id(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn description(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_none(ffi::atk_object_get_description(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn index_in_parent(&self) -> i32 {
        unsafe { ffi::atk_object_get_index_in_parent(self.as_ref().to_glib_none().0) }
    }

    fn layer(&self) -> Layer {
        unsafe { from_glib(ffi::atk_object_get_layer(self.as_ref().to_glib_none().0)) }
    }

    fn mdi_zorder(&self) -> i32 {
        unsafe { ffi::atk_object_get_mdi_zorder(self.as_ref().to_glib_none().0) }
    }

    fn n_accessible_children(&self) -> i32 {
        unsafe { ffi::atk_object_get_n_accessible_children(self.as_ref().to_glib_none().0) }
    }

    fn name(&self) -> Option<glib::GString> {
        unsafe { from_glib_none(ffi::atk_object_get_name(self.as_ref().to_glib_none().0)) }
    }

    fn object_locale(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_none(ffi::atk_object_get_object_locale(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn parent(&self) -> Option<Object> {
        unsafe { from_glib_none(ffi::atk_object_get_parent(self.as_ref().to_glib_none().0)) }
    }

    fn role(&self) -> Role {
        unsafe { from_glib(ffi::atk_object_get_role(self.as_ref().to_glib_none().0)) }
    }

    //fn initialize(&self, data: /*Unimplemented*/Option<Fundamental: Pointer>) {
    //    unsafe { TODO: call ffi:atk_object_initialize() }
    //}

    fn notify_state_change(&self, state: State, value: bool) {
        unsafe {
            ffi::atk_object_notify_state_change(
                self.as_ref().to_glib_none().0,
                state,
                value.into_glib(),
            );
        }
    }

    fn peek_parent(&self) -> Option<Object> {
        unsafe { from_glib_none(ffi::atk_object_peek_parent(self.as_ref().to_glib_none().0)) }
    }

    fn ref_accessible_child(&self, i: i32) -> Option<Object> {
        unsafe {
            from_glib_full(ffi::atk_object_ref_accessible_child(
                self.as_ref().to_glib_none().0,
                i,
            ))
        }
    }

    fn ref_relation_set(&self) -> Option<RelationSet> {
        unsafe {
            from_glib_full(ffi::atk_object_ref_relation_set(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn ref_state_set(&self) -> Option<StateSet> {
        unsafe {
            from_glib_full(ffi::atk_object_ref_state_set(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn remove_relationship(&self, relationship: RelationType, target: &impl IsA<Object>) -> bool {
        unsafe {
            from_glib(ffi::atk_object_remove_relationship(
                self.as_ref().to_glib_none().0,
                relationship.into_glib(),
                target.as_ref().to_glib_none().0,
            ))
        }
    }

    #[cfg(any(feature = "v2_34", feature = "dox"))]
    #[cfg_attr(feature = "dox", doc(cfg(feature = "v2_34")))]
    fn set_accessible_id(&self, name: &str) {
        unsafe {
            ffi::atk_object_set_accessible_id(
                self.as_ref().to_glib_none().0,
                name.to_glib_none().0,
            );
        }
    }

    fn set_description(&self, description: &str) {
        unsafe {
            ffi::atk_object_set_description(
                self.as_ref().to_glib_none().0,
                description.to_glib_none().0,
            );
        }
    }

    fn set_name(&self, name: &str) {
        unsafe {
            ffi::atk_object_set_name(self.as_ref().to_glib_none().0, name.to_glib_none().0);
        }
    }

    fn set_parent(&self, parent: &impl IsA<Object>) {
        unsafe {
            ffi::atk_object_set_parent(
                self.as_ref().to_glib_none().0,
                parent.as_ref().to_glib_none().0,
            );
        }
    }

    fn set_role(&self, role: Role) {
        unsafe {
            ffi::atk_object_set_role(self.as_ref().to_glib_none().0, role.into_glib());
        }
    }

    fn accessible_component_layer(&self) -> i32 {
        glib::ObjectExt::property(self.as_ref(), "accessible-component-layer")
    }

    fn accessible_component_mdi_zorder(&self) -> i32 {
        glib::ObjectExt::property(self.as_ref(), "accessible-component-mdi-zorder")
    }

    fn accessible_description(&self) -> Option<glib::GString> {
        glib::ObjectExt::property(self.as_ref(), "accessible-description")
    }

    fn set_accessible_description(&self, accessible_description: Option<&str>) {
        glib::ObjectExt::set_property(
            self.as_ref(),
            "accessible-description",
            &accessible_description,
        )
    }

    fn accessible_hypertext_nlinks(&self) -> i32 {
        glib::ObjectExt::property(self.as_ref(), "accessible-hypertext-nlinks")
    }

    fn accessible_name(&self) -> Option<glib::GString> {
        glib::ObjectExt::property(self.as_ref(), "accessible-name")
    }

    fn set_accessible_name(&self, accessible_name: Option<&str>) {
        glib::ObjectExt::set_property(self.as_ref(), "accessible-name", &accessible_name)
    }

    fn accessible_parent(&self) -> Option<Object> {
        glib::ObjectExt::property(self.as_ref(), "accessible-parent")
    }

    fn set_accessible_parent<P: IsA<Object>>(&self, accessible_parent: Option<&P>) {
        glib::ObjectExt::set_property(self.as_ref(), "accessible-parent", &accessible_parent)
    }

    fn accessible_role(&self) -> Role {
        glib::ObjectExt::property(self.as_ref(), "accessible-role")
    }

    fn set_accessible_role(&self, accessible_role: Role) {
        glib::ObjectExt::set_property(self.as_ref(), "accessible-role", &accessible_role)
    }

    fn accessible_table_caption(&self) -> Option<glib::GString> {
        glib::ObjectExt::property(self.as_ref(), "accessible-table-caption")
    }

    fn set_accessible_table_caption(&self, accessible_table_caption: Option<&str>) {
        glib::ObjectExt::set_property(
            self.as_ref(),
            "accessible-table-caption",
            &accessible_table_caption,
        )
    }

    fn accessible_table_caption_object(&self) -> Option<Object> {
        glib::ObjectExt::property(self.as_ref(), "accessible-table-caption-object")
    }

    fn set_accessible_table_caption_object<P: IsA<Object>>(
        &self,
        accessible_table_caption_object: Option<&P>,
    ) {
        glib::ObjectExt::set_property(
            self.as_ref(),
            "accessible-table-caption-object",
            &accessible_table_caption_object,
        )
    }

    fn accessible_table_column_description(&self) -> Option<glib::GString> {
        glib::ObjectExt::property(self.as_ref(), "accessible-table-column-description")
    }

    fn set_accessible_table_column_description(
        &self,
        accessible_table_column_description: Option<&str>,
    ) {
        glib::ObjectExt::set_property(
            self.as_ref(),
            "accessible-table-column-description",
            &accessible_table_column_description,
        )
    }

    fn accessible_table_column_header(&self) -> Option<Object> {
        glib::ObjectExt::property(self.as_ref(), "accessible-table-column-header")
    }

    fn set_accessible_table_column_header<P: IsA<Object>>(
        &self,
        accessible_table_column_header: Option<&P>,
    ) {
        glib::ObjectExt::set_property(
            self.as_ref(),
            "accessible-table-column-header",
            &accessible_table_column_header,
        )
    }

    fn accessible_table_row_description(&self) -> Option<glib::GString> {
        glib::ObjectExt::property(self.as_ref(), "accessible-table-row-description")
    }

    fn set_accessible_table_row_description(&self, accessible_table_row_description: Option<&str>) {
        glib::ObjectExt::set_property(
            self.as_ref(),
            "accessible-table-row-description",
            &accessible_table_row_description,
        )
    }

    fn accessible_table_row_header(&self) -> Option<Object> {
        glib::ObjectExt::property(self.as_ref(), "accessible-table-row-header")
    }

    fn set_accessible_table_row_header<P: IsA<Object>>(
        &self,
        accessible_table_row_header: Option<&P>,
    ) {
        glib::ObjectExt::set_property(
            self.as_ref(),
            "accessible-table-row-header",
            &accessible_table_row_header,
        )
    }

    fn accessible_table_summary(&self) -> Option<Object> {
        glib::ObjectExt::property(self.as_ref(), "accessible-table-summary")
    }

    fn set_accessible_table_summary<P: IsA<Object>>(&self, accessible_table_summary: Option<&P>) {
        glib::ObjectExt::set_property(
            self.as_ref(),
            "accessible-table-summary",
            &accessible_table_summary,
        )
    }

    fn accessible_value(&self) -> f64 {
        glib::ObjectExt::property(self.as_ref(), "accessible-value")
    }

    fn set_accessible_value(&self, accessible_value: f64) {
        glib::ObjectExt::set_property(self.as_ref(), "accessible-value", &accessible_value)
    }

    fn connect_active_descendant_changed<F: Fn(&Self, &Object) + 'static>(
        &self,
        detail: Option<&str>,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn active_descendant_changed_trampoline<
            P: IsA<Object>,
            F: Fn(&P, &Object) + 'static,
        >(
            this: *mut ffi::AtkObject,
            arg1: *mut ffi::AtkObject,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(
                Object::from_glib_borrow(this).unsafe_cast_ref(),
                &from_glib_borrow(arg1),
            )
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            let detailed_signal_name =
                detail.map(|name| format!("active-descendant-changed::{}\0", name));
            let signal_name: &[u8] = detailed_signal_name
                .as_ref()
                .map_or(&b"active-descendant-changed\0"[..], |n| n.as_bytes());
            connect_raw(
                self.as_ptr() as *mut _,
                signal_name.as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    active_descendant_changed_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_children_changed<F: Fn(&Self, u32, &Object) + 'static>(
        &self,
        detail: Option<&str>,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn children_changed_trampoline<
            P: IsA<Object>,
            F: Fn(&P, u32, &Object) + 'static,
        >(
            this: *mut ffi::AtkObject,
            arg1: libc::c_uint,
            arg2: *mut ffi::AtkObject,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(
                Object::from_glib_borrow(this).unsafe_cast_ref(),
                arg1,
                &from_glib_borrow(arg2),
            )
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            let detailed_signal_name = detail.map(|name| format!("children-changed::{}\0", name));
            let signal_name: &[u8] = detailed_signal_name
                .as_ref()
                .map_or(&b"children-changed\0"[..], |n| n.as_bytes());
            connect_raw(
                self.as_ptr() as *mut _,
                signal_name.as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    children_changed_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    //fn connect_property_change<Unsupported or ignored types>(&self, detail: Option<&str>, f: F) -> SignalHandlerId {
    //    Ignored arg1: Atk.PropertyValues
    //}

    fn connect_state_change<F: Fn(&Self, &str, bool) + 'static>(
        &self,
        detail: Option<&str>,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn state_change_trampoline<
            P: IsA<Object>,
            F: Fn(&P, &str, bool) + 'static,
        >(
            this: *mut ffi::AtkObject,
            arg1: *mut libc::c_char,
            arg2: glib::ffi::gboolean,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(
                Object::from_glib_borrow(this).unsafe_cast_ref(),
                &glib::GString::from_glib_borrow(arg1),
                from_glib(arg2),
            )
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            let detailed_signal_name = detail.map(|name| format!("state-change::{}\0", name));
            let signal_name: &[u8] = detailed_signal_name
                .as_ref()
                .map_or(&b"state-change\0"[..], |n| n.as_bytes());
            connect_raw(
                self.as_ptr() as *mut _,
                signal_name.as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    state_change_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_visible_data_changed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn visible_data_changed_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"visible-data-changed\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    visible_data_changed_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_component_layer_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_component_layer_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-component-layer\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_component_layer_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_component_mdi_zorder_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_component_mdi_zorder_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-component-mdi-zorder\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_component_mdi_zorder_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_description_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-description\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_description_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_hypertext_nlinks_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_hypertext_nlinks_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-hypertext-nlinks\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_hypertext_nlinks_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_name_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_name_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-name\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_name_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_parent_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_parent_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-parent\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_parent_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_role_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_role_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-role\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_role_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_table_caption_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_table_caption_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-table-caption\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_table_caption_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_table_caption_object_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_table_caption_object_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-table-caption-object\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_table_caption_object_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_table_column_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_table_column_description_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-table-column-description\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_table_column_description_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_table_column_header_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_table_column_header_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-table-column-header\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_table_column_header_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_table_row_description_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_table_row_description_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-table-row-description\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_table_row_description_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_table_row_header_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_table_row_header_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-table-row-header\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_table_row_header_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_table_summary_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_table_summary_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-table-summary\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_table_summary_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }

    fn connect_accessible_value_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId {
        unsafe extern "C" fn notify_accessible_value_trampoline<
            P: IsA<Object>,
            F: Fn(&P) + 'static,
        >(
            this: *mut ffi::AtkObject,
            _param_spec: glib::ffi::gpointer,
            f: glib::ffi::gpointer,
        ) {
            let f: &F = &*(f as *const F);
            f(Object::from_glib_borrow(this).unsafe_cast_ref())
        }
        unsafe {
            let f: Box_<F> = Box_::new(f);
            connect_raw(
                self.as_ptr() as *mut _,
                b"notify::accessible-value\0".as_ptr() as *const _,
                Some(transmute::<_, unsafe extern "C" fn()>(
                    notify_accessible_value_trampoline::<Self, F> as *const (),
                )),
                Box_::into_raw(f),
            )
        }
    }
}

impl fmt::Display for Object {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.write_str("Object")
    }
}