doc.go 612 B

123456789101112131415161718192021
  1. /*
  2. Package winman implements a basic yet powerful window manager that can be used
  3. with tview (github.com/rivo/tview).
  4. It supports floating windows that can be dragged, resized and maximized.
  5. Windows can have buttons on the title bar, for example to close them,
  6. help commands or maximize / minimize.
  7. Windows can also be modal, meaning that other windows don't receive input while
  8. a modal window is on top.
  9. You can control whether the user can drag or resize windows around the screen.
  10. Windows can overlap each other by setting their Z-index
  11. Any tview.Primitive can be added to a window.
  12. */
  13. package winman