diff options
| author | Jeff Carr <[email protected]> | 2025-09-11 16:42:11 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-11 16:42:11 -0500 | 
| commit | 9289ed7f2cebaae55d4206ef2db0e8c3828a20be (patch) | |
| tree | 691ec90da5c8c27bd892fab264dd012fc5fcaf7e | |
| parent | 809f2e564d3b8e6760c1d0cd0ae21f760a42941e (diff) | |
visual of standard window layoutHEADv0.22.47v0.22.46v0.22.45v0.22.44v0.22.43v0.22.42v0.22.41v0.22.40v0.22.39guimasterdevel
| -rw-r--r-- | genericWindow.go | 38 | 
1 files changed, 35 insertions, 3 deletions
diff --git a/genericWindow.go b/genericWindow.go index 0232502..29c4010 100644 --- a/genericWindow.go +++ b/genericWindow.go @@ -3,15 +3,47 @@  package gadgets -// This model works for 99.9% of all windows -// This is the Default Standard Window Model -  import (  	"go.wit.com/log"  	"go.wit.com/gui"  ) +// This model works for 99.9% of all windows +// This is the Default Standard Window Model +// +/////////////////////// Win ///////////////////////////////// +//       /         /                                       // +//       / Top     /  /////////////////////////////////////// +//       /         /  /                                    // +//       /         /  /  Group                             // +//       /         /  /    ////////////////////////////////// +//       /         /  /    //                              // +//       /         /  /    //                              // +//       //////////////////////////////////////////////////// +//       /         /    //      //     //     //           // +// Shelf /         /    //      //     //     //           // +//       / Middle  /    //      //     //     //  ....     // +//       /         /    //      //     //     //           // +//       /         /    //      //     //     //           // +//       //////////////////////////////////////////////////// +//       /         /                                       // +//       / Bottom  ////////////////////////////////////////// +//       /         /                                       // +//       /         ////////////////////////////////////////// +//       /         /                                       // +//       /         /                 |                     // +//       /         /                 v                     // +//       /         /                                       // +//       //////////////////////////////////////////////////// +//       /                                                 // +//       /                                                 // +//       //////////////////////////////////////////////////// +//       /                                                 // +//       /                   |                             // +//       /                   v                             // +//       /                                                 // +/////////////////////////////////////////////////////////////  type GenericWindow struct {  	// Win    *BasicWindow // the window widget itself  	Win    *gui.Node // the window widget itself  | 
