Fix some warnings

This commit is contained in:
Alexandre Bury 2015-05-14 17:48:24 -07:00
parent a387bf5f06
commit 506c41c0f8
3 changed files with 23 additions and 20 deletions

View File

@ -1,6 +1,5 @@
pub fn div_up_usize(p: usize, q: usize) -> usize { pub fn div_up_usize(p: usize, q: usize) -> usize {
if p % q == 0 { p/q } div_up(p as u32, q as u32) as usize
else { 1 + p/q }
} }
pub fn div_up(p: u32, q: u32) -> u32 { pub fn div_up(p: u32, q: u32) -> u32 {

View File

@ -16,10 +16,18 @@ impl StackView {
layers: Vec::new(), layers: Vec::new(),
} }
} }
pub fn add_layer(&mut self, view: Box<View>) {
self.layers.push(view);
}
} }
impl View for StackView { impl View for StackView {
fn draw(&self, win: ncurses::WINDOW, size: Size) { fn draw(&self, win: ncurses::WINDOW, size: Size) {
match self.layers.last() {
None => (),
Some(v) => v.draw(win, size),
}
} }
} }

View File

@ -1,5 +1,3 @@
use std::cmp::max;
use ncurses; use ncurses;
use super::Size; use super::Size;
@ -13,18 +11,16 @@ pub struct TextView {
/// Returns the number of lines required to display the given text with the /// Returns the number of lines required to display the given text with the
/// specified maximum line width. /// specified maximum line width.
fn get_line_span(line: &str, maxWidth: usize) -> usize { fn get_line_span(line: &str, max_width: usize) -> usize {
let mut lines = 1; let mut lines = 1;
let mut length = 0; let mut length = 0;
line.split(" ") for l in line.split(" ").map(|word| word.len()) {
.map(|word| word.len())
.map(|l| {
length += l; length += l;
if length > maxWidth { if length > max_width {
length = l; length = l;
lines += 1; lines += 1;
} }
}); }
lines lines
} }
@ -38,15 +34,15 @@ impl TextView {
/// Returns the number of lines required to display the content /// Returns the number of lines required to display the content
/// with the given width. /// with the given width.
fn get_num_lines(&self, maxWidth: usize) -> usize { fn get_num_lines(&self, max_width: usize) -> usize {
self.content.split("\n") self.content.split("\n")
.map(|line| get_line_span(line, maxWidth)) .map(|line| get_line_span(line, max_width))
.fold(0, |sum, x| sum + x) .fold(0, |sum, x| sum + x)
} }
fn get_num_cols(&self, maxHeight: usize) -> usize { fn get_num_cols(&self, max_height: usize) -> usize {
(div_up_usize(self.content.len(), maxHeight)..self.content.len()) (div_up_usize(self.content.len(), max_height)..self.content.len())
.find(|w| self.get_num_lines(*w) <= maxHeight) .find(|w| self.get_num_lines(*w) <= max_height)
.unwrap() .unwrap()
} }
} }
@ -66,7 +62,7 @@ impl View for TextView {
let w = self.get_num_cols(h as usize) as u32; let w = self.get_num_cols(h as usize) as u32;
Size::new(w, h) Size::new(w, h)
}, },
(DimensionRequest::AtMost(w),DimensionRequest::AtMost(h)) => unreachable!(), (DimensionRequest::AtMost(_),DimensionRequest::AtMost(_)) => unreachable!(),
_ => unreachable!(), _ => unreachable!(),
} }
} }