diff options
| author | Jeff Carr <[email protected]> | 2025-02-12 15:43:40 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-12 15:43:40 -0600 |
| commit | 8c459da9f7a406b01bfd187e09ed9d4113d3ef36 (patch) | |
| tree | 9c4e3d0006d8e8b7ac9f46f6cca2b7866227c178 /treeInit.go | |
| parent | 552bdeb1e6250065f553af16756e54f90092d86b (diff) | |
add some notes
Diffstat (limited to 'treeInit.go')
| -rw-r--r-- | treeInit.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/treeInit.go b/treeInit.go index 55faaa6..40b5157 100644 --- a/treeInit.go +++ b/treeInit.go @@ -1,6 +1,25 @@ // Copyright 2017-2025 WIT.COM Inc. All rights reserved. // Use of this source code is governed by the GPL 3.0 +/* + DO NOT EDIT THIS FILE + + this file is the same for every GUI toolkit plugin + when you are making a new GUI toolkit plugin for + a specific toolkit, you just need to define these + functions. + + for example, in the "gocui" toolkit, the functions + below are what triggers the "gocui" GO package + to draw labels, buttons, windows, etc + + If you are starting out trying to make a new GUI toolkit, + all you have to do is copy this file over. Then + work on making these functions. addWidget(), setText(), etc. + + That's it! +*/ + package main /* |
