kas-core 0.17.0

KAS GUI / core
Documentation
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License in the LICENSE-APACHE file or at:
//     https://www.apache.org/licenses/LICENSE-2.0

//! Core widget types

mod collection;
mod data;
mod events;
mod layout;
mod node;
mod role;
mod tile;
mod widget;
mod widget_id;

#[cfg_attr(not(feature = "internal_doc"), doc(hidden))]
#[cfg_attr(docsrs, doc(cfg(internal_doc)))]
pub mod impls;

pub use collection::{CellCollection, Collection};
pub use data::*;
pub use events::Events;
pub use layout::*;
pub use node::Node;
pub use role::{Role, RoleCx, RoleCxExt, TextOrSource};
pub use tile::*;
pub use widget::*;
pub use widget_id::*;