diff options
author | 2020-03-14 06:32:56 +0100 | |
---|---|---|
committer | 2020-03-14 06:32:56 +0100 | |
commit | a79603e4ca5e0cee46a737ef0b1af5c69ddb49b6 (patch) | |
tree | 30c794fe0f767dafe710034bd57402f98f3e74d5 /native/src/widget/pane_grid/axis.rs | |
parent | 00c2b55b569ea2ff2fc9de9bbf02475c6ede7e42 (diff) | |
download | iced-a79603e4ca5e0cee46a737ef0b1af5c69ddb49b6.tar.gz iced-a79603e4ca5e0cee46a737ef0b1af5c69ddb49b6.tar.bz2 iced-a79603e4ca5e0cee46a737ef0b1af5c69ddb49b6.zip |
Rename `Split` to `Axis`
Diffstat (limited to 'native/src/widget/pane_grid/axis.rs')
-rw-r--r-- | native/src/widget/pane_grid/axis.rs | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/native/src/widget/pane_grid/axis.rs b/native/src/widget/pane_grid/axis.rs new file mode 100644 index 00000000..375509b7 --- /dev/null +++ b/native/src/widget/pane_grid/axis.rs @@ -0,0 +1,54 @@ +use crate::Rectangle; + +#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq)] +pub enum Axis { + Horizontal, + Vertical, +} + +impl Axis { + pub(super) fn split( + &self, + rectangle: &Rectangle, + ratio: f32, + halved_spacing: f32, + ) -> (Rectangle, Rectangle) { + match self { + Axis::Horizontal => { + let width_left = + (rectangle.width * ratio).round() - halved_spacing; + let width_right = rectangle.width - width_left - halved_spacing; + + ( + Rectangle { + width: width_left, + ..*rectangle + }, + Rectangle { + x: rectangle.x + width_left + halved_spacing, + width: width_right, + ..*rectangle + }, + ) + } + Axis::Vertical => { + let height_top = + (rectangle.height * ratio).round() - halved_spacing; + let height_bottom = + rectangle.height - height_top - halved_spacing; + + ( + Rectangle { + height: height_top, + ..*rectangle + }, + Rectangle { + y: rectangle.y + height_top + halved_spacing, + height: height_bottom, + ..*rectangle + }, + ) + } + } + } +} |