widget.rs 982 B

123456789101112131415161718192021222324252627282930313233343536
  1. use crate::{
  2. component::Component,
  3. input::InputState,
  4. layout::{LayoutCache, LayoutNode, LayoutNodeAccess},
  5. platform::{render::Painter, TextInterface},
  6. };
  7. mod frame;
  8. mod group;
  9. mod button;
  10. mod label;
  11. pub use frame::Frame;
  12. pub use group::PlainGroup;
  13. pub use label::Label;
  14. #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
  15. pub struct WidgetID(usize);
  16. static NEXT_WIDGET_ID: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(1);
  17. impl WidgetID {
  18. pub fn new() -> Self {
  19. Self(NEXT_WIDGET_ID.fetch_add(1, std::sync::atomic::Ordering::SeqCst))
  20. }
  21. }
  22. pub trait Widget<C: Component>: 'static {
  23. fn poll(&mut self, input_state: Option<&InputState>) -> Vec<C::Msg>;
  24. fn layout_node(&self) -> LayoutNodeAccess;
  25. fn layout_node_mut(&mut self) -> &mut LayoutNode;
  26. fn render(&self, painter: &mut dyn Painter, ti: &dyn TextInterface);
  27. }
  28. pub struct BuildContext {
  29. pub(crate) lcache: std::rc::Rc<LayoutCache>,
  30. }