Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move layout macros to kas-widgets; do not recurse internally #440

Merged
merged 7 commits into from
Feb 20, 2024
Merged

Conversation

dhardy
Copy link
Collaborator

@dhardy dhardy commented Feb 11, 2024

Layout macros (column!, grid! etc.) are moved into the kas::widgets namespace.

These layout macros no longer recurse internally (except with feature recursive-layout-widgets). This is slightly less optimal but means that e.g. column!["title", row!["a", "b"].map(|_| &())] is now possible since the internal row![..] is a widget and thus supports all the usual methods. Caveat: this is incompatible with the recursive-layout-widgets feature, and thus we warn about it in all cases.

Note that recursive layout macros must remain a feature to support usage in custom widgets where inner layout components may refer to fields of the custom widget, so all we're really doing is turning off this feature in the common case to improve diagnostic output.

Since these macros now behave (mostly) identically both within and outside of other layout macros, we can stop prepending with kas:: to identify non-recursive macro calls and just import the macros (explicitly, since glob import clashes with the std column! macro).

@dhardy dhardy merged commit 2b2d506 into master Feb 20, 2024
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant