2016-10-02 22:22:29 +00:00
|
|
|
use Printer;
|
2016-07-28 06:51:41 +00:00
|
|
|
use With;
|
2016-10-02 22:22:29 +00:00
|
|
|
use XY;
|
2016-07-15 03:27:15 +00:00
|
|
|
use direction;
|
2016-03-15 22:37:57 +00:00
|
|
|
use event::{Event, EventResult, Key};
|
2016-07-17 01:18:33 +00:00
|
|
|
use std::any::Any;
|
2016-07-13 08:19:05 +00:00
|
|
|
use std::cmp::min;
|
2017-10-13 00:29:19 +00:00
|
|
|
use std::ops::Deref;
|
2016-10-02 22:22:29 +00:00
|
|
|
use vec::Vec2;
|
|
|
|
use view::{Selector, SizeCache};
|
|
|
|
use view::View;
|
2016-07-13 08:19:05 +00:00
|
|
|
|
2015-06-08 22:38:10 +00:00
|
|
|
/// Arranges its children linearly according to its orientation.
|
2015-06-08 03:58:10 +00:00
|
|
|
pub struct LinearLayout {
|
|
|
|
children: Vec<Child>,
|
2016-07-15 03:27:15 +00:00
|
|
|
orientation: direction::Orientation,
|
2015-06-08 22:11:44 +00:00
|
|
|
focus: usize,
|
2016-07-11 00:41:49 +00:00
|
|
|
|
2016-07-13 08:19:05 +00:00
|
|
|
cache: Option<XY<SizeCache>>,
|
2015-06-08 03:58:10 +00:00
|
|
|
}
|
|
|
|
|
2015-06-08 22:38:10 +00:00
|
|
|
struct Child {
|
|
|
|
view: Box<View>,
|
2017-11-07 01:11:09 +00:00
|
|
|
// The last result from the child's required_size
|
|
|
|
// Doesn't have to be what the child actually gets.
|
2015-06-08 22:38:10 +00:00
|
|
|
size: Vec2,
|
|
|
|
weight: usize,
|
|
|
|
}
|
2015-06-08 03:58:10 +00:00
|
|
|
|
2016-07-13 08:19:05 +00:00
|
|
|
impl Child {
|
2017-03-05 19:34:45 +00:00
|
|
|
// Compute and caches the required size.
|
2017-01-24 06:52:29 +00:00
|
|
|
fn required_size(&mut self, req: Vec2) -> Vec2 {
|
|
|
|
self.size = self.view.required_size(req);
|
2016-07-13 08:19:05 +00:00
|
|
|
self.size
|
|
|
|
}
|
2016-07-14 05:11:03 +00:00
|
|
|
|
2016-07-15 05:32:43 +00:00
|
|
|
fn as_view(&self) -> &View {
|
2016-07-14 05:11:03 +00:00
|
|
|
&*self.view
|
|
|
|
}
|
2016-07-13 08:19:05 +00:00
|
|
|
}
|
|
|
|
|
2017-10-13 00:29:19 +00:00
|
|
|
struct ChildIterator<I> {
|
2017-11-07 07:51:44 +00:00
|
|
|
// Actual iterator on the children
|
2017-10-13 00:29:19 +00:00
|
|
|
inner: I,
|
2017-11-07 07:51:44 +00:00
|
|
|
// Current offset
|
2017-10-13 00:29:19 +00:00
|
|
|
offset: usize,
|
2017-11-07 07:51:44 +00:00
|
|
|
// Available size
|
|
|
|
available: usize,
|
|
|
|
// Orientation for this layout
|
2017-10-13 00:29:19 +00:00
|
|
|
orientation: direction::Orientation,
|
|
|
|
}
|
|
|
|
|
2017-11-07 07:51:44 +00:00
|
|
|
struct ChildItem<T> {
|
|
|
|
child: T,
|
|
|
|
offset: usize,
|
|
|
|
length: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> ChildIterator<T> {
|
|
|
|
fn new(
|
|
|
|
inner: T, orientation: direction::Orientation, available: usize
|
|
|
|
) -> Self {
|
|
|
|
ChildIterator {
|
|
|
|
inner,
|
|
|
|
available,
|
|
|
|
orientation,
|
|
|
|
offset: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-13 18:22:02 +00:00
|
|
|
impl<'a, T: Deref<Target = Child>, I: Iterator<Item = T>> Iterator
|
|
|
|
for ChildIterator<I> {
|
2017-11-07 07:51:44 +00:00
|
|
|
type Item = ChildItem<T>;
|
2017-10-13 00:29:19 +00:00
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
self.inner.next().map(|child| {
|
2017-11-07 07:51:44 +00:00
|
|
|
// Save the current offset.
|
|
|
|
let offset = self.offset;
|
|
|
|
|
2017-11-17 20:42:30 +00:00
|
|
|
// eprintln!("Available: {}", self.available);
|
2017-11-07 07:51:44 +00:00
|
|
|
|
|
|
|
let length =
|
|
|
|
usize::min(self.available, *child.size.get(self.orientation));
|
|
|
|
|
2017-11-17 20:42:30 +00:00
|
|
|
// Allocated width
|
|
|
|
self.available = self.available.saturating_sub(length);
|
|
|
|
|
2017-11-07 07:51:44 +00:00
|
|
|
self.offset += length;
|
2017-11-17 20:42:30 +00:00
|
|
|
|
2017-11-07 07:51:44 +00:00
|
|
|
ChildItem {
|
|
|
|
offset,
|
|
|
|
length,
|
|
|
|
child,
|
|
|
|
}
|
2017-10-13 00:29:19 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 19:34:45 +00:00
|
|
|
fn cap<'a, I: Iterator<Item = &'a mut usize>>(iter: I, max: usize) {
|
|
|
|
let mut available = max;
|
|
|
|
for item in iter {
|
|
|
|
if *item > available {
|
|
|
|
*item = available;
|
|
|
|
}
|
|
|
|
|
|
|
|
available -= *item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-08 03:58:10 +00:00
|
|
|
impl LinearLayout {
|
2015-06-08 22:38:10 +00:00
|
|
|
/// Creates a new layout with the given orientation.
|
2016-07-15 03:27:15 +00:00
|
|
|
pub fn new(orientation: direction::Orientation) -> Self {
|
2015-06-08 03:58:10 +00:00
|
|
|
LinearLayout {
|
|
|
|
children: Vec::new(),
|
|
|
|
orientation: orientation,
|
2015-06-08 22:11:44 +00:00
|
|
|
focus: 0,
|
2016-07-13 08:19:05 +00:00
|
|
|
cache: None,
|
2015-06-08 03:58:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-08 22:38:10 +00:00
|
|
|
/// Modifies the weight of the last child added.
|
|
|
|
///
|
|
|
|
/// It is an error to call this before adding a child (and it will panic).
|
2015-06-08 03:58:10 +00:00
|
|
|
pub fn weight(mut self, weight: usize) -> Self {
|
|
|
|
self.children.last_mut().unwrap().weight = weight;
|
|
|
|
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2015-06-08 22:38:10 +00:00
|
|
|
/// Adds a child to the layout.
|
2016-07-28 06:51:41 +00:00
|
|
|
///
|
|
|
|
/// Chainable variant.
|
|
|
|
pub fn child<V: View + 'static>(self, view: V) -> Self {
|
|
|
|
self.with(|s| s.add_child(view))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Adds a child to the layout.
|
|
|
|
pub fn add_child<V: View + 'static>(&mut self, view: V) {
|
2015-06-08 03:58:10 +00:00
|
|
|
self.children.push(Child {
|
|
|
|
view: Box::new(view),
|
|
|
|
size: Vec2::zero(),
|
|
|
|
weight: 0,
|
|
|
|
});
|
2016-07-13 08:19:05 +00:00
|
|
|
self.invalidate();
|
2015-06-08 03:58:10 +00:00
|
|
|
}
|
|
|
|
|
2016-07-13 08:19:05 +00:00
|
|
|
// Invalidate the view, to request a layout next time
|
|
|
|
fn invalidate(&mut self) {
|
|
|
|
self.cache = None;
|
|
|
|
}
|
|
|
|
|
2015-06-08 22:38:10 +00:00
|
|
|
/// Creates a new vertical layout.
|
2015-06-08 03:58:10 +00:00
|
|
|
pub fn vertical() -> Self {
|
2016-07-15 03:27:15 +00:00
|
|
|
LinearLayout::new(direction::Orientation::Vertical)
|
2015-06-08 03:58:10 +00:00
|
|
|
}
|
2015-06-08 22:38:10 +00:00
|
|
|
|
|
|
|
/// Creates a new horizontal layout.
|
2015-06-08 03:58:10 +00:00
|
|
|
pub fn horizontal() -> Self {
|
2016-07-15 03:27:15 +00:00
|
|
|
LinearLayout::new(direction::Orientation::Horizontal)
|
2015-06-08 03:58:10 +00:00
|
|
|
}
|
2016-07-13 08:19:05 +00:00
|
|
|
|
|
|
|
// If the cache can be used, return the cached size.
|
|
|
|
// Otherwise, return None.
|
|
|
|
fn get_cache(&self, req: Vec2) -> Option<Vec2> {
|
|
|
|
match self.cache {
|
|
|
|
None => None,
|
|
|
|
Some(ref cache) => {
|
|
|
|
// Is our cache even valid?
|
|
|
|
// Also, is any child invalidating the layout?
|
2017-10-12 23:38:55 +00:00
|
|
|
if cache.zip_map(req, SizeCache::accept).both()
|
|
|
|
&& self.children_are_sleeping()
|
|
|
|
{
|
2016-07-13 08:19:05 +00:00
|
|
|
Some(cache.map(|s| s.value))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn children_are_sleeping(&self) -> bool {
|
|
|
|
!self.children
|
|
|
|
.iter()
|
2016-07-15 05:32:43 +00:00
|
|
|
.map(Child::as_view)
|
2016-07-13 08:19:05 +00:00
|
|
|
.any(View::needs_relayout)
|
|
|
|
}
|
2016-07-14 05:11:03 +00:00
|
|
|
|
2016-07-15 03:27:15 +00:00
|
|
|
/// Returns a cyclic mutable iterator starting with the child in focus
|
2017-10-12 23:38:55 +00:00
|
|
|
fn iter_mut<'a>(
|
|
|
|
&'a mut self, from_focus: bool, source: direction::Relative
|
|
|
|
) -> Box<Iterator<Item = (usize, &mut Child)> + 'a> {
|
2016-07-16 20:25:21 +00:00
|
|
|
match source {
|
2016-07-15 03:27:15 +00:00
|
|
|
direction::Relative::Front => {
|
2016-10-02 22:22:29 +00:00
|
|
|
let start = if from_focus { self.focus } else { 0 };
|
2016-07-15 03:27:15 +00:00
|
|
|
|
|
|
|
Box::new(self.children.iter_mut().enumerate().skip(start))
|
|
|
|
}
|
|
|
|
direction::Relative::Back => {
|
|
|
|
let end = if from_focus {
|
|
|
|
self.focus + 1
|
|
|
|
} else {
|
|
|
|
self.children.len()
|
|
|
|
};
|
|
|
|
Box::new(self.children[..end].iter_mut().enumerate().rev())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn move_focus(&mut self, source: direction::Direction) -> EventResult {
|
2017-10-12 23:38:55 +00:00
|
|
|
let i = if let Some(i) =
|
|
|
|
source.relative(self.orientation).and_then(|rel| {
|
2016-07-15 03:27:15 +00:00
|
|
|
// The iterator starts at the focused element.
|
|
|
|
// We don't want that one.
|
|
|
|
self.iter_mut(true, rel)
|
|
|
|
.skip(1)
|
|
|
|
.filter_map(|p| try_focus(p, source))
|
|
|
|
.next()
|
|
|
|
}) {
|
|
|
|
i
|
|
|
|
} else {
|
|
|
|
return EventResult::Ignored;
|
|
|
|
};
|
|
|
|
self.focus = i;
|
|
|
|
EventResult::Consumed(None)
|
|
|
|
}
|
2017-10-13 00:29:19 +00:00
|
|
|
|
2017-11-07 07:51:44 +00:00
|
|
|
// If the event is a mouse event,
|
|
|
|
// move the focus to the selected view if needed.
|
2017-10-13 00:29:19 +00:00
|
|
|
fn check_focus_grab(&mut self, event: &Event) {
|
2017-10-13 18:22:02 +00:00
|
|
|
if let Event::Mouse {
|
2017-10-13 00:29:19 +00:00
|
|
|
offset,
|
|
|
|
position,
|
|
|
|
event,
|
2017-10-13 18:22:02 +00:00
|
|
|
} = *event
|
2017-10-13 00:29:19 +00:00
|
|
|
{
|
|
|
|
if !event.grabs_focus() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let position = match position.checked_sub(offset) {
|
|
|
|
None => return,
|
|
|
|
Some(pos) => pos,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Find the selected child
|
2017-11-07 07:51:44 +00:00
|
|
|
// Let's only care about the coordinate for our orientation.
|
2017-10-13 00:29:19 +00:00
|
|
|
let position = *position.get(self.orientation);
|
2017-11-07 07:51:44 +00:00
|
|
|
|
|
|
|
// Iterate on the views and find the one
|
|
|
|
// We need a mutable ref to call take_focus later on.
|
|
|
|
for (i, item) in ChildIterator::new(
|
|
|
|
self.children.iter_mut(),
|
|
|
|
self.orientation,
|
|
|
|
// TODO: get actual width (not super important)
|
|
|
|
usize::max_value(),
|
|
|
|
).enumerate()
|
|
|
|
{
|
|
|
|
// Get the child size:
|
|
|
|
// this will give us the allowed window for a click.
|
|
|
|
let child_size = item.child.size.get(self.orientation);
|
|
|
|
|
|
|
|
if (item.offset + child_size > position)
|
|
|
|
&& item.child.view.take_focus(direction::Direction::none())
|
2017-10-13 18:22:02 +00:00
|
|
|
{
|
|
|
|
// eprintln!("It's a match!");
|
|
|
|
self.focus = i;
|
|
|
|
return;
|
2017-10-13 00:29:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-06-08 03:58:10 +00:00
|
|
|
}
|
|
|
|
|
2017-10-12 23:38:55 +00:00
|
|
|
fn try_focus(
|
|
|
|
(i, child): (usize, &mut Child), source: direction::Direction
|
|
|
|
) -> Option<usize> {
|
2016-07-15 03:27:15 +00:00
|
|
|
if child.view.take_focus(source) {
|
|
|
|
Some(i)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-08 03:58:10 +00:00
|
|
|
impl View for LinearLayout {
|
2016-07-16 06:44:38 +00:00
|
|
|
fn draw(&self, printer: &Printer) {
|
2015-06-08 03:58:10 +00:00
|
|
|
// Use pre-computed sizes
|
2017-11-17 20:42:30 +00:00
|
|
|
// eprintln!("Pre loop!");
|
2017-11-07 07:51:44 +00:00
|
|
|
for (i, item) in ChildIterator::new(
|
|
|
|
self.children.iter(),
|
|
|
|
self.orientation,
|
|
|
|
*printer.size.get(self.orientation),
|
|
|
|
).enumerate()
|
|
|
|
{
|
2017-11-07 01:11:09 +00:00
|
|
|
// eprintln!("Printer size: {:?}", printer.size);
|
2017-11-17 20:42:30 +00:00
|
|
|
// eprintln!("Child size: {:?}", item.child.size);
|
|
|
|
// eprintln!("Offset: {:?}", item.offset);
|
2017-11-07 07:51:44 +00:00
|
|
|
let printer = &printer.sub_printer(
|
|
|
|
self.orientation.make_vec(item.offset, 0),
|
|
|
|
item.child.size,
|
|
|
|
i == self.focus,
|
|
|
|
);
|
|
|
|
item.child.view.draw(printer);
|
2015-06-08 03:58:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-11 00:41:49 +00:00
|
|
|
fn needs_relayout(&self) -> bool {
|
2016-07-13 08:19:05 +00:00
|
|
|
if self.cache.is_none() {
|
2016-07-11 00:41:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-07-13 08:19:05 +00:00
|
|
|
!self.children_are_sleeping()
|
2016-07-11 00:41:49 +00:00
|
|
|
}
|
|
|
|
|
2015-06-08 03:58:10 +00:00
|
|
|
fn layout(&mut self, size: Vec2) {
|
2016-07-13 08:19:05 +00:00
|
|
|
// If we can get away without breaking a sweat, you can bet we will.
|
2017-11-07 01:11:09 +00:00
|
|
|
// eprintln!("Laying out with {:?}", size);
|
2016-07-13 08:19:05 +00:00
|
|
|
if self.get_cache(size).is_none() {
|
2017-01-24 06:52:29 +00:00
|
|
|
self.required_size(size);
|
2016-07-13 08:19:05 +00:00
|
|
|
}
|
|
|
|
|
2017-11-07 07:51:44 +00:00
|
|
|
// We'll use this guy a few times, but it's a mouthful...
|
2016-07-26 17:49:37 +00:00
|
|
|
let o = self.orientation;
|
|
|
|
|
2017-11-07 07:51:44 +00:00
|
|
|
for item in
|
|
|
|
ChildIterator::new(self.children.iter_mut(), o, *size.get(o))
|
|
|
|
{
|
2017-03-05 19:34:45 +00:00
|
|
|
// Every item has the same size orthogonal to the layout
|
2017-11-07 07:51:44 +00:00
|
|
|
item.child.size.set_axis_from(o.swap(), &size);
|
|
|
|
|
|
|
|
item.child.view.layout(size.with_axis(o, item.length));
|
2016-07-13 08:19:05 +00:00
|
|
|
}
|
2015-06-08 03:58:10 +00:00
|
|
|
}
|
|
|
|
|
2017-01-24 06:52:29 +00:00
|
|
|
fn required_size(&mut self, req: Vec2) -> Vec2 {
|
2016-07-13 08:19:05 +00:00
|
|
|
// Did anything change since last time?
|
|
|
|
if let Some(size) = self.get_cache(req) {
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-06-08 03:58:10 +00:00
|
|
|
// First, make a naive scenario: everything will work fine.
|
2017-11-07 01:11:09 +00:00
|
|
|
let ideal_sizes: Vec<Vec2> = self.children
|
2016-07-10 02:05:51 +00:00
|
|
|
.iter_mut()
|
2017-01-24 06:52:29 +00:00
|
|
|
.map(|c| c.required_size(req))
|
2016-07-10 02:05:51 +00:00
|
|
|
.collect();
|
2017-11-07 01:11:09 +00:00
|
|
|
debug!("Ideal sizes: {:?}", ideal_sizes);
|
|
|
|
let ideal = self.orientation.stack(ideal_sizes.iter());
|
2017-08-23 14:49:09 +00:00
|
|
|
debug!("Ideal result: {:?}", ideal);
|
2015-06-08 03:58:10 +00:00
|
|
|
|
|
|
|
|
2016-07-13 08:19:05 +00:00
|
|
|
// Does it fit?
|
|
|
|
if ideal.fits_in(req) {
|
|
|
|
// Champagne!
|
|
|
|
self.cache = Some(SizeCache::build(ideal, req));
|
|
|
|
return ideal;
|
|
|
|
}
|
|
|
|
|
2017-03-05 19:34:45 +00:00
|
|
|
// Ok, so maybe it didn't. Budget cuts, everyone.
|
|
|
|
// Let's pretend we have almost no space in this direction.
|
2017-11-07 01:11:09 +00:00
|
|
|
// budget_req is the dummy requirements, in an extreme budget situation.
|
2016-07-26 16:55:22 +00:00
|
|
|
let budget_req = req.with_axis(self.orientation, 1);
|
2017-08-23 14:49:09 +00:00
|
|
|
debug!("Budget req: {:?}", budget_req);
|
2016-07-13 08:19:05 +00:00
|
|
|
|
2017-11-07 01:11:09 +00:00
|
|
|
// See how they like it that way.
|
|
|
|
// This is, hopefully, the absolute minimum these views will accept.
|
2016-07-13 08:19:05 +00:00
|
|
|
let min_sizes: Vec<Vec2> = self.children
|
|
|
|
.iter_mut()
|
2017-01-24 06:52:29 +00:00
|
|
|
.map(|c| c.required_size(budget_req))
|
2016-07-13 08:19:05 +00:00
|
|
|
.collect();
|
|
|
|
let desperate = self.orientation.stack(min_sizes.iter());
|
2017-08-23 14:49:09 +00:00
|
|
|
debug!("Min sizes: {:?}", min_sizes);
|
|
|
|
debug!("Desperate: {:?}", desperate);
|
2016-07-13 08:19:05 +00:00
|
|
|
|
2016-07-14 05:11:03 +00:00
|
|
|
// This is the lowest we'll ever go. It better fit at least.
|
2017-03-05 19:34:45 +00:00
|
|
|
let orientation = self.orientation;
|
2016-07-13 08:19:05 +00:00
|
|
|
if !desperate.fits_in(req) {
|
|
|
|
// Just give up...
|
2017-03-05 19:34:45 +00:00
|
|
|
// TODO: hard-cut
|
2017-10-12 23:38:55 +00:00
|
|
|
cap(
|
|
|
|
self.children
|
2017-03-05 19:34:45 +00:00
|
|
|
.iter_mut()
|
|
|
|
.map(|c| c.size.get_mut(orientation)),
|
2017-10-12 23:38:55 +00:00
|
|
|
*req.get(self.orientation),
|
|
|
|
);
|
2017-03-05 19:34:45 +00:00
|
|
|
|
2016-07-14 05:11:03 +00:00
|
|
|
// TODO: print some error message or something
|
2017-08-23 14:49:09 +00:00
|
|
|
debug!("Seriously? {:?} > {:?}???", desperate, req);
|
2016-07-17 05:05:28 +00:00
|
|
|
// self.cache = Some(SizeCache::build(desperate, req));
|
|
|
|
self.cache = None;
|
2016-07-13 08:19:05 +00:00
|
|
|
return desperate;
|
|
|
|
}
|
|
|
|
|
2017-11-07 01:11:09 +00:00
|
|
|
// So now that we know we _can_ make it all fit, we can redistribute
|
|
|
|
// the extra space we have.
|
|
|
|
|
2016-07-13 08:19:05 +00:00
|
|
|
// This here is how much we're generously offered
|
2017-08-14 23:32:01 +00:00
|
|
|
// (We just checked that req >= desperate, so the subtraction is safe
|
2016-07-13 08:19:05 +00:00
|
|
|
let mut available = self.orientation.get(&(req - desperate));
|
2017-08-23 14:49:09 +00:00
|
|
|
debug!("Available: {:?}", available);
|
2016-07-13 08:19:05 +00:00
|
|
|
|
|
|
|
// Here, we have to make a compromise between the ideal
|
|
|
|
// and the desperate solutions.
|
2017-11-07 01:11:09 +00:00
|
|
|
// This is the vector of (ideal - minimum) sizes for each view.
|
|
|
|
// (which is how much they would like to grow)
|
|
|
|
let mut overweight: Vec<(usize, usize)> = ideal_sizes
|
2017-10-12 23:38:55 +00:00
|
|
|
.iter()
|
2016-07-13 08:19:05 +00:00
|
|
|
.map(|v| self.orientation.get(v))
|
|
|
|
.zip(min_sizes.iter().map(|v| self.orientation.get(v)))
|
2017-08-14 23:32:01 +00:00
|
|
|
.map(|(a, b)| a.saturating_sub(b))
|
2016-07-13 08:19:05 +00:00
|
|
|
.enumerate()
|
|
|
|
.collect();
|
2017-08-23 14:49:09 +00:00
|
|
|
debug!("Overweight: {:?}", overweight);
|
2016-07-13 08:19:05 +00:00
|
|
|
|
|
|
|
// So... distribute `available` to reduce the overweight...
|
|
|
|
// TODO: use child weight in the distribution...
|
2016-07-14 05:11:03 +00:00
|
|
|
|
|
|
|
// We'll give everyone his share of what we have left,
|
|
|
|
// starting with those who ask the least.
|
2016-07-13 08:19:05 +00:00
|
|
|
overweight.sort_by_key(|&(_, weight)| weight);
|
|
|
|
let mut allocations = vec![0; overweight.len()];
|
|
|
|
|
|
|
|
for (i, &(j, weight)) in overweight.iter().enumerate() {
|
2016-07-14 05:11:03 +00:00
|
|
|
// This is the number of people we still have to feed.
|
2016-07-13 08:19:05 +00:00
|
|
|
let remaining = overweight.len() - i;
|
2016-07-14 05:11:03 +00:00
|
|
|
// How much we can spare on each one
|
2016-07-13 08:19:05 +00:00
|
|
|
let budget = available / remaining;
|
2016-07-14 05:11:03 +00:00
|
|
|
// Maybe he doesn't even need that much?
|
2016-07-13 08:19:05 +00:00
|
|
|
let spent = min(budget, weight);
|
|
|
|
allocations[j] = spent;
|
|
|
|
available -= spent;
|
|
|
|
}
|
2017-08-23 14:49:09 +00:00
|
|
|
debug!("Allocations: {:?}", allocations);
|
2016-07-13 08:19:05 +00:00
|
|
|
|
2016-07-14 05:11:03 +00:00
|
|
|
// Final lengths are the minimum ones + generous allocations
|
2017-10-12 23:38:55 +00:00
|
|
|
let final_lengths: Vec<Vec2> = min_sizes
|
|
|
|
.iter()
|
2016-07-13 08:19:05 +00:00
|
|
|
.map(|v| self.orientation.get(v))
|
|
|
|
.zip(allocations.iter())
|
|
|
|
.map(|(a, b)| a + b)
|
2016-07-26 16:55:22 +00:00
|
|
|
.map(|l| req.with_axis(self.orientation, l))
|
2016-07-13 08:19:05 +00:00
|
|
|
.collect();
|
2017-08-23 14:49:09 +00:00
|
|
|
debug!("Final sizes: {:?}", final_lengths);
|
2016-07-13 08:19:05 +00:00
|
|
|
|
2016-07-14 05:11:03 +00:00
|
|
|
// Let's ask everyone one last time. Everyone should be happy.
|
|
|
|
// (But they may ask more on the other axis.)
|
2016-07-13 08:19:05 +00:00
|
|
|
let final_sizes: Vec<Vec2> = self.children
|
|
|
|
.iter_mut()
|
|
|
|
.enumerate()
|
2017-01-24 06:52:29 +00:00
|
|
|
.map(|(i, c)| c.required_size(final_lengths[i]))
|
2016-07-13 08:19:05 +00:00
|
|
|
.collect();
|
2017-08-23 14:49:09 +00:00
|
|
|
debug!("Final sizes2: {:?}", final_sizes);
|
2015-06-08 03:58:10 +00:00
|
|
|
|
2016-07-14 05:11:03 +00:00
|
|
|
// Let's stack everything to see what it looks like.
|
2016-07-13 08:19:05 +00:00
|
|
|
let compromise = self.orientation.stack(final_sizes.iter());
|
2016-07-14 05:11:03 +00:00
|
|
|
|
|
|
|
// Phew, that was a lot of work! I'm not doing it again.
|
2016-07-13 08:19:05 +00:00
|
|
|
self.cache = Some(SizeCache::build(compromise, req));
|
2015-06-08 03:58:10 +00:00
|
|
|
|
2016-07-13 08:19:05 +00:00
|
|
|
compromise
|
2015-06-08 03:58:10 +00:00
|
|
|
}
|
2015-06-08 22:11:44 +00:00
|
|
|
|
2016-07-15 03:27:15 +00:00
|
|
|
fn take_focus(&mut self, source: direction::Direction) -> bool {
|
|
|
|
// In what order will we iterate on the children?
|
|
|
|
let rel = source.relative(self.orientation);
|
|
|
|
// We activate from_focus only if coming from the "sides".
|
2017-10-12 23:38:55 +00:00
|
|
|
let i = if let Some(i) = self.iter_mut(
|
|
|
|
rel.is_none(),
|
|
|
|
rel.unwrap_or(direction::Relative::Front),
|
|
|
|
).filter_map(|p| try_focus(p, source))
|
|
|
|
.next()
|
|
|
|
{
|
2016-07-15 03:27:15 +00:00
|
|
|
// ... we can't update `self.focus` here,
|
|
|
|
// because rustc thinks we still borrow `self`.
|
|
|
|
// :(
|
|
|
|
i
|
2016-07-14 05:11:03 +00:00
|
|
|
} else {
|
2016-07-15 03:27:15 +00:00
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
self.focus = i;
|
|
|
|
true
|
2016-07-14 05:11:03 +00:00
|
|
|
}
|
|
|
|
|
2015-06-08 22:11:44 +00:00
|
|
|
fn on_event(&mut self, event: Event) -> EventResult {
|
2017-10-13 00:29:19 +00:00
|
|
|
self.check_focus_grab(&event);
|
|
|
|
|
|
|
|
let result = {
|
2017-11-07 07:51:44 +00:00
|
|
|
let mut iterator = ChildIterator::new(
|
|
|
|
self.children.iter_mut(),
|
|
|
|
self.orientation,
|
|
|
|
usize::max_value(),
|
|
|
|
);
|
|
|
|
let item = iterator.nth(self.focus).unwrap();
|
|
|
|
let offset = self.orientation.make_vec(item.offset, 0);
|
|
|
|
item.child.view.on_event(event.relativized(offset))
|
2017-10-13 00:29:19 +00:00
|
|
|
};
|
|
|
|
match result {
|
2017-10-12 23:38:55 +00:00
|
|
|
EventResult::Ignored => match event {
|
|
|
|
Event::Shift(Key::Tab) if self.focus > 0 => {
|
|
|
|
self.move_focus(direction::Direction::back())
|
2016-03-15 22:37:57 +00:00
|
|
|
}
|
2017-10-12 23:38:55 +00:00
|
|
|
Event::Key(Key::Tab)
|
|
|
|
if self.focus + 1 < self.children.len() =>
|
|
|
|
{
|
|
|
|
self.move_focus(direction::Direction::front())
|
|
|
|
}
|
|
|
|
Event::Key(Key::Left)
|
|
|
|
if self.orientation == direction::Orientation::Horizontal
|
|
|
|
&& self.focus > 0 =>
|
|
|
|
{
|
|
|
|
self.move_focus(direction::Direction::right())
|
|
|
|
}
|
|
|
|
Event::Key(Key::Up)
|
|
|
|
if self.orientation == direction::Orientation::Vertical
|
|
|
|
&& self.focus > 0 =>
|
|
|
|
{
|
|
|
|
self.move_focus(direction::Direction::down())
|
|
|
|
}
|
|
|
|
Event::Key(Key::Right)
|
|
|
|
if self.orientation == direction::Orientation::Horizontal
|
|
|
|
&& self.focus + 1 < self.children.len() =>
|
|
|
|
{
|
|
|
|
self.move_focus(direction::Direction::left())
|
|
|
|
}
|
|
|
|
Event::Key(Key::Down)
|
|
|
|
if self.orientation == direction::Orientation::Vertical
|
|
|
|
&& self.focus + 1 < self.children.len() =>
|
|
|
|
{
|
|
|
|
self.move_focus(direction::Direction::up())
|
|
|
|
}
|
|
|
|
_ => EventResult::Ignored,
|
|
|
|
},
|
2015-06-08 22:11:44 +00:00
|
|
|
res => res,
|
|
|
|
}
|
|
|
|
}
|
2016-07-17 01:18:33 +00:00
|
|
|
|
2017-10-12 23:38:55 +00:00
|
|
|
fn call_on_any<'a>(
|
|
|
|
&mut self, selector: &Selector,
|
|
|
|
mut callback: Box<FnMut(&mut Any) + 'a>,
|
|
|
|
) {
|
2017-02-07 02:18:17 +00:00
|
|
|
for child in &mut self.children {
|
2017-10-12 23:38:55 +00:00
|
|
|
child
|
|
|
|
.view
|
|
|
|
.call_on_any(selector, Box::new(|any| callback(any)));
|
2017-02-07 02:18:17 +00:00
|
|
|
}
|
2016-07-17 01:18:33 +00:00
|
|
|
}
|
2017-03-25 21:50:52 +00:00
|
|
|
|
|
|
|
fn focus_view(&mut self, selector: &Selector) -> Result<(), ()> {
|
|
|
|
for (i, child) in self.children.iter_mut().enumerate() {
|
|
|
|
if child.view.focus_view(selector).is_ok() {
|
|
|
|
self.focus = i;
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Err(())
|
|
|
|
}
|
2015-06-08 03:58:10 +00:00
|
|
|
}
|