Ebitengine tool kit for creating graphical user interfaces
Go to file
Trevor Slocum d17310185c Fix repeated rune input on Android
Resolves #6.
2024-02-20 11:20:47 -08:00
examples Add initial support for window management 2024-01-25 00:06:01 -08:00
kibodo Make messeji elements private 2024-01-23 12:52:09 -08:00
messeji Add SetMask to messeji and Text widget 2024-02-10 12:43:58 -08:00
.gitignore Move kibodo into etk 2024-01-16 12:52:24 -08:00
LICENSE Update LICENSE 2024-01-16 12:59:02 -08:00
README.md Update README 2024-01-18 00:30:53 -08:00
box.go Make messeji elements private 2024-01-23 12:52:09 -08:00
button.go Add SetMask to messeji and Text widget 2024-02-10 12:43:58 -08:00
checkbox.go Add Button.SetBorderColor 2024-01-23 01:07:06 -08:00
doc.go Add SetMask to messeji and Text widget 2024-02-10 12:43:58 -08:00
flex.go Fix expanding Flex children 2024-01-18 19:33:56 -08:00
frame.go Add Frame.SetPadding 2024-01-18 00:16:28 -08:00
game.go Fix repeated rune input on Android 2024-02-20 11:20:47 -08:00
go.mod Add SetMask to messeji and Text widget 2024-02-10 12:43:58 -08:00
go.sum Add SetMask to messeji and Text widget 2024-02-10 12:43:58 -08:00
grid.go Add List 2023-12-19 12:24:44 -08:00
input.go Add SetMask to messeji and Text widget 2024-02-10 12:43:58 -08:00
keybind.go Add shortcut attributes ConfirmRune and BackRune 2024-01-21 16:18:49 -08:00
keyboard.go Move kibodo into etk 2024-01-16 12:52:24 -08:00
list.go Add Button.SetBorderColor 2024-01-23 01:07:06 -08:00
select.go Draw shaded button when pressed 2024-01-28 20:51:46 -08:00
style.go Draw shaded button when pressed 2024-01-28 20:51:46 -08:00
text.go Add SetMask to messeji and Text widget 2024-02-10 12:43:58 -08:00
widget.go Add List 2023-12-19 12:24:44 -08:00
window.go Add initial support for window management 2024-01-25 00:06:01 -08:00

README.md

etk - Ebitengine Tool Kit

GoDoc Donate via LiberaPay

Ebitengine tool kit for creating graphical user interfaces

Note: This library is still in development. Breaking changes may be made until v1.0 is released.

Features

  • Simplifies GUI development:
    • Propagates layout changes.
    • Propagates user input.
    • Propagates focus.
  • Extensible by design:
    • The Box widget is provided as a building block for custom widgets.
    • Widgets may be nested within each other efficiently.
  • Tools in the kit:
    • Box: Building block for creating custom widgets.
    • Button: Clickable button.
    • Flex: Flexible stack-based layout. Each Flex widget may be oriented horizontally or vertically.
    • Frame: Widget container. All child widgets are displayed at once. Child widgets are not repositioned by default.
    • Grid: Highly customizable cell-based layout. Each widget added to the Grid may span multiple cells.
    • Input: Text input widget. The Input widget is simply a Text widget that also accepts user input.
    • List: List of widgets as selectable items.
    • Text: Text display widget.
    • Window: Widget paging mechanism. Only one widget added to a window is displayed at a time.

Demo

Boxcars uses etk extensively and is available at https://play.bgammon.org

Screenshot

Examples

See the examples folder.

Documentation

Documentation is available via godoc.

Support

Please share issues and suggestions here.