summaryrefslogtreecommitdiffstats
path: root/native/src/widget/pane_grid.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2020-05-25 20:34:10 +0200
committerLibravatar GitHub <noreply@github.com>2020-05-25 20:34:10 +0200
commit5324eb10242a7dd33f5271dc6fc9eeb09eb2cb50 (patch)
tree55ba66173ef8b5c34784945609daf5b6dc77d6aa /native/src/widget/pane_grid.rs
parent33448508a524db6447b380cc236be6f0d5ca8a86 (diff)
parent230bd6f7475752352ca9985802db0633e3508d9f (diff)
downloadiced-5324eb10242a7dd33f5271dc6fc9eeb09eb2cb50.tar.gz
iced-5324eb10242a7dd33f5271dc6fc9eeb09eb2cb50.tar.bz2
iced-5324eb10242a7dd33f5271dc6fc9eeb09eb2cb50.zip
Merge pull request #358 from hecrj/improvement/pane-grid-ergonomics
Implement `State::layout` and `State::with_content` in `pane_grid`
Diffstat (limited to 'native/src/widget/pane_grid.rs')
-rw-r--r--native/src/widget/pane_grid.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget/pane_grid.rs b/native/src/widget/pane_grid.rs
index cb623b29..076ae76f 100644
--- a/native/src/widget/pane_grid.rs
+++ b/native/src/widget/pane_grid.rs
@@ -9,6 +9,7 @@
//! [`pane_grid` example]: https://github.com/hecrj/iced/tree/0.1/examples/pane_grid
//! [`PaneGrid`]: struct.PaneGrid.html
mod axis;
+mod content;
mod direction;
mod node;
mod pane;
@@ -16,7 +17,9 @@ mod split;
mod state;
pub use axis::Axis;
+pub use content::Content;
pub use direction::Direction;
+pub use node::Node;
pub use pane::Pane;
pub use split::Split;
pub use state::{Focus, State};