5.1 KiB
5.1 KiB
TODO
TODO-list for the Egui project. If you looking for something to do, look here.
- Widgets:
- Text input
- Input
- Text focus
- Cursor movement
- Text selection
- Clipboard copy/paste
- Move focus with tab
- Horizontal slider
- Color picker
- linear rgb <-> sRGB
- Text input
- Containers:
- Scroll areas
- Vertical scrolling
- Scroll-wheel input
- Drag background to scroll
- Horizontal scrolling
- Kinetic scrolling
- Scroll areas
- Text
- Unicode
- Shared mutable expanding texture map?
- Change text style/color and continue in same layout
- Unicode
- Menu bar (File, Edit, etc)
- Sub-menus
- Keyboard shortcuts
- Layout
- Generalize Layout (separate from Ui)
- Table with resizable columns
- Grid layout
- Point list
- Windows
- Positioning preference:
window.preference(Top, Right)
- Keeping right/bottom on expand. Maybe cover jitteryness with quick animation?
- Positioning preference:
- Image support
- user-chosen texture ids (so people can show thing with mipmaps and whatnot)
enum TextureId { Egui, User(u64) }
added toTriangles
- API for creating a texture managed by Egui
- Backend-agnostic. Good for people doing Egui-apps (games etc).
- Convert font texture to RGBA, or communicate format in initialization?
- Generalized font atlas
- user-chosen texture ids (so people can show thing with mipmaps and whatnot)
- Visuals
- Pixel-perfect painting (round positions to nearest pixel).
- Fix
aa_size
: should be 1, currently fudged at 1.5 - Fix thin rounded corners rendering bug (too bright)
- Smoother animation (e.g. ease-out)? NO: animation are too brief for subtelty
- Veriy alpha and sRGB correctness
- sRGBA decode in fragment shader
- Thin circles look bad
- Color picker
- Math
- Change
width.min(max_width)
towidth.at_most(max_width)
- Change
egui_web
* [x] Scroll input
* [x] Change to resize cursor on hover
* [x] Port most code to Rust
* [x] Read url fragment and redirect to a subpage (e.g. different examples apps)
* [ ] Embeddability
* [ ] Support canvas that does NOT cover entire screen.
* [ ] Support multiple eguis in one web page.
* [ ] Filtering events to avoid too frequent repaints
* [ ] Multiple canvases from the same rust code
* Different Egui instances, same app
* Allows very nice web integration
Modularity
trait Widget
(Label
,Slider
,Checkbox
, ...)trait Container
(Frame
,Resize
,ScrollArea
, ...)widget::TextButton
implemented as acontainer::Button
which contains awidget::Label
.- Easily chain
Container
s without nested closures.- e.g.
ui.containers((Frame::new(), Resize::new(), ScrollArea::new()), |ui| ...)
- e.g.
- Attach labels to checkboxes, radio buttons and sliders with a separate wrapper-widget ?
Input
- Distinguish between clicks and drags
- Double-click
- Text
- Support all mouse buttons
- Distinguish between touch input and mouse input
Other
- Persist UI state in external storage
- Persist Example App state
- Create an Egui icon (or use an emoji)
- Build in a profiler which tracks which
Ui
in which window takes up CPU.- Draw as flame graph
- Draw as hotmap
- Windows should open from
UI
s and be boxed by parent ui.- Then we could open the example app inside a window in the example app, recursively.
- Implement a minimal markdown viewer
Names and structure
- Combine Egui and Context?
- Solve which parts of Context are behind a mutex
- Rename Region to Ui
- Maybe find a shorter name for the library like
egui
? - Rename things to be more consistent with Dear ImGui ?
Global widget search
Ability to do a search for any widget. The search works even for collapsed regions and closed windows and menus. This is implemented like this: while searching, all region are layed out and their add_content functions are run. If none of the contents matches the search, the layout is reverted and nothing is shown. So windows will get temporarily opened and run, but if the search is not a match in the window it is closed again. This means then when searching your whole GUI is being run, which may be a bit slower, but it would be a really awesome feature.
Done:
- Widgets
- Label
- Button
- Checkbox
- Radiobutton
- Collapsing header region
- Tooltip
- Movable/resizable windows
- Kinetic windows
- Add support for clicking hyperlinks
- Containers
- Vertical slider
- Resize any side and corner on windows
- Fix autoshrink
- Automatic positioning of new windows
- Vertical slider
- Simple animations
- Clip rects
- Separate Ui::clip_rect from Ui::rect
- Use clip rectangles when painting
- Use clip rectangles when interacting
- Adjust clip rects so edges of child widgets aren't clipped
- Use HW clip rects