dashboard / erock/vaxis / vxfw(List): add `Gap` between list items #51 rss

accepted · opened on 2025-03-12T17:28:45Z by erock
Help
checkout latest patchset:
ssh pr.pico.sh print pr-51 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print ps-X | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 51
add review to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add --review 51
accept PR:
ssh pr.pico.sh pr accept 51
close PR:
ssh pr.pico.sh pr close 51

Logs

erock created pr with ps-109 on 2025-03-12T17:28:45Z
erock changed status on 2025-03-13T14:53:20Z {"status":"accepted"}

Patchsets

ps-109 by erock on 2025-03-12T17:28:45Z

Patchset ps-109

Back to top

vxfw(List): add `Gap` between list items

_examples/vxfw/list/main.go link
+1 -0
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
diff --git a/_examples/vxfw/list/main.go b/_examples/vxfw/list/main.go
index 7eec321..a4c6230 100644
--- a/_examples/vxfw/list/main.go
+++ b/_examples/vxfw/list/main.go
@@ -79,6 +79,7 @@ func main() {
 		list: list.Dynamic{
 			Builder:    getWidget,
 			DrawCursor: true,
+			Gap: 1,
 		},
 	}
 
vxfw/list/list.go link
+5 -2
 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
diff --git a/vxfw/list/list.go b/vxfw/list/list.go
index 5c29a18..1fc87ea 100644
--- a/vxfw/list/list.go
+++ b/vxfw/list/list.go
@@ -23,6 +23,9 @@ type Dynamic struct {
 	// events. Set this to true to use custom event handlers
 	DisableEventHandlers bool
 
+	// Distance between each list item
+	Gap int
+
 	cursor uint
 	scroll scroll
 }
@@ -180,7 +183,7 @@ func (d *Dynamic) Draw(ctx vxfw.DrawContext) (vxfw.Surface, error) {
 		s.AddChild(colOffset, ah, chS)
 
 		// Add our height to accumulated height
-		ah += int(chS.Size.Height)
+		ah += int(chS.Size.Height) + d.Gap
 
 		// If we need to draw the cursor, keep going
 		if d.scroll.wantsCursor && i <= d.cursor {
@@ -194,7 +197,7 @@ func (d *Dynamic) Draw(ctx vxfw.DrawContext) (vxfw.Surface, error) {
 
 	var totalHeight uint16
 	for _, ch := range s.Children {
-		totalHeight += ch.Surface.Size.Height
+		totalHeight += ch.Surface.Size.Height + uint16(d.Gap)
 	}
 
 	if d.DrawCursor {