Noah Petherbridge
07cefb6499
* New and completed widgets: Menu, MenuButton and MenuBar. * MenuButton is a kind of Button that opens a popup Menu when clicked. * MenuBar is a container of buttons designed to be attached to the top of an application window ("File, Edit, View, Help") * Supervisor manages the popup menus with its new concept of a Modal Widget. Modal widgets take exclusive event priority for all mouse and key events. The pop-up menu is a modal window, which means you must click an option inside the menu OR clicking outside the menu will close it and eat your click event (widgets outside the modal don't receive events, but the modal itself gets an event that you've done this).
11 lines
475 B
Markdown
11 lines
475 B
Markdown
# Examples for go/ui
|
|
|
|
* [Hello, World!](hello-world/): a basic UI demo.
|
|
* [Frame Place()](frame-place/): demonstrates using the Place() layout management
|
|
option for Frame widgets.]
|
|
* [Window Manager](windows/): demonstrates the Window widget and window
|
|
management features of the Supervisor.
|
|
* [Tooltip](tooltip/): demonstrates the Tooltip widget on a variety of buttons
|
|
scattered around the window.
|
|
* [Menus](menus/): demonstrates various Menu Buttons and a Menu Bar.
|