Lines Matching refs:Borders

7     widgets::{Borders, Widget},
52 borders: Borders,
67 borders: Borders::NONE, in default()
111 pub fn borders(mut self, flag: Borders) -> Block<'a> { in borders()
124 if self.borders.intersects(Borders::LEFT) { in inner()
128 if self.borders.intersects(Borders::TOP) || self.title.is_some() { in inner()
132 if self.borders.intersects(Borders::RIGHT) { in inner()
135 if self.borders.intersects(Borders::BOTTOM) { in inner()
151 if self.borders.intersects(Borders::LEFT) { in render()
158 if self.borders.intersects(Borders::TOP) { in render()
165 if self.borders.intersects(Borders::RIGHT) { in render()
173 if self.borders.intersects(Borders::BOTTOM) { in render()
183 if self.borders.contains(Borders::RIGHT | Borders::BOTTOM) { in render()
188 if self.borders.contains(Borders::RIGHT | Borders::TOP) { in render()
193 if self.borders.contains(Borders::LEFT | Borders::BOTTOM) { in render()
198 if self.borders.contains(Borders::LEFT | Borders::TOP) { in render()
206 let left_border_dx = if self.borders.intersects(Borders::LEFT) { in render()
212 let right_border_dx = if self.borders.intersects(Borders::RIGHT) { in render()
276 Block::default().borders(Borders::LEFT).inner(Rect { in inner_takes_into_account_the_borders()
291 Block::default().borders(Borders::LEFT).inner(Rect { in inner_takes_into_account_the_borders()
306 Block::default().borders(Borders::LEFT).inner(Rect { in inner_takes_into_account_the_borders()
323 Block::default().borders(Borders::TOP).inner(Rect { in inner_takes_into_account_the_borders()
338 Block::default().borders(Borders::TOP).inner(Rect { in inner_takes_into_account_the_borders()
353 Block::default().borders(Borders::TOP).inner(Rect { in inner_takes_into_account_the_borders()
370 Block::default().borders(Borders::RIGHT).inner(Rect { in inner_takes_into_account_the_borders()
385 Block::default().borders(Borders::RIGHT).inner(Rect { in inner_takes_into_account_the_borders()
400 Block::default().borders(Borders::RIGHT).inner(Rect { in inner_takes_into_account_the_borders()
417 Block::default().borders(Borders::BOTTOM).inner(Rect { in inner_takes_into_account_the_borders()
432 Block::default().borders(Borders::BOTTOM).inner(Rect { in inner_takes_into_account_the_borders()
447 Block::default().borders(Borders::BOTTOM).inner(Rect { in inner_takes_into_account_the_borders()
465 .borders(Borders::ALL) in inner_takes_into_account_the_borders()
476 Block::default().borders(Borders::ALL).inner(Rect { in inner_takes_into_account_the_borders()
491 Block::default().borders(Borders::ALL).inner(Rect { in inner_takes_into_account_the_borders()
506 Block::default().borders(Borders::ALL).inner(Rect { in inner_takes_into_account_the_borders()