icrate 0.0.1

Bindings to Apple's frameworks
Documentation
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
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use crate::common::*;
use crate::AppKit::*;
use crate::CoreData::*;
use crate::Foundation::*;

extern_enum!(
    #[underlying(c_int)]
    pub enum {
        NSOutlineViewDropOnItemIndex = -1,
    }
);

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct NSOutlineView;

    unsafe impl ClassType for NSOutlineView {
        #[inherits(NSControl, NSView, NSResponder, NSObject)]
        type Super = NSTableView;
    }
);

extern_methods!(
    unsafe impl NSOutlineView {
        #[method_id(@__retain_semantics Other delegate)]
        pub unsafe fn delegate(&self) -> Option<Id<NSOutlineViewDelegate, Shared>>;

        #[method(setDelegate:)]
        pub unsafe fn setDelegate(&self, delegate: Option<&NSOutlineViewDelegate>);

        #[method_id(@__retain_semantics Other dataSource)]
        pub unsafe fn dataSource(&self) -> Option<Id<NSOutlineViewDataSource, Shared>>;

        #[method(setDataSource:)]
        pub unsafe fn setDataSource(&self, dataSource: Option<&NSOutlineViewDataSource>);

        #[method_id(@__retain_semantics Other outlineTableColumn)]
        pub unsafe fn outlineTableColumn(&self) -> Option<Id<NSTableColumn, Shared>>;

        #[method(setOutlineTableColumn:)]
        pub unsafe fn setOutlineTableColumn(&self, outlineTableColumn: Option<&NSTableColumn>);

        #[method(isExpandable:)]
        pub unsafe fn isExpandable(&self, item: Option<&Object>) -> bool;

        #[method(numberOfChildrenOfItem:)]
        pub unsafe fn numberOfChildrenOfItem(&self, item: Option<&Object>) -> NSInteger;

        #[method_id(@__retain_semantics Other child:ofItem:)]
        pub unsafe fn child_ofItem(
            &self,
            index: NSInteger,
            item: Option<&Object>,
        ) -> Option<Id<Object, Shared>>;

        #[method(expandItem:expandChildren:)]
        pub unsafe fn expandItem_expandChildren(&self, item: Option<&Object>, expandChildren: bool);

        #[method(expandItem:)]
        pub unsafe fn expandItem(&self, item: Option<&Object>);

        #[method(collapseItem:collapseChildren:)]
        pub unsafe fn collapseItem_collapseChildren(
            &self,
            item: Option<&Object>,
            collapseChildren: bool,
        );

        #[method(collapseItem:)]
        pub unsafe fn collapseItem(&self, item: Option<&Object>);

        #[method(reloadItem:reloadChildren:)]
        pub unsafe fn reloadItem_reloadChildren(&self, item: Option<&Object>, reloadChildren: bool);

        #[method(reloadItem:)]
        pub unsafe fn reloadItem(&self, item: Option<&Object>);

        #[method_id(@__retain_semantics Other parentForItem:)]
        pub unsafe fn parentForItem(&self, item: Option<&Object>) -> Option<Id<Object, Shared>>;

        #[method(childIndexForItem:)]
        pub unsafe fn childIndexForItem(&self, item: &Object) -> NSInteger;

        #[method_id(@__retain_semantics Other itemAtRow:)]
        pub unsafe fn itemAtRow(&self, row: NSInteger) -> Option<Id<Object, Shared>>;

        #[method(rowForItem:)]
        pub unsafe fn rowForItem(&self, item: Option<&Object>) -> NSInteger;

        #[method(levelForItem:)]
        pub unsafe fn levelForItem(&self, item: Option<&Object>) -> NSInteger;

        #[method(levelForRow:)]
        pub unsafe fn levelForRow(&self, row: NSInteger) -> NSInteger;

        #[method(isItemExpanded:)]
        pub unsafe fn isItemExpanded(&self, item: Option<&Object>) -> bool;

        #[method(indentationPerLevel)]
        pub unsafe fn indentationPerLevel(&self) -> CGFloat;

        #[method(setIndentationPerLevel:)]
        pub unsafe fn setIndentationPerLevel(&self, indentationPerLevel: CGFloat);

        #[method(indentationMarkerFollowsCell)]
        pub unsafe fn indentationMarkerFollowsCell(&self) -> bool;

        #[method(setIndentationMarkerFollowsCell:)]
        pub unsafe fn setIndentationMarkerFollowsCell(&self, indentationMarkerFollowsCell: bool);

        #[method(autoresizesOutlineColumn)]
        pub unsafe fn autoresizesOutlineColumn(&self) -> bool;

        #[method(setAutoresizesOutlineColumn:)]
        pub unsafe fn setAutoresizesOutlineColumn(&self, autoresizesOutlineColumn: bool);

        #[method(frameOfOutlineCellAtRow:)]
        pub unsafe fn frameOfOutlineCellAtRow(&self, row: NSInteger) -> NSRect;

        #[method(setDropItem:dropChildIndex:)]
        pub unsafe fn setDropItem_dropChildIndex(&self, item: Option<&Object>, index: NSInteger);

        #[method(shouldCollapseAutoExpandedItemsForDeposited:)]
        pub unsafe fn shouldCollapseAutoExpandedItemsForDeposited(&self, deposited: bool) -> bool;

        #[method(autosaveExpandedItems)]
        pub unsafe fn autosaveExpandedItems(&self) -> bool;

        #[method(setAutosaveExpandedItems:)]
        pub unsafe fn setAutosaveExpandedItems(&self, autosaveExpandedItems: bool);

        #[method(insertItemsAtIndexes:inParent:withAnimation:)]
        pub unsafe fn insertItemsAtIndexes_inParent_withAnimation(
            &self,
            indexes: &NSIndexSet,
            parent: Option<&Object>,
            animationOptions: NSTableViewAnimationOptions,
        );

        #[method(removeItemsAtIndexes:inParent:withAnimation:)]
        pub unsafe fn removeItemsAtIndexes_inParent_withAnimation(
            &self,
            indexes: &NSIndexSet,
            parent: Option<&Object>,
            animationOptions: NSTableViewAnimationOptions,
        );

        #[method(moveItemAtIndex:inParent:toIndex:inParent:)]
        pub unsafe fn moveItemAtIndex_inParent_toIndex_inParent(
            &self,
            fromIndex: NSInteger,
            oldParent: Option<&Object>,
            toIndex: NSInteger,
            newParent: Option<&Object>,
        );

        #[method(insertRowsAtIndexes:withAnimation:)]
        pub unsafe fn insertRowsAtIndexes_withAnimation(
            &self,
            indexes: &NSIndexSet,
            animationOptions: NSTableViewAnimationOptions,
        );

        #[method(removeRowsAtIndexes:withAnimation:)]
        pub unsafe fn removeRowsAtIndexes_withAnimation(
            &self,
            indexes: &NSIndexSet,
            animationOptions: NSTableViewAnimationOptions,
        );

        #[method(moveRowAtIndex:toIndex:)]
        pub unsafe fn moveRowAtIndex_toIndex(&self, oldIndex: NSInteger, newIndex: NSInteger);

        #[method(userInterfaceLayoutDirection)]
        pub unsafe fn userInterfaceLayoutDirection(&self) -> NSUserInterfaceLayoutDirection;

        #[method(setUserInterfaceLayoutDirection:)]
        pub unsafe fn setUserInterfaceLayoutDirection(
            &self,
            userInterfaceLayoutDirection: NSUserInterfaceLayoutDirection,
        );

        #[method(stronglyReferencesItems)]
        pub unsafe fn stronglyReferencesItems(&self) -> bool;

        #[method(setStronglyReferencesItems:)]
        pub unsafe fn setStronglyReferencesItems(&self, stronglyReferencesItems: bool);
    }
);

extern_protocol!(
    pub struct NSOutlineViewDataSource;

    unsafe impl ProtocolType for NSOutlineViewDataSource {
        #[optional]
        #[method(outlineView:numberOfChildrenOfItem:)]
        pub unsafe fn outlineView_numberOfChildrenOfItem(
            &self,
            outlineView: &NSOutlineView,
            item: Option<&Object>,
        ) -> NSInteger;

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:child:ofItem:)]
        pub unsafe fn outlineView_child_ofItem(
            &self,
            outlineView: &NSOutlineView,
            index: NSInteger,
            item: Option<&Object>,
        ) -> Id<Object, Shared>;

        #[optional]
        #[method(outlineView:isItemExpandable:)]
        pub unsafe fn outlineView_isItemExpandable(
            &self,
            outlineView: &NSOutlineView,
            item: &Object,
        ) -> bool;

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:objectValueForTableColumn:byItem:)]
        pub unsafe fn outlineView_objectValueForTableColumn_byItem(
            &self,
            outlineView: &NSOutlineView,
            tableColumn: Option<&NSTableColumn>,
            item: Option<&Object>,
        ) -> Option<Id<Object, Shared>>;

        #[optional]
        #[method(outlineView:setObjectValue:forTableColumn:byItem:)]
        pub unsafe fn outlineView_setObjectValue_forTableColumn_byItem(
            &self,
            outlineView: &NSOutlineView,
            object: Option<&Object>,
            tableColumn: Option<&NSTableColumn>,
            item: Option<&Object>,
        );

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:itemForPersistentObject:)]
        pub unsafe fn outlineView_itemForPersistentObject(
            &self,
            outlineView: &NSOutlineView,
            object: &Object,
        ) -> Option<Id<Object, Shared>>;

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:persistentObjectForItem:)]
        pub unsafe fn outlineView_persistentObjectForItem(
            &self,
            outlineView: &NSOutlineView,
            item: Option<&Object>,
        ) -> Option<Id<Object, Shared>>;

        #[optional]
        #[method(outlineView:sortDescriptorsDidChange:)]
        pub unsafe fn outlineView_sortDescriptorsDidChange(
            &self,
            outlineView: &NSOutlineView,
            oldDescriptors: &NSArray<NSSortDescriptor>,
        );

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:pasteboardWriterForItem:)]
        pub unsafe fn outlineView_pasteboardWriterForItem(
            &self,
            outlineView: &NSOutlineView,
            item: &Object,
        ) -> Option<Id<NSPasteboardWriting, Shared>>;

        #[optional]
        #[method(outlineView:draggingSession:willBeginAtPoint:forItems:)]
        pub unsafe fn outlineView_draggingSession_willBeginAtPoint_forItems(
            &self,
            outlineView: &NSOutlineView,
            session: &NSDraggingSession,
            screenPoint: NSPoint,
            draggedItems: &NSArray,
        );

        #[optional]
        #[method(outlineView:draggingSession:endedAtPoint:operation:)]
        pub unsafe fn outlineView_draggingSession_endedAtPoint_operation(
            &self,
            outlineView: &NSOutlineView,
            session: &NSDraggingSession,
            screenPoint: NSPoint,
            operation: NSDragOperation,
        );

        #[optional]
        #[method(outlineView:writeItems:toPasteboard:)]
        pub unsafe fn outlineView_writeItems_toPasteboard(
            &self,
            outlineView: &NSOutlineView,
            items: &NSArray,
            pasteboard: &NSPasteboard,
        ) -> bool;

        #[optional]
        #[method(outlineView:updateDraggingItemsForDrag:)]
        pub unsafe fn outlineView_updateDraggingItemsForDrag(
            &self,
            outlineView: &NSOutlineView,
            draggingInfo: &NSDraggingInfo,
        );

        #[optional]
        #[method(outlineView:validateDrop:proposedItem:proposedChildIndex:)]
        pub unsafe fn outlineView_validateDrop_proposedItem_proposedChildIndex(
            &self,
            outlineView: &NSOutlineView,
            info: &NSDraggingInfo,
            item: Option<&Object>,
            index: NSInteger,
        ) -> NSDragOperation;

        #[optional]
        #[method(outlineView:acceptDrop:item:childIndex:)]
        pub unsafe fn outlineView_acceptDrop_item_childIndex(
            &self,
            outlineView: &NSOutlineView,
            info: &NSDraggingInfo,
            item: Option<&Object>,
            index: NSInteger,
        ) -> bool;

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:namesOfPromisedFilesDroppedAtDestination:forDraggedItems:)]
        pub unsafe fn outlineView_namesOfPromisedFilesDroppedAtDestination_forDraggedItems(
            &self,
            outlineView: &NSOutlineView,
            dropDestination: &NSURL,
            items: &NSArray,
        ) -> Id<NSArray<NSString>, Shared>;
    }
);

extern_protocol!(
    pub struct NSOutlineViewDelegate;

    unsafe impl ProtocolType for NSOutlineViewDelegate {
        #[optional]
        #[method_id(@__retain_semantics Other outlineView:viewForTableColumn:item:)]
        pub unsafe fn outlineView_viewForTableColumn_item(
            &self,
            outlineView: &NSOutlineView,
            tableColumn: Option<&NSTableColumn>,
            item: &Object,
        ) -> Option<Id<NSView, Shared>>;

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:rowViewForItem:)]
        pub unsafe fn outlineView_rowViewForItem(
            &self,
            outlineView: &NSOutlineView,
            item: &Object,
        ) -> Option<Id<NSTableRowView, Shared>>;

        #[optional]
        #[method(outlineView:didAddRowView:forRow:)]
        pub unsafe fn outlineView_didAddRowView_forRow(
            &self,
            outlineView: &NSOutlineView,
            rowView: &NSTableRowView,
            row: NSInteger,
        );

        #[optional]
        #[method(outlineView:didRemoveRowView:forRow:)]
        pub unsafe fn outlineView_didRemoveRowView_forRow(
            &self,
            outlineView: &NSOutlineView,
            rowView: &NSTableRowView,
            row: NSInteger,
        );

        #[optional]
        #[method(outlineView:willDisplayCell:forTableColumn:item:)]
        pub unsafe fn outlineView_willDisplayCell_forTableColumn_item(
            &self,
            outlineView: &NSOutlineView,
            cell: &Object,
            tableColumn: Option<&NSTableColumn>,
            item: &Object,
        );

        #[optional]
        #[method(outlineView:shouldEditTableColumn:item:)]
        pub unsafe fn outlineView_shouldEditTableColumn_item(
            &self,
            outlineView: &NSOutlineView,
            tableColumn: Option<&NSTableColumn>,
            item: &Object,
        ) -> bool;

        #[optional]
        #[method(selectionShouldChangeInOutlineView:)]
        pub unsafe fn selectionShouldChangeInOutlineView(
            &self,
            outlineView: &NSOutlineView,
        ) -> bool;

        #[optional]
        #[method(outlineView:shouldSelectItem:)]
        pub unsafe fn outlineView_shouldSelectItem(
            &self,
            outlineView: &NSOutlineView,
            item: &Object,
        ) -> bool;

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:selectionIndexesForProposedSelection:)]
        pub unsafe fn outlineView_selectionIndexesForProposedSelection(
            &self,
            outlineView: &NSOutlineView,
            proposedSelectionIndexes: &NSIndexSet,
        ) -> Id<NSIndexSet, Shared>;

        #[optional]
        #[method(outlineView:shouldSelectTableColumn:)]
        pub unsafe fn outlineView_shouldSelectTableColumn(
            &self,
            outlineView: &NSOutlineView,
            tableColumn: Option<&NSTableColumn>,
        ) -> bool;

        #[optional]
        #[method(outlineView:mouseDownInHeaderOfTableColumn:)]
        pub unsafe fn outlineView_mouseDownInHeaderOfTableColumn(
            &self,
            outlineView: &NSOutlineView,
            tableColumn: &NSTableColumn,
        );

        #[optional]
        #[method(outlineView:didClickTableColumn:)]
        pub unsafe fn outlineView_didClickTableColumn(
            &self,
            outlineView: &NSOutlineView,
            tableColumn: &NSTableColumn,
        );

        #[optional]
        #[method(outlineView:didDragTableColumn:)]
        pub unsafe fn outlineView_didDragTableColumn(
            &self,
            outlineView: &NSOutlineView,
            tableColumn: &NSTableColumn,
        );

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:toolTipForCell:rect:tableColumn:item:mouseLocation:)]
        pub unsafe fn outlineView_toolTipForCell_rect_tableColumn_item_mouseLocation(
            &self,
            outlineView: &NSOutlineView,
            cell: &NSCell,
            rect: NSRectPointer,
            tableColumn: Option<&NSTableColumn>,
            item: &Object,
            mouseLocation: NSPoint,
        ) -> Id<NSString, Shared>;

        #[optional]
        #[method(outlineView:heightOfRowByItem:)]
        pub unsafe fn outlineView_heightOfRowByItem(
            &self,
            outlineView: &NSOutlineView,
            item: &Object,
        ) -> CGFloat;

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:tintConfigurationForItem:)]
        pub unsafe fn outlineView_tintConfigurationForItem(
            &self,
            outlineView: &NSOutlineView,
            item: &Object,
        ) -> Option<Id<NSTintConfiguration, Shared>>;

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:typeSelectStringForTableColumn:item:)]
        pub unsafe fn outlineView_typeSelectStringForTableColumn_item(
            &self,
            outlineView: &NSOutlineView,
            tableColumn: Option<&NSTableColumn>,
            item: &Object,
        ) -> Option<Id<NSString, Shared>>;

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:nextTypeSelectMatchFromItem:toItem:forString:)]
        pub unsafe fn outlineView_nextTypeSelectMatchFromItem_toItem_forString(
            &self,
            outlineView: &NSOutlineView,
            startItem: &Object,
            endItem: &Object,
            searchString: &NSString,
        ) -> Option<Id<Object, Shared>>;

        #[optional]
        #[method(outlineView:shouldTypeSelectForEvent:withCurrentSearchString:)]
        pub unsafe fn outlineView_shouldTypeSelectForEvent_withCurrentSearchString(
            &self,
            outlineView: &NSOutlineView,
            event: &NSEvent,
            searchString: Option<&NSString>,
        ) -> bool;

        #[optional]
        #[method(outlineView:shouldShowCellExpansionForTableColumn:item:)]
        pub unsafe fn outlineView_shouldShowCellExpansionForTableColumn_item(
            &self,
            outlineView: &NSOutlineView,
            tableColumn: Option<&NSTableColumn>,
            item: &Object,
        ) -> bool;

        #[optional]
        #[method(outlineView:shouldTrackCell:forTableColumn:item:)]
        pub unsafe fn outlineView_shouldTrackCell_forTableColumn_item(
            &self,
            outlineView: &NSOutlineView,
            cell: &NSCell,
            tableColumn: Option<&NSTableColumn>,
            item: &Object,
        ) -> bool;

        #[optional]
        #[method_id(@__retain_semantics Other outlineView:dataCellForTableColumn:item:)]
        pub unsafe fn outlineView_dataCellForTableColumn_item(
            &self,
            outlineView: &NSOutlineView,
            tableColumn: Option<&NSTableColumn>,
            item: &Object,
        ) -> Option<Id<NSCell, Shared>>;

        #[optional]
        #[method(outlineView:isGroupItem:)]
        pub unsafe fn outlineView_isGroupItem(
            &self,
            outlineView: &NSOutlineView,
            item: &Object,
        ) -> bool;

        #[optional]
        #[method(outlineView:shouldExpandItem:)]
        pub unsafe fn outlineView_shouldExpandItem(
            &self,
            outlineView: &NSOutlineView,
            item: &Object,
        ) -> bool;

        #[optional]
        #[method(outlineView:shouldCollapseItem:)]
        pub unsafe fn outlineView_shouldCollapseItem(
            &self,
            outlineView: &NSOutlineView,
            item: &Object,
        ) -> bool;

        #[optional]
        #[method(outlineView:willDisplayOutlineCell:forTableColumn:item:)]
        pub unsafe fn outlineView_willDisplayOutlineCell_forTableColumn_item(
            &self,
            outlineView: &NSOutlineView,
            cell: &Object,
            tableColumn: Option<&NSTableColumn>,
            item: &Object,
        );

        #[optional]
        #[method(outlineView:sizeToFitWidthOfColumn:)]
        pub unsafe fn outlineView_sizeToFitWidthOfColumn(
            &self,
            outlineView: &NSOutlineView,
            column: NSInteger,
        ) -> CGFloat;

        #[optional]
        #[method(outlineView:shouldReorderColumn:toColumn:)]
        pub unsafe fn outlineView_shouldReorderColumn_toColumn(
            &self,
            outlineView: &NSOutlineView,
            columnIndex: NSInteger,
            newColumnIndex: NSInteger,
        ) -> bool;

        #[optional]
        #[method(outlineView:shouldShowOutlineCellForItem:)]
        pub unsafe fn outlineView_shouldShowOutlineCellForItem(
            &self,
            outlineView: &NSOutlineView,
            item: &Object,
        ) -> bool;

        #[optional]
        #[method(outlineViewSelectionDidChange:)]
        pub unsafe fn outlineViewSelectionDidChange(&self, notification: &NSNotification);

        #[optional]
        #[method(outlineViewColumnDidMove:)]
        pub unsafe fn outlineViewColumnDidMove(&self, notification: &NSNotification);

        #[optional]
        #[method(outlineViewColumnDidResize:)]
        pub unsafe fn outlineViewColumnDidResize(&self, notification: &NSNotification);

        #[optional]
        #[method(outlineViewSelectionIsChanging:)]
        pub unsafe fn outlineViewSelectionIsChanging(&self, notification: &NSNotification);

        #[optional]
        #[method(outlineViewItemWillExpand:)]
        pub unsafe fn outlineViewItemWillExpand(&self, notification: &NSNotification);

        #[optional]
        #[method(outlineViewItemDidExpand:)]
        pub unsafe fn outlineViewItemDidExpand(&self, notification: &NSNotification);

        #[optional]
        #[method(outlineViewItemWillCollapse:)]
        pub unsafe fn outlineViewItemWillCollapse(&self, notification: &NSNotification);

        #[optional]
        #[method(outlineViewItemDidCollapse:)]
        pub unsafe fn outlineViewItemDidCollapse(&self, notification: &NSNotification);
    }
);

extern_static!(NSOutlineViewDisclosureButtonKey: &'static NSUserInterfaceItemIdentifier);

extern_static!(NSOutlineViewShowHideButtonKey: &'static NSUserInterfaceItemIdentifier);

extern_static!(NSOutlineViewSelectionDidChangeNotification: &'static NSNotificationName);

extern_static!(NSOutlineViewColumnDidMoveNotification: &'static NSNotificationName);

extern_static!(NSOutlineViewColumnDidResizeNotification: &'static NSNotificationName);

extern_static!(NSOutlineViewSelectionIsChangingNotification: &'static NSNotificationName);

extern_static!(NSOutlineViewItemWillExpandNotification: &'static NSNotificationName);

extern_static!(NSOutlineViewItemDidExpandNotification: &'static NSNotificationName);

extern_static!(NSOutlineViewItemWillCollapseNotification: &'static NSNotificationName);

extern_static!(NSOutlineViewItemDidCollapseNotification: &'static NSNotificationName);

extern_methods!(
    /// Methods declared on superclass `NSTableView`
    unsafe impl NSOutlineView {
        #[method_id(@__retain_semantics Init initWithFrame:)]
        pub unsafe fn initWithFrame(
            this: Option<Allocated<Self>>,
            frameRect: NSRect,
        ) -> Id<Self, Shared>;
    }
);