ui/cocoa/GridLayout.m

changeset 538
5004b4a9b16d
parent 449
7681d538deaf
--- a/ui/cocoa/GridLayout.m	Sun Mar 30 14:19:55 2025 +0200
+++ b/ui/cocoa/GridLayout.m	Sun Mar 30 16:38:27 2025 +0200
@@ -53,7 +53,6 @@
     NSSize s1 = _test.intrinsicContentSize;
     NSEdgeInsets e1 = _test.alignmentRectInsets;
     
-    printf("fuck\n");
 }
  */
 
@@ -80,7 +79,19 @@
             GridDef *row = &rows[y];
             
             NSSize size = elm->view.intrinsicContentSize;
+            NSSize size2 = elm->view.fittingSize;
             NSEdgeInsets alignment = elm->view.alignmentRectInsets;
+            // TODO: remove alignment
+            alignment.left = 0;
+            alignment.right = 0;
+            alignment.top = 0;
+            alignment.bottom = 0;
+            if(size.width == NSViewNoIntrinsicMetric) {
+                size.width = size2.width;
+            }
+            if(size.height == NSViewNoIntrinsicMetric) {
+                size.height = size2.height;
+            }
             if(size.width != NSViewNoIntrinsicMetric) {
                 CGFloat width = size.width + alignment.left + alignment.right;
                 if(width > cols[elm->x].preferred_size && elm->colspan <= 1 && span_max == 1) {
@@ -244,12 +255,12 @@
                 for(int c=elm->x;c<end_col;c++) {
                     cwidth += cols[c].size;
                 }
-                frame.size.width = cwidth;
+                frame.size.width = cwidth + + alignment.left + alignment.right;
             } else {
-                frame.size.width = col->size;
+                frame.size.width = col->size + alignment.left + alignment.right;
             }
         } else {
-            frame.size.width = elm->preferred_width;
+            frame.size.width = elm->preferred_width + alignment.left + alignment.right;
         }
         if(elm->vfill) {
             if(elm->rowspan > 1) {
@@ -268,7 +279,8 @@
             frame.size.height = elm->preferred_height;
         }
         frame.origin.x = col->pos - (alignment.left+alignment.right)/2;
-        frame.origin.y = viewFrame.size.height - row->pos - frame.size.height + ((alignment.top+alignment.right)/2);
+        //frame.origin.y = viewFrame.size.height - row->pos - frame.size.height + ((alignment.top+alignment.right)/2);
+        frame.origin.y = viewFrame.size.height - row->pos - frame.size.height;
         elm->view.frame = frame;
     }
     
@@ -294,10 +306,17 @@
     elm.margin = 0;
     elm.colspan = _uilayout.colspan;
     elm.rowspan = _uilayout.rowspan;
-    elm.hfill = _uilayout.hfill;
-    elm.vfill = _uilayout.vfill;
-    elm.hexpand = _uilayout.hexpand;
-    elm.vexpand = _uilayout.vexpand;
+    if(_uilayout.fill) {
+        elm.hfill = TRUE;
+        elm.vfill = TRUE;
+        elm.hexpand = TRUE;
+        elm.vexpand = TRUE;
+    } else {
+        elm.hfill = _uilayout.hfill;
+        elm.vfill = _uilayout.vfill;
+        elm.hexpand = _uilayout.hexpand;
+        elm.vexpand = _uilayout.vexpand;
+    }
     elm.view = view;
     cxListAdd(_children, &elm);
     

mercurial