1
0
Fork 0
forked from wry/wry
wry/src/tree/stacked.rs
2024-05-02 19:37:19 +02:00

17 lines
454 B
Rust

use {crate::tree::Node, std::rc::Rc};
pub trait StackedNode: Node {
fn stacked_into_node(self: Rc<Self>) -> Rc<dyn Node>;
fn stacked_prepare_set_visible(&self) {
// nothing
}
fn stacked_needs_set_visible(&self) -> bool {
true
}
fn stacked_set_visible(&self, visible: bool);
fn stacked_has_workspace_link(&self) -> bool;
fn stacked_absolute_position_constrains_input(&self) -> bool {
true
}
}