summaryrefslogtreecommitdiff
path: root/doc.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2022-10-16 08:07:13 -0500
committerJeff Carr <[email protected]>2022-10-16 08:07:13 -0500
commit2141e04328dcf4e4d6857fcc0a7cb551fc84fa07 (patch)
treef8b2a5d8cf17f9ccfcfa8c1699fe4a52ea8338e2 /doc.go
parent3c899365154e48aefbc0b5ee48cd089f49339cb2 (diff)
Add slander and spinbox in toolkit/andlabs
fix the helloworld demo move slider into toolkit/ move more into the toolkit directory add spinbox() fix example minor update fix examples Fix andlabs.ui.Slider() to work again correctly implement custom OnChange() callback Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'doc.go')
-rw-r--r--doc.go20
1 files changed, 3 insertions, 17 deletions
diff --git a/doc.go b/doc.go
index 35c6a8f..9b52296 100644
--- a/doc.go
+++ b/doc.go
@@ -42,28 +42,14 @@ sections below for further details on formatting and configuration options.
groupNode1.AddComboBox("demoCombo2", "more 1", "more 2", "more 3")
}
-Configuration Options
-
-Configuration of the GUI is handled by fields in the ConfigType type. For
-convenience, all of the top-level functions use a global state available
-via the gui.Config global.
-
-The following configuration options are available:
- * Width
- When creating a new window, this is the width
-
- * Height
- When creating a new window, this is the height
-
- * Debug
- When 'true' log more output
-
Toolkit Usage
Right now, this abstraction is built on top of the go package 'andlabs/ui'
which does the cross platform support.
The next step is to intent is to allow this to work directly against GTK and QT.
-It should be able to add Fyne, WASM, native macos & windows, android, etc.
+
+It should be able to add Fyne, WASM, native macos & windows, android and
+hopefully also things like libSDL, faiface/pixel, slint
Errors