Expose Content
and TitleBar
in iced_glow
This commit is contained in:
parent
3cfe6e428b
commit
072ec69d53
@ -11,8 +11,8 @@
|
|||||||
use crate::Renderer;
|
use crate::Renderer;
|
||||||
|
|
||||||
pub use iced_native::pane_grid::{
|
pub use iced_native::pane_grid::{
|
||||||
Axis, Configuration, Content, Direction, DragEvent, Focus, KeyPressEvent,
|
Axis, Configuration, Direction, DragEvent, Focus, KeyPressEvent, Node,
|
||||||
Node, Pane, ResizeEvent, Split, State,
|
Pane, ResizeEvent, Split, State,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// A collection of panes distributed using either vertical or horizontal splits
|
/// A collection of panes distributed using either vertical or horizontal splits
|
||||||
@ -22,3 +22,15 @@ pub use iced_native::pane_grid::{
|
|||||||
///
|
///
|
||||||
/// This is an alias of an `iced_native` pane grid with an `iced_wgpu::Renderer`.
|
/// This is an alias of an `iced_native` pane grid with an `iced_wgpu::Renderer`.
|
||||||
pub type PaneGrid<'a, Message> = iced_native::PaneGrid<'a, Message, Renderer>;
|
pub type PaneGrid<'a, Message> = iced_native::PaneGrid<'a, Message, Renderer>;
|
||||||
|
|
||||||
|
/// The content of a [`Pane`].
|
||||||
|
///
|
||||||
|
/// [`Pane`]: struct.Pane.html
|
||||||
|
pub type Content<'a, Message> =
|
||||||
|
iced_native::pane_grid::Content<'a, Message, Renderer>;
|
||||||
|
|
||||||
|
/// The title bar of a [`Pane`].
|
||||||
|
///
|
||||||
|
/// [`Pane`]: struct.Pane.html
|
||||||
|
pub type TitleBar<'a, Message> =
|
||||||
|
iced_native::pane_grid::TitleBar<'a, Message, Renderer>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user