diff options
Diffstat (limited to 'widget/src/pane_grid')
| -rw-r--r-- | widget/src/pane_grid/configuration.rs | 4 | ||||
| -rw-r--r-- | widget/src/pane_grid/content.rs | 4 | ||||
| -rw-r--r-- | widget/src/pane_grid/node.rs | 2 | ||||
| -rw-r--r-- | widget/src/pane_grid/pane.rs | 2 | ||||
| -rw-r--r-- | widget/src/pane_grid/split.rs | 2 | ||||
| -rw-r--r-- | widget/src/pane_grid/state.rs | 40 | ||||
| -rw-r--r-- | widget/src/pane_grid/title_bar.rs | 6 | 
7 files changed, 31 insertions, 29 deletions
| diff --git a/widget/src/pane_grid/configuration.rs b/widget/src/pane_grid/configuration.rs index ddbc3bc2..b8aa2c7d 100644 --- a/widget/src/pane_grid/configuration.rs +++ b/widget/src/pane_grid/configuration.rs @@ -2,7 +2,7 @@ use crate::pane_grid::Axis;  /// The arrangement of a [`PaneGrid`].  /// -/// [`PaneGrid`]: crate::widget::PaneGrid +/// [`PaneGrid`]: super::PaneGrid  #[derive(Debug, Clone)]  pub enum Configuration<T> {      /// A split of the available space. @@ -21,6 +21,6 @@ pub enum Configuration<T> {      },      /// A [`Pane`].      /// -    /// [`Pane`]: crate::widget::pane_grid::Pane +    /// [`Pane`]: super::Pane      Pane(T),  } diff --git a/widget/src/pane_grid/content.rs b/widget/src/pane_grid/content.rs index e890e41a..218adcd5 100644 --- a/widget/src/pane_grid/content.rs +++ b/widget/src/pane_grid/content.rs @@ -10,7 +10,7 @@ use crate::pane_grid::{Draggable, TitleBar};  /// The content of a [`Pane`].  /// -/// [`Pane`]: crate::widget::pane_grid::Pane +/// [`Pane`]: super::Pane  #[allow(missing_debug_implementations)]  pub struct Content<'a, Message, Renderer = crate::Renderer>  where @@ -87,7 +87,7 @@ where      /// Draws the [`Content`] with the provided [`Renderer`] and [`Layout`].      /// -    /// [`Renderer`]: crate::Renderer +    /// [`Renderer`]: crate::core::Renderer      pub fn draw(          &self,          tree: &Tree, diff --git a/widget/src/pane_grid/node.rs b/widget/src/pane_grid/node.rs index 6de5920f..3c707f15 100644 --- a/widget/src/pane_grid/node.rs +++ b/widget/src/pane_grid/node.rs @@ -5,7 +5,7 @@ use std::collections::BTreeMap;  /// A layout node of a [`PaneGrid`].  /// -/// [`PaneGrid`]: crate::widget::PaneGrid +/// [`PaneGrid`]: super::PaneGrid  #[derive(Debug, Clone)]  pub enum Node {      /// The region of this [`Node`] is split into two. diff --git a/widget/src/pane_grid/pane.rs b/widget/src/pane_grid/pane.rs index d6fbab83..cabf55c1 100644 --- a/widget/src/pane_grid/pane.rs +++ b/widget/src/pane_grid/pane.rs @@ -1,5 +1,5 @@  /// A rectangular region in a [`PaneGrid`] used to display widgets.  /// -/// [`PaneGrid`]: crate::widget::PaneGrid +/// [`PaneGrid`]: super::PaneGrid  #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]  pub struct Pane(pub(super) usize); diff --git a/widget/src/pane_grid/split.rs b/widget/src/pane_grid/split.rs index 8132272a..ce021978 100644 --- a/widget/src/pane_grid/split.rs +++ b/widget/src/pane_grid/split.rs @@ -1,5 +1,5 @@  /// A divider that splits a region in a [`PaneGrid`] into two different panes.  /// -/// [`PaneGrid`]: crate::widget::PaneGrid +/// [`PaneGrid`]: super::PaneGrid  #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]  pub struct Split(pub(super) usize); diff --git a/widget/src/pane_grid/state.rs b/widget/src/pane_grid/state.rs index 6fd15890..28a52cf0 100644 --- a/widget/src/pane_grid/state.rs +++ b/widget/src/pane_grid/state.rs @@ -1,6 +1,6 @@  //! The state of a [`PaneGrid`].  //! -//! [`PaneGrid`]: crate::widget::PaneGrid +//! [`PaneGrid`]: super::PaneGrid  use crate::core::{Point, Size};  use crate::pane_grid::{      Axis, Configuration, Direction, Edge, Node, Pane, Region, Split, Target, @@ -18,23 +18,23 @@ use std::collections::HashMap;  /// provided to the view function of [`PaneGrid::new`] for displaying each  /// [`Pane`].  /// -/// [`PaneGrid`]: crate::widget::PaneGrid -/// [`PaneGrid::new`]: crate::widget::PaneGrid::new +/// [`PaneGrid`]: super::PaneGrid +/// [`PaneGrid::new`]: super::PaneGrid::new  #[derive(Debug, Clone)]  pub struct State<T> {      /// The panes of the [`PaneGrid`].      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid +    /// [`PaneGrid`]: super::PaneGrid      pub panes: HashMap<Pane, T>,      /// The internal state of the [`PaneGrid`].      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid +    /// [`PaneGrid`]: super::PaneGrid      pub internal: Internal,      /// The maximized [`Pane`] of the [`PaneGrid`].      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid +    /// [`PaneGrid`]: super::PaneGrid      pub(super) maximized: Option<Pane>,  } @@ -236,6 +236,8 @@ impl<T> State<T> {      }      /// Move [`Pane`] to an [`Edge`] of the [`PaneGrid`]. +    /// +    /// [`PaneGrid`]: super::PaneGrid      pub fn move_to_edge(&mut self, pane: &Pane, edge: Edge) {          match edge {              Edge::Top => { @@ -269,8 +271,8 @@ impl<T> State<T> {      /// If you want to swap panes on drag and drop in your [`PaneGrid`], you      /// will need to call this method when handling a [`DragEvent`].      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid -    /// [`DragEvent`]: crate::widget::pane_grid::DragEvent +    /// [`PaneGrid`]: super::PaneGrid +    /// [`DragEvent`]: super::DragEvent      pub fn swap(&mut self, a: &Pane, b: &Pane) {          self.internal.layout.update(&|node| match node {              Node::Split { .. } => {} @@ -292,8 +294,8 @@ impl<T> State<T> {      /// If you want to enable resize interactions in your [`PaneGrid`], you will      /// need to call this method when handling a [`ResizeEvent`].      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid -    /// [`ResizeEvent`]: crate::widget::pane_grid::ResizeEvent +    /// [`PaneGrid`]: super::PaneGrid +    /// [`ResizeEvent`]: super::ResizeEvent      pub fn resize(&mut self, split: &Split, ratio: f32) {          let _ = self.internal.layout.resize(split, ratio);      } @@ -315,7 +317,7 @@ impl<T> State<T> {      /// Maximize the given [`Pane`]. Only this pane will be rendered by the      /// [`PaneGrid`] until [`Self::restore()`] is called.      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid +    /// [`PaneGrid`]: super::PaneGrid      pub fn maximize(&mut self, pane: &Pane) {          self.maximized = Some(*pane);      } @@ -323,14 +325,14 @@ impl<T> State<T> {      /// Restore the currently maximized [`Pane`] to it's normal size. All panes      /// will be rendered by the [`PaneGrid`].      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid +    /// [`PaneGrid`]: super::PaneGrid      pub fn restore(&mut self) {          let _ = self.maximized.take();      }      /// Returns the maximized [`Pane`] of the [`PaneGrid`].      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid +    /// [`PaneGrid`]: super::PaneGrid      pub fn maximized(&self) -> Option<Pane> {          self.maximized      } @@ -338,7 +340,7 @@ impl<T> State<T> {  /// The internal state of a [`PaneGrid`].  /// -/// [`PaneGrid`]: crate::widget::PaneGrid +/// [`PaneGrid`]: super::PaneGrid  #[derive(Debug, Clone)]  pub struct Internal {      layout: Node, @@ -349,7 +351,7 @@ impl Internal {      /// Initializes the [`Internal`] state of a [`PaneGrid`] from a      /// [`Configuration`].      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid +    /// [`PaneGrid`]: super::PaneGrid      pub fn from_configuration<T>(          panes: &mut HashMap<Pane, T>,          content: Configuration<T>, @@ -394,16 +396,16 @@ impl Internal {  /// The current action of a [`PaneGrid`].  /// -/// [`PaneGrid`]: crate::widget::PaneGrid +/// [`PaneGrid`]: super::PaneGrid  #[derive(Debug, Clone, Copy, PartialEq)]  pub enum Action {      /// The [`PaneGrid`] is idle.      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid +    /// [`PaneGrid`]: super::PaneGrid      Idle,      /// A [`Pane`] in the [`PaneGrid`] is being dragged.      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid +    /// [`PaneGrid`]: super::PaneGrid      Dragging {          /// The [`Pane`] being dragged.          pane: Pane, @@ -412,7 +414,7 @@ pub enum Action {      },      /// A [`Split`] in the [`PaneGrid`] is being dragged.      /// -    /// [`PaneGrid`]: crate::widget::PaneGrid +    /// [`PaneGrid`]: super::PaneGrid      Resizing {          /// The [`Split`] being dragged.          split: Split, diff --git a/widget/src/pane_grid/title_bar.rs b/widget/src/pane_grid/title_bar.rs index cac24e68..47457337 100644 --- a/widget/src/pane_grid/title_bar.rs +++ b/widget/src/pane_grid/title_bar.rs @@ -11,7 +11,7 @@ use crate::core::{  /// The title bar of a [`Pane`].  /// -/// [`Pane`]: crate::widget::pane_grid::Pane +/// [`Pane`]: super::Pane  #[allow(missing_debug_implementations)]  pub struct TitleBar<'a, Message, Renderer = crate::Renderer>  where @@ -75,7 +75,7 @@ where      /// [`TitleBar`] is hovered.      ///      /// [`controls`]: Self::controls -    /// [`Pane`]: crate::widget::pane_grid::Pane +    /// [`Pane`]: super::Pane      pub fn always_show_controls(mut self) -> Self {          self.always_show_controls = true;          self @@ -114,7 +114,7 @@ where      /// Draws the [`TitleBar`] with the provided [`Renderer`] and [`Layout`].      /// -    /// [`Renderer`]: crate::Renderer +    /// [`Renderer`]: crate::core::Renderer      pub fn draw(          &self,          tree: &Tree, | 
