From eed897eefde13caff77cd3c62c2a62f77165a129 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 11 Feb 2024 02:16:51 -0600 Subject: preliminary file scan and build Signed-off-by: Jeff Carr --- controlBox.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'controlBox.go') diff --git a/controlBox.go b/controlBox.go index 846c5dc..4d3cec4 100644 --- a/controlBox.go +++ b/controlBox.go @@ -11,6 +11,7 @@ type controlFile struct { grid *gui.Node // the grid Package *gadgets.OneLiner + Source *gadgets.OneLiner Maintainer *gadgets.OneLiner Architecture *gadgets.BasicDropdown InstallPath *gadgets.BasicCombobox @@ -29,6 +30,10 @@ func newControl(parent *gui.Node) *controlFile { c.Package = gadgets.NewOneLiner(c.grid, "Package") c.grid.NextRow() + + c.Source = gadgets.NewOneLiner(c.grid, "Source") + c.grid.NextRow() + c.Architecture = gadgets.NewBasicDropdown(c.grid, "Architecture") c.Architecture.AddText("riscv") c.Architecture.AddText("amd64") @@ -62,3 +67,6 @@ func newControl(parent *gui.Node) *controlFile { return c } + +func scanConfigFile() { +} -- cgit v1.2.3