diff options
| -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  | 
