From 13ffeae21353602d9b234a3b6d9bb86085a3f93b Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 5 Mar 2025 12:11:57 -0600 Subject: [PATCH] get mouse clicks --- table.custom.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 table.custom.go diff --git a/table.custom.go b/table.custom.go new file mode 100644 index 0000000..8c079fd --- /dev/null +++ b/table.custom.go @@ -0,0 +1,21 @@ +// Code generated by go.wit.com/apps/autogenpb DO NOT EDIT. +// This file was autogenerated with autogenpb 0.0.62 2025/02/24_1709_UTC +// go install go.wit.com/apps/autogenpb@latest +// +// define which structs (messages) you want to use in the .proto file +// Then sort.pb.go and marshal.pb.go files are autogenerated +// +// autogenpb uses it and has an example .proto file with instructions +// + +package guipb + +import "go.wit.com/log" + +func (pb *Tables) Custom(id int) { + log.Info("got to guipb.Custom() for pb", pb.GetUuid(), "widget id", id) +} + +func (pb *Table) Custom(id int) { + log.Info("got to guipb.Custom() for pb", pb.GetUuid(), "widget id", id) +}