Merge pull request #26 from orhanbalci/master

plotlines api added
This commit is contained in:
Joonas Javanainen 2016-06-09 09:14:02 +03:00
commit 7dff925e79
2 changed files with 78 additions and 0 deletions

View File

@ -46,6 +46,7 @@ pub use sliders::{SliderFloat, SliderInt};
pub use trees::{TreeNode};
pub use widgets::{CollapsingHeader};
pub use window::{Window};
pub use plotlines::{PlotLines};
mod input;
mod menus;
@ -53,6 +54,7 @@ mod sliders;
mod trees;
mod widgets;
mod window;
mod plotlines;
#[cfg(feature = "glium")]
pub mod glium_renderer;
@ -564,3 +566,11 @@ impl<'ui> Ui<'ui> {
}
}
}
impl<'ui> Ui<'ui> {
pub fn plot_lines<'p>(&self,
label: ImStr<'p>,
values: &'p[f32])->PlotLines<'p>{
PlotLines::new(label, values)
}
}

68
src/plotlines.rs Normal file
View File

@ -0,0 +1,68 @@
use imgui_sys;
use super::{ImStr};
use imgui_sys::ImVec2;
use std::{f32, mem, ptr};
use libc::c_float;
#[must_use]
pub struct PlotLines<'p> {
label: ImStr<'p>,
values: &'p [f32],
values_offset: usize,
overlay_text: Option<ImStr<'p>>,
scale_min: f32,
scale_max: f32,
graph_size: ImVec2,
}
impl<'p> PlotLines<'p> {
pub fn new(label: ImStr<'p>, values: &'p [f32]) -> Self {
PlotLines {
label: label,
values: values,
values_offset: 0usize,
overlay_text: None,
scale_min: f32::MAX,
scale_max: f32::MAX,
graph_size: ImVec2::new(0.0f32, 0.0f32),
}
}
#[inline]
pub fn values_offset(self, values_offset: usize) -> Self {
PlotLines { values_offset: values_offset, ..self }
}
#[inline]
pub fn overlay_text(self, overlay_text: ImStr<'p>) -> Self {
PlotLines { overlay_text: Some(overlay_text), ..self }
}
#[inline]
pub fn scale_min(self, scale_min: f32) -> Self {
PlotLines { scale_min: scale_min, ..self }
}
#[inline]
pub fn scale_max(self, scale_max: f32) -> Self {
PlotLines { scale_max: scale_max, ..self }
}
#[inline]
pub fn graph_size(self, graph_size: ImVec2) -> Self {
PlotLines { graph_size: graph_size, ..self }
}
pub fn build(self) {
unsafe {
imgui_sys::igPlotLines(self.label.as_ptr(),
self.values.as_ptr() as *const c_float,
self.values.len() as i32,
self.values_offset as i32,
self.overlay_text.map(|x| x.as_ptr()).unwrap_or(ptr::null()),
self.scale_min,
self.scale_max,
self.graph_size,
mem::size_of::<f32>() as i32);
}
}
}