@@ -3233,6 +3233,16 @@ void* NSViewController_inst_nibBundle(void *id) {
3233
3233
nibBundle];
3234
3234
}
3235
3235
3236
+ void* NSViewController_inst_view(void *id) {
3237
+ return [(NSViewController*)id
3238
+ view];
3239
+ }
3240
+
3241
+ void NSViewController_inst_setView_(void *id, void* value) {
3242
+ [(NSViewController*)id
3243
+ setView: value];
3244
+ }
3245
+
3236
3246
void* NSViewController_inst_title(void *id) {
3237
3247
return [(NSViewController*)id
3238
3248
title];
@@ -3303,6 +3313,16 @@ NSSize NSViewController_inst_preferredMinimumSize(void *id) {
3303
3313
preferredMinimumSize];
3304
3314
}
3305
3315
3316
+ void* NSViewController_inst_sourceItemView(void *id) {
3317
+ return [(NSViewController*)id
3318
+ sourceItemView];
3319
+ }
3320
+
3321
+ void NSViewController_inst_setSourceItemView_(void *id, void* value) {
3322
+ [(NSViewController*)id
3323
+ setSourceItemView: value];
3324
+ }
3325
+
3306
3326
void NSVisualEffectView_inst_viewDidMoveToWindow(void *id) {
3307
3327
[(NSVisualEffectView*)id
3308
3328
viewDidMoveToWindow];
@@ -13667,6 +13687,26 @@ func (x gen_NSViewController) NibBundle() (
13667
13687
return
13668
13688
}
13669
13689
13690
+ func (x gen_NSViewController ) View () (
13691
+ r0 NSView ,
13692
+ ) {
13693
+ ret := C .NSViewController_inst_view (
13694
+ unsafe .Pointer (x .Pointer ()),
13695
+ )
13696
+ r0 = NSView_fromPointer (ret )
13697
+ return
13698
+ }
13699
+
13700
+ func (x gen_NSViewController ) SetView_ (
13701
+ value NSViewRef ,
13702
+ ) {
13703
+ C .NSViewController_inst_setView_ (
13704
+ unsafe .Pointer (x .Pointer ()),
13705
+ objc .RefPointer (value ),
13706
+ )
13707
+ return
13708
+ }
13709
+
13670
13710
func (x gen_NSViewController ) Title () (
13671
13711
r0 core.NSString ,
13672
13712
) {
@@ -13807,6 +13847,26 @@ func (x gen_NSViewController) PreferredMinimumSize() (
13807
13847
return
13808
13848
}
13809
13849
13850
+ func (x gen_NSViewController ) SourceItemView () (
13851
+ r0 NSView ,
13852
+ ) {
13853
+ ret := C .NSViewController_inst_sourceItemView (
13854
+ unsafe .Pointer (x .Pointer ()),
13855
+ )
13856
+ r0 = NSView_fromPointer (ret )
13857
+ return
13858
+ }
13859
+
13860
+ func (x gen_NSViewController ) SetSourceItemView_ (
13861
+ value NSViewRef ,
13862
+ ) {
13863
+ C .NSViewController_inst_setSourceItemView_ (
13864
+ unsafe .Pointer (x .Pointer ()),
13865
+ objc .RefPointer (value ),
13866
+ )
13867
+ return
13868
+ }
13869
+
13810
13870
type NSVisualEffectViewRef interface {
13811
13871
Pointer () uintptr
13812
13872
Init_asNSVisualEffectView () NSVisualEffectView
0 commit comments