diff foosdk/sdk/foobar2000/helpers-mac/NSView+embed.m @ 1:20d02a178406 default tip

*: check in everything else yay
author Paper <paper@tflc.us>
date Mon, 05 Jan 2026 02:15:46 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/foosdk/sdk/foobar2000/helpers-mac/NSView+embed.m	Mon Jan 05 02:15:46 2026 -0500
@@ -0,0 +1,35 @@
+#import "NSView+embed.h"
+
+#if 0
+@implementation NSView (embed)
+
+- (void)embedInView:(NSView *)superview {
+    NSViewEmbed( superview, self );
+}
+- (void)embedInViewV2:(NSView *)superview {
+    NSViewEmbedConstraints( superview, self );
+}
+
+@end
+#endif
+
+void NSViewEmbed( NSView * superview, NSView * childview ) {
+    if ( childview == nil || superview == nil ) return;
+    childview.autoresizingMask = NSViewHeightSizable | NSViewWidthSizable;
+    childview.frame = superview.bounds;
+    [superview addSubview: childview];
+}
+
+void NSViewEmbedConstraints( NSView * superview, NSView * childview ) {
+    if ( childview == nil || superview == nil ) return;
+    childview.autoresizingMask = 0;
+    [superview addSubview: childview];
+    NSMutableArray <NSLayoutConstraint * > * constraints = [NSMutableArray arrayWithCapacity: 4];
+    static const NSLayoutAttribute params[4] = { NSLayoutAttributeLeft, NSLayoutAttributeRight, NSLayoutAttributeTop, NSLayoutAttributeBottom };
+    for( unsigned i = 0; i < 4; ++ i) {
+        NSLayoutAttribute a = params[i];
+        [constraints addObject: [NSLayoutConstraint constraintWithItem: childview attribute:a relatedBy:NSLayoutRelationEqual toItem:superview attribute:a multiplier:1 constant:0]];
+    }
+
+    [superview addConstraints: constraints];
+}