doodle/docs/UI Ideas.md
Noah Petherbridge 0044b72943 Drag Doodads Onto Levels in Edit Mode
Add the ability to drag and drop Doodads onto the level. The Doodad
buttons on the palette now trigger a Drag/Drop behavior when clicked,
and a "blueprint colored" version of the Doodad follows your cursor,
centered on it.

Actors are assigned a random UUID ID when they are placed into a level.

The Canvas gained a MaskColor property that forces all pixels in the
drawing to render as the same color. This is a visual-only effect, and
is used when dragging Doodads in so they render as "blueprints" instead
of their actual colors until they are dropped.

Fix the chunk bitmap cache system so it saves in the $XDG_CACHE_FOLDER
instead of /tmp and has better names. They go into
`~/.config/doodle/chunks/` and have UUID file names -- but they
disappear quickly! As soon as they are cached into SDL2 they are removed
from disk.

Other changes:

- UI: Add Hovering() method that returns the widgets that are beneath
      a point (your cursor) and those that are not, for easy querying
      for event propagation.
- UI: Add ability to return an ErrStopPropagation to tell the master
      Scene (outside the UI) not to continue sending events to other
      parts of the code, so that you don't draw pixels during a drag
      event.
2018-10-20 16:03:59 -07:00

19 lines
753 B
Markdown

# UI Toolkit Ideas
The UI toolkit was loosely inspired by Tk and could copy more of their ideas.
* **Anchor vs. Side:** currently use Anchor to mean Side when packing widgets
into a Frame. It should be renamed to Side, and then Anchor should be how a
widget centers itself in its space, making it easy to have a Center Middle
widget inside a large frame.
* **Hover Background:** currently the Button sets its own color with its own
events, but this could be moved into the BaseWidget. Tk analog is
`activeBackground`
* **Mouse Cursor:** the BaseWidget should provide a way to configure a mouse
cursor when hovering over the widget.
## Label
* **Text Justify:** when multiple lines of text, align them all to the
left, center, or right.