2020-08-04 20:05:04 +00:00
|
|
|
//! # Rust bindings to ImPlot
|
|
|
|
//!
|
2020-08-08 12:42:22 +00:00
|
|
|
//! This crate contains idiomatic bindings to the C++ [implot library](https://github.com/epezent/implot),
|
|
|
|
//! which use the bindings exposed by the `implot-sys` crate. An attempt is made to keep
|
|
|
|
//! documentation here somewhat self-contained, but when in doubt, the documentation of implot
|
|
|
|
//! itself (in particular also the demo code [here](https://github.com/epezent/implot/blob/master/implot_demo.cpp))
|
|
|
|
//! should help as well.
|
|
|
|
//!
|
2020-10-11 15:17:29 +00:00
|
|
|
//! For usage examples, see the `implot-examples` crate - it contains standalone runnable examples
|
|
|
|
//! that showcase the API and features of this crate. The [Github readme](https://github.com/4bb4/implot-rs)
|
|
|
|
//! lists the features that are already implemented as idiomatic bindings. For everything else, if
|
|
|
|
//! you'd really like a particular feature, file an issue and it'll be given priority for wrapping,
|
|
|
|
//! or directly contribute a PR, or use the low-level bindings directly for the time being.
|
2020-08-08 12:42:22 +00:00
|
|
|
//!
|
2020-10-26 17:54:48 +00:00
|
|
|
use implot_sys as sys;
|
2020-10-11 13:42:30 +00:00
|
|
|
|
2020-10-11 14:25:48 +00:00
|
|
|
// TODO(4bb4) facade-wrap these?
|
2020-10-26 17:54:48 +00:00
|
|
|
pub use self::{context::*, plot::*, plot_elements::*};
|
|
|
|
pub use sys::{ImPlotLimits, ImPlotPoint, ImPlotRange, ImVec2, ImVec4};
|
2020-10-11 13:22:55 +00:00
|
|
|
|
2020-10-11 14:25:48 +00:00
|
|
|
mod context;
|
|
|
|
mod plot;
|
|
|
|
mod plot_elements;
|
2020-08-23 18:10:24 +00:00
|
|
|
|
2020-10-18 14:22:37 +00:00
|
|
|
// The bindings for some reason don't contain this - it has to match the IMPLOT_AUTO from
|
|
|
|
// the original C++ header for things to work properly.
|
|
|
|
const IMPLOT_AUTO: i32 = -1;
|
|
|
|
|
|
|
|
// Number of Y axes, this is used in a bunch of places for storing things like settings.
|
|
|
|
// If this changes, also change the YAxisChoice enum.
|
|
|
|
const NUMBER_OF_Y_AXES: usize = 3;
|
|
|
|
|
|
|
|
/// Choice of Y axis. This an enum instead of just an integer so as to make it impossible
|
|
|
|
/// to select a Y axis that is not present - this makes it easier to avoid `Result`-type
|
|
|
|
/// return values on functions that could otherwise not really fail.
|
|
|
|
// Implementation note: This enum is converted straight to an usize index in a few places
|
|
|
|
// so we can store data about individual axes in arrays, so this pretty much should stay
|
|
|
|
// just a mapping of words to numbers.
|
|
|
|
#[derive(Clone)]
|
|
|
|
#[repr(i32)]
|
|
|
|
pub enum YAxisChoice {
|
|
|
|
First = 0,
|
|
|
|
Second = 1,
|
|
|
|
Third = 2,
|
|
|
|
}
|
|
|
|
|
2020-10-11 14:25:48 +00:00
|
|
|
/// A temporary reference for building plots. This does not really do anything on its own at
|
|
|
|
/// this point, but it is used to enforce that a context is created and active for other features,
|
|
|
|
/// such as creating plots.
|
|
|
|
pub struct PlotUi<'ui> {
|
|
|
|
context: &'ui Context,
|
|
|
|
}
|
2020-08-30 09:01:28 +00:00
|
|
|
|
2020-10-11 14:25:48 +00:00
|
|
|
// --- Markers, color maps, style variables----------------------------------------------------
|
2020-10-04 12:43:18 +00:00
|
|
|
/// Markers, documentation copied from implot.h for convenience.
|
|
|
|
#[repr(i32)]
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub enum Marker {
|
|
|
|
/// no marker
|
|
|
|
None = sys::ImPlotMarker__ImPlotMarker_None,
|
|
|
|
/// a circle marker will be rendered at each point
|
|
|
|
Circle = sys::ImPlotMarker__ImPlotMarker_Circle,
|
|
|
|
/// a square maker will be rendered at each point
|
|
|
|
Square = sys::ImPlotMarker__ImPlotMarker_Square,
|
|
|
|
/// a diamond marker will be rendered at each point
|
|
|
|
Diamond = sys::ImPlotMarker__ImPlotMarker_Diamond,
|
|
|
|
/// an upward-pointing triangle marker will up rendered at each point
|
|
|
|
Up = sys::ImPlotMarker__ImPlotMarker_Up,
|
|
|
|
/// an downward-pointing triangle marker will up rendered at each point
|
|
|
|
Down = sys::ImPlotMarker__ImPlotMarker_Down,
|
|
|
|
/// an leftward-pointing triangle marker will up rendered at each point
|
|
|
|
Left = sys::ImPlotMarker__ImPlotMarker_Left,
|
|
|
|
/// an rightward-pointing triangle marker will up rendered at each point
|
|
|
|
Right = sys::ImPlotMarker__ImPlotMarker_Right,
|
|
|
|
/// a cross marker will be rendered at each point (not filled)
|
|
|
|
Cross = sys::ImPlotMarker__ImPlotMarker_Cross,
|
|
|
|
/// a plus marker will be rendered at each point (not filled)
|
|
|
|
Plus = sys::ImPlotMarker__ImPlotMarker_Plus,
|
|
|
|
/// a asterisk marker will be rendered at each point (not filled)
|
|
|
|
Asterisk = sys::ImPlotMarker__ImPlotMarker_Asterisk,
|
2020-08-23 19:26:27 +00:00
|
|
|
}
|
|
|
|
|
2020-08-30 09:01:28 +00:00
|
|
|
/// Colorable plot elements. These are called "ImPlotCol" in ImPlot itself, but I found that
|
|
|
|
/// name somewhat confusing because we are not referring to colors, but _which_ thing can
|
|
|
|
/// be colored - hence I added the "Element".
|
2020-10-26 17:54:48 +00:00
|
|
|
#[repr(i32)]
|
2020-08-30 09:01:28 +00:00
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub enum PlotColorElement {
|
|
|
|
/// Plot line/outline color (defaults to next unused color in current colormap)
|
|
|
|
Line = sys::ImPlotCol__ImPlotCol_Line,
|
|
|
|
/// Plot fill color for bars (defaults to the current line color)
|
|
|
|
Fill = sys::ImPlotCol__ImPlotCol_Fill,
|
|
|
|
/// Marker outline color (defaults to the current line color)
|
|
|
|
MarkerOutline = sys::ImPlotCol__ImPlotCol_MarkerOutline,
|
|
|
|
/// Marker fill color (defaults to the current line color)
|
|
|
|
MarkerFill = sys::ImPlotCol__ImPlotCol_MarkerFill,
|
|
|
|
/// Error bar color (defaults to text color)
|
|
|
|
ErrorBar = sys::ImPlotCol__ImPlotCol_ErrorBar,
|
|
|
|
/// Plot frame background color (defaults to FRAME_BG)
|
|
|
|
FrameBg = sys::ImPlotCol__ImPlotCol_FrameBg,
|
|
|
|
/// Plot area background color (defaults to WINDOW_BG)
|
|
|
|
PlotBg = sys::ImPlotCol__ImPlotCol_PlotBg,
|
|
|
|
/// Plot area border color (defaults to text color)
|
|
|
|
PlotBorder = sys::ImPlotCol__ImPlotCol_PlotBorder,
|
2020-10-04 12:43:18 +00:00
|
|
|
/// Legend background color (defaults to ImGuiCol_PopupBg)
|
|
|
|
LegendBackground = sys::ImPlotCol__ImPlotCol_LegendBg,
|
|
|
|
/// Legend border color (defaults to ImPlotCol_PlotBorder)
|
|
|
|
LegendBorder = sys::ImPlotCol__ImPlotCol_LegendBorder,
|
|
|
|
/// Legend text color (defaults to ImPlotCol_InlayText)
|
|
|
|
LegendText = sys::ImPlotCol__ImPlotCol_LegendText,
|
|
|
|
/// Plot title text color (defaults to ImGuiCol_Text)
|
|
|
|
TitleText = sys::ImPlotCol__ImPlotCol_TitleText,
|
|
|
|
/// Color of text appearing inside of plots (defaults to ImGuiCol_Text)
|
|
|
|
InlayText = sys::ImPlotCol__ImPlotCol_InlayText,
|
|
|
|
/// X-axis label and tick lables color (defaults to ImGuiCol_Text)
|
2020-08-30 09:01:28 +00:00
|
|
|
XAxis = sys::ImPlotCol__ImPlotCol_XAxis,
|
2020-10-04 12:43:18 +00:00
|
|
|
/// X-axis grid color (defaults to 25% ImPlotCol_XAxis)
|
|
|
|
XAxisGrid = sys::ImPlotCol__ImPlotCol_XAxisGrid,
|
|
|
|
/// Y-axis label and tick labels color (defaults to ImGuiCol_Text)
|
2020-08-30 09:01:28 +00:00
|
|
|
YAxis = sys::ImPlotCol__ImPlotCol_YAxis,
|
2020-10-04 12:43:18 +00:00
|
|
|
/// Y-axis grid color (defaults to 25% ImPlotCol_YAxis)
|
|
|
|
YAxisGrid = sys::ImPlotCol__ImPlotCol_YAxisGrid,
|
|
|
|
/// 2nd y-axis label and tick labels color (defaults to ImGuiCol_Text)
|
2020-08-30 09:01:28 +00:00
|
|
|
YAxis2 = sys::ImPlotCol__ImPlotCol_YAxis2,
|
2020-10-04 12:43:18 +00:00
|
|
|
/// 2nd y-axis grid/label color (defaults to 25% ImPlotCol_YAxis2)
|
|
|
|
YAxisGrid2 = sys::ImPlotCol__ImPlotCol_YAxisGrid2,
|
|
|
|
/// 3rd y-axis label and tick labels color (defaults to ImGuiCol_Text)
|
2020-08-30 09:01:28 +00:00
|
|
|
YAxis3 = sys::ImPlotCol__ImPlotCol_YAxis3,
|
2020-10-04 12:43:18 +00:00
|
|
|
/// 3rd y-axis grid/label color (defaults to 25% ImPlotCol_YAxis3)
|
|
|
|
YAxisGrid3 = sys::ImPlotCol__ImPlotCol_YAxisGrid3,
|
2020-08-30 09:01:28 +00:00
|
|
|
/// Box-selection color (defaults to yellow)
|
|
|
|
Selection = sys::ImPlotCol__ImPlotCol_Selection,
|
2020-10-04 12:43:18 +00:00
|
|
|
/// crosshairs color (defaults to ImPlotCol_PlotBorder)
|
|
|
|
Crosshairs = sys::ImPlotCol__ImPlotCol_Crosshairs,
|
2020-08-30 09:01:28 +00:00
|
|
|
/// Box-query color (defaults to green)
|
|
|
|
Query = sys::ImPlotCol__ImPlotCol_Query,
|
|
|
|
}
|
|
|
|
|
2020-09-27 18:21:30 +00:00
|
|
|
/// Colormap choice. Documentation copied from implot.h for convenience.
|
2020-10-26 17:54:48 +00:00
|
|
|
#[repr(i32)]
|
2020-09-27 18:21:30 +00:00
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub enum Colormap {
|
|
|
|
/// ImPlot default colormap (n=10). Called "Standard" here because Default is reserved.
|
|
|
|
Standard = sys::ImPlotColormap__ImPlotColormap_Default,
|
2020-10-04 12:43:18 +00:00
|
|
|
/// a.k.a. seaborn deep (n=10)
|
|
|
|
Deep = sys::ImPlotColormap__ImPlotColormap_Deep,
|
2020-09-27 18:21:30 +00:00
|
|
|
/// a.k.a. matplotlib "Set1" (n=9)
|
|
|
|
Dark = sys::ImPlotColormap__ImPlotColormap_Dark,
|
|
|
|
/// a.k.a. matplotlib "Pastel1" (n=9)
|
|
|
|
Pastel = sys::ImPlotColormap__ImPlotColormap_Pastel,
|
|
|
|
/// a.k.a. matplotlib "Paired" (n=12)
|
|
|
|
Paired = sys::ImPlotColormap__ImPlotColormap_Paired,
|
|
|
|
/// a.k.a. matplotlib "viridis" (n=11)
|
|
|
|
Viridis = sys::ImPlotColormap__ImPlotColormap_Viridis,
|
|
|
|
/// a.k.a. matplotlib "plasma" (n=11)
|
|
|
|
Plasma = sys::ImPlotColormap__ImPlotColormap_Plasma,
|
|
|
|
/// a.k.a. matplotlib/MATLAB "hot" (n=11)
|
|
|
|
Hot = sys::ImPlotColormap__ImPlotColormap_Hot,
|
|
|
|
/// a.k.a. matplotlib/MATLAB "cool" (n=11)
|
|
|
|
Cool = sys::ImPlotColormap__ImPlotColormap_Cool,
|
|
|
|
/// a.k.a. matplotlib/MATLAB "pink" (n=11)
|
|
|
|
Pink = sys::ImPlotColormap__ImPlotColormap_Pink,
|
|
|
|
/// a.k.a. MATLAB "jet" (n=11)
|
|
|
|
Jet = sys::ImPlotColormap__ImPlotColormap_Jet,
|
|
|
|
}
|
|
|
|
|
2020-10-26 17:54:48 +00:00
|
|
|
#[repr(i32)]
|
2020-08-30 09:01:28 +00:00
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
pub enum StyleVar {
|
|
|
|
/// f32, line weight in pixels
|
|
|
|
LineWeight = sys::ImPlotStyleVar__ImPlotStyleVar_LineWeight,
|
|
|
|
/// u32, marker specification
|
|
|
|
Marker = sys::ImPlotStyleVar__ImPlotStyleVar_Marker,
|
|
|
|
/// f32, marker size in pixels (roughly the marker's "radius")
|
|
|
|
MarkerSize = sys::ImPlotStyleVar__ImPlotStyleVar_MarkerSize,
|
|
|
|
/// f32, outline weight of markers in pixels
|
|
|
|
MarkerWeight = sys::ImPlotStyleVar__ImPlotStyleVar_MarkerWeight,
|
2020-10-04 12:43:18 +00:00
|
|
|
/// f32, alpha modifier applied to all plot item fills
|
|
|
|
FillAlpha = sys::ImPlotStyleVar__ImPlotStyleVar_FillAlpha,
|
2020-08-30 09:01:28 +00:00
|
|
|
/// f32, error bar whisker width in pixels
|
|
|
|
ErrorBarSize = sys::ImPlotStyleVar__ImPlotStyleVar_ErrorBarSize,
|
|
|
|
/// f32, error bar whisker weight in pixels
|
|
|
|
ErrorBarWeight = sys::ImPlotStyleVar__ImPlotStyleVar_ErrorBarWeight,
|
|
|
|
/// f32, digital channels bit height (at 1) in pixels
|
|
|
|
DigitalBitHeight = sys::ImPlotStyleVar__ImPlotStyleVar_DigitalBitHeight,
|
|
|
|
/// f32, digital channels bit padding gap in pixels
|
|
|
|
DigitalBitGap = sys::ImPlotStyleVar__ImPlotStyleVar_DigitalBitGap,
|
2020-10-04 12:43:18 +00:00
|
|
|
/// f32, thickness of border around plot area
|
|
|
|
PlotBorderSize = sys::ImPlotStyleVar__ImPlotStyleVar_PlotBorderSize,
|
|
|
|
/// f32, alpha multiplier applied to minor axis grid lines
|
|
|
|
MinorAlpha = sys::ImPlotStyleVar__ImPlotStyleVar_MinorAlpha,
|
|
|
|
/// ImVec2, major tick lengths for X and Y axes
|
|
|
|
MajorTickLen = sys::ImPlotStyleVar__ImPlotStyleVar_MajorTickLen,
|
|
|
|
/// ImVec2, minor tick lengths for X and Y axes
|
|
|
|
MinorTickLen = sys::ImPlotStyleVar__ImPlotStyleVar_MinorTickLen,
|
|
|
|
/// ImVec2, line thickness of major ticks
|
|
|
|
MajorTickSize = sys::ImPlotStyleVar__ImPlotStyleVar_MajorTickSize,
|
|
|
|
/// ImVec2, line thickness of minor ticks
|
|
|
|
MinorTickSize = sys::ImPlotStyleVar__ImPlotStyleVar_MinorTickSize,
|
|
|
|
/// ImVec2, line thickness of major grid lines
|
|
|
|
MajorGridSize = sys::ImPlotStyleVar__ImPlotStyleVar_MajorGridSize,
|
|
|
|
/// ImVec2, line thickness of minor grid lines
|
|
|
|
MinorGridSize = sys::ImPlotStyleVar__ImPlotStyleVar_MinorGridSize,
|
|
|
|
/// ImVec2, padding between widget frame and plot area and/or labels
|
|
|
|
PlotPadding = sys::ImPlotStyleVar__ImPlotStyleVar_PlotPadding,
|
|
|
|
/// ImVec2, padding between axes labels, tick labels, and plot edge
|
|
|
|
LabelPadding = sys::ImPlotStyleVar__ImPlotStyleVar_LabelPadding,
|
|
|
|
/// ImVec2, legend padding from top-left of plot
|
|
|
|
LegendPadding = sys::ImPlotStyleVar__ImPlotStyleVar_LegendPadding,
|
|
|
|
/// ImVec2, padding between plot edge and interior info text
|
|
|
|
InfoPadding = sys::ImPlotStyleVar__ImPlotStyleVar_InfoPadding,
|
|
|
|
/// ImVec2, minimum size plot frame can be when shrunk
|
|
|
|
PlotMinSize = sys::ImPlotStyleVar__ImPlotStyleVar_PlotMinSize,
|
|
|
|
}
|
|
|
|
|
2020-09-27 18:21:30 +00:00
|
|
|
/// Switch to one of the built-in preset colormaps. If samples is greater than 1, the map will be
|
|
|
|
/// linearly resampled.
|
|
|
|
pub fn set_colormap_from_preset(preset: Colormap, samples: u32) {
|
|
|
|
unsafe {
|
|
|
|
// "as" casts saturate as of Rust 1.45. This is safe here, and at least the enum
|
|
|
|
// values are not expected to go outside the range of an i32 anyway, so there is no
|
|
|
|
// risk of changed values.
|
|
|
|
sys::ImPlot_SetColormapPlotColormap(preset as i32, samples as i32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set a custom colormap in the form of a vector of colors.
|
|
|
|
pub fn set_colormap_from_vec(colors: Vec<ImVec4>) {
|
|
|
|
unsafe {
|
|
|
|
sys::ImPlot_SetColormapVec4Ptr(colors.as_ptr(), colors.len() as i32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-23 19:26:27 +00:00
|
|
|
// --- Push/pop utils -------------------------------------------------------------------------
|
|
|
|
// Currently not in a struct yet. imgui-rs has some smarts about dealing with stacks, in particular
|
|
|
|
// leak detection, which I'd like to replicate here at some point.
|
|
|
|
/// Push a style color to the stack, giving an element and the four components of the color.
|
2020-08-30 09:01:28 +00:00
|
|
|
/// The components should be between 0.0 (no intensity) and 1.0 (full intensity).
|
|
|
|
/// The return value is a token that gets used for removing the style color from the stack again:
|
|
|
|
/// ```no_run
|
|
|
|
/// # use implot::{push_style_color, PlotColorElement};
|
|
|
|
/// let pushed_var = push_style_color(&PlotColorElement::Line, 1.0, 1.0, 1.0, 0.2);
|
|
|
|
/// // Plot some things
|
|
|
|
/// pushed_var.pop();
|
|
|
|
/// ```
|
|
|
|
pub fn push_style_color(
|
|
|
|
element: &PlotColorElement,
|
|
|
|
red: f32,
|
|
|
|
green: f32,
|
|
|
|
blue: f32,
|
|
|
|
alpha: f32,
|
|
|
|
) -> StyleColorToken {
|
2020-08-23 19:26:27 +00:00
|
|
|
unsafe {
|
|
|
|
sys::ImPlot_PushStyleColorVec4(
|
2020-08-30 09:01:28 +00:00
|
|
|
*element as sys::ImPlotCol,
|
2020-08-23 19:26:27 +00:00
|
|
|
sys::ImVec4 {
|
|
|
|
x: red,
|
|
|
|
y: green,
|
|
|
|
z: blue,
|
|
|
|
w: alpha,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2020-08-30 09:01:28 +00:00
|
|
|
StyleColorToken { was_popped: false }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Tracks a change pushed to the style color stack
|
|
|
|
pub struct StyleColorToken {
|
|
|
|
/// Whether this token has been popped or not.
|
|
|
|
was_popped: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StyleColorToken {
|
|
|
|
pub fn pop(mut self) {
|
|
|
|
if self.was_popped {
|
|
|
|
panic!("Attempted to pop a style color token twice.")
|
|
|
|
}
|
|
|
|
self.was_popped = true;
|
|
|
|
unsafe {
|
|
|
|
sys::ImPlot_PopStyleColor(1);
|
|
|
|
}
|
|
|
|
}
|
2020-08-23 19:26:27 +00:00
|
|
|
}
|
|
|
|
|
2020-08-30 09:01:28 +00:00
|
|
|
/// Push a f32 style variable to the stack. The returned token is used for removing
|
|
|
|
/// the variable from the stack again:
|
|
|
|
/// ```no_run
|
|
|
|
/// # use implot::{push_style_var_f32, StyleVar};
|
|
|
|
/// let pushed_var = push_style_var_f32(&StyleVar::LineWeight, 11.0);
|
|
|
|
/// // Plot some things
|
|
|
|
/// pushed_var.pop();
|
|
|
|
/// ```
|
|
|
|
pub fn push_style_var_f32(element: &StyleVar, value: f32) -> StyleVarToken {
|
|
|
|
unsafe {
|
|
|
|
sys::ImPlot_PushStyleVarFloat(*element as sys::ImPlotStyleVar, value);
|
|
|
|
}
|
|
|
|
StyleVarToken { was_popped: false }
|
|
|
|
}
|
|
|
|
|
2020-10-04 12:43:18 +00:00
|
|
|
/// Push an u32 style variable to the stack. The only i32 style variable is Marker
|
2020-08-30 09:01:28 +00:00
|
|
|
/// at the moment, for that, use something like
|
|
|
|
/// ```no_run
|
2020-10-04 12:43:18 +00:00
|
|
|
/// # use implot::{push_style_var_i32, StyleVar, Marker};
|
|
|
|
/// let markerchoice = push_style_var_i32(&StyleVar::Marker, Marker::Cross as i32);
|
2020-08-30 09:01:28 +00:00
|
|
|
/// // plot things
|
|
|
|
/// markerchoice.pop()
|
|
|
|
/// ```
|
2020-10-04 12:43:18 +00:00
|
|
|
pub fn push_style_var_i32(element: &StyleVar, value: i32) -> StyleVarToken {
|
2020-08-30 09:01:28 +00:00
|
|
|
unsafe {
|
2020-10-04 12:43:18 +00:00
|
|
|
sys::ImPlot_PushStyleVarInt(*element as sys::ImPlotStyleVar, value);
|
|
|
|
}
|
|
|
|
StyleVarToken { was_popped: false }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Push an ImVec2 style variable to the stack. The returned token is used for removing
|
|
|
|
/// the variable from the stack again.
|
|
|
|
pub fn push_style_var_imvec2(element: &StyleVar, value: ImVec2) -> StyleVarToken {
|
|
|
|
unsafe {
|
|
|
|
sys::ImPlot_PushStyleVarVec2(*element as sys::ImPlotStyleVar, value);
|
2020-08-30 09:01:28 +00:00
|
|
|
}
|
|
|
|
StyleVarToken { was_popped: false }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Tracks a change pushed to the style variable stack
|
|
|
|
pub struct StyleVarToken {
|
|
|
|
/// Whether this token has been popped or not.
|
|
|
|
was_popped: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl StyleVarToken {
|
|
|
|
/// Pop this token from the stack.
|
|
|
|
pub fn pop(mut self) {
|
|
|
|
if self.was_popped {
|
|
|
|
panic!("Attempted to pop a style var token twice.")
|
|
|
|
}
|
|
|
|
self.was_popped = true;
|
|
|
|
unsafe {
|
|
|
|
sys::ImPlot_PopStyleVar(1);
|
|
|
|
}
|
|
|
|
}
|
2020-08-23 19:26:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- Miscellaneous -----------------------------------------------------------------------------
|
|
|
|
/// Returns true if the plot area in the current or most recent plot is hovered.
|
|
|
|
pub fn is_plot_hovered() -> bool {
|
|
|
|
unsafe { sys::ImPlot_IsPlotHovered() }
|
|
|
|
}
|
|
|
|
|
2020-08-30 09:01:28 +00:00
|
|
|
/// Returns true if the current or most recent plot is queried
|
|
|
|
pub fn is_plot_queried() -> bool {
|
|
|
|
unsafe { sys::ImPlot_IsPlotQueried() }
|
|
|
|
}
|
|
|
|
|
2020-10-18 14:22:37 +00:00
|
|
|
/// Returns the mouse position in x,y coordinates of the current or most recent plot,
|
|
|
|
/// for the specified choice of Y axis. If `None` is the Y axis choice, that means the
|
|
|
|
/// most recently selected Y axis is chosen.
|
|
|
|
pub fn get_plot_mouse_position(y_axis_choice: Option<YAxisChoice>) -> ImPlotPoint {
|
|
|
|
let y_axis_choice_i32 = match y_axis_choice {
|
|
|
|
Some(choice) => choice as i32,
|
|
|
|
None => IMPLOT_AUTO,
|
|
|
|
};
|
2020-10-04 12:43:18 +00:00
|
|
|
let mut point = ImPlotPoint { x: 0.0, y: 0.0 }; // doesn't seem to have default()
|
|
|
|
unsafe {
|
2020-10-18 14:22:37 +00:00
|
|
|
sys::ImPlot_GetPlotMousePos(&mut point as *mut ImPlotPoint, y_axis_choice_i32);
|
2020-10-04 12:43:18 +00:00
|
|
|
}
|
|
|
|
point
|
2020-08-23 19:26:27 +00:00
|
|
|
}
|
|
|
|
|
2020-10-18 14:22:37 +00:00
|
|
|
/// Returns the current or most recent plot axis range for the specified choice of Y axis. If
|
|
|
|
/// `None` is the Y axis choice, that means the most recently selected Y axis is chosen.
|
|
|
|
pub fn get_plot_limits(y_axis_choice: Option<YAxisChoice>) -> ImPlotLimits {
|
|
|
|
let y_axis_choice_i32 = match y_axis_choice {
|
|
|
|
Some(choice) => choice as i32,
|
|
|
|
None => IMPLOT_AUTO,
|
|
|
|
};
|
2020-10-04 12:43:18 +00:00
|
|
|
// ImPlotLimits doesn't seem to have default()
|
|
|
|
let mut limits = ImPlotLimits {
|
|
|
|
X: ImPlotRange { Min: 0.0, Max: 0.0 },
|
|
|
|
Y: ImPlotRange { Min: 0.0, Max: 0.0 },
|
|
|
|
};
|
|
|
|
unsafe {
|
2020-10-18 14:22:37 +00:00
|
|
|
sys::ImPlot_GetPlotLimits(&mut limits as *mut ImPlotLimits, y_axis_choice_i32);
|
2020-10-04 12:43:18 +00:00
|
|
|
}
|
|
|
|
limits
|
2020-08-23 19:26:27 +00:00
|
|
|
}
|
|
|
|
|
2020-10-18 14:22:37 +00:00
|
|
|
/// Returns the query limits of the current or most recent plot, for the specified choice of Y
|
|
|
|
/// axis. If `None` is the Y axis choice, that means the most recently selected Y axis is chosen.
|
|
|
|
pub fn get_plot_query(y_axis_choice: Option<YAxisChoice>) -> ImPlotLimits {
|
|
|
|
let y_axis_choice_i32 = match y_axis_choice {
|
|
|
|
Some(choice) => choice as i32,
|
|
|
|
None => IMPLOT_AUTO,
|
|
|
|
};
|
2020-10-04 12:43:18 +00:00
|
|
|
// ImPlotLimits doesn't seem to have default()
|
|
|
|
let mut limits = ImPlotLimits {
|
|
|
|
X: ImPlotRange { Min: 0.0, Max: 0.0 },
|
|
|
|
Y: ImPlotRange { Min: 0.0, Max: 0.0 },
|
|
|
|
};
|
|
|
|
unsafe {
|
2020-10-18 14:22:37 +00:00
|
|
|
sys::ImPlot_GetPlotQuery(&mut limits as *mut ImPlotLimits, y_axis_choice_i32);
|
2020-10-04 12:43:18 +00:00
|
|
|
}
|
|
|
|
limits
|
2020-08-30 09:01:28 +00:00
|
|
|
}
|
|
|
|
|
2020-10-18 14:22:37 +00:00
|
|
|
/// Set the Y axis to be used for any upcoming plot elements
|
|
|
|
pub fn set_plot_y_axis(y_axis_choice: YAxisChoice) {
|
|
|
|
unsafe {
|
|
|
|
sys::ImPlot_SetPlotYAxis(y_axis_choice as i32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if the XAxis plot area in the current plot is hovered.
|
|
|
|
pub fn is_plot_x_axis_hovered() -> bool {
|
|
|
|
unsafe { sys::ImPlot_IsPlotXAxisHovered() }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if the YAxis[n] plot area in the current plot is hovered. If `None` is the Y axis
|
|
|
|
/// choice, that means the most recently selected Y axis is chosen.
|
|
|
|
pub fn is_plot_y_axis_hovered(y_axis_choice: Option<YAxisChoice>) -> bool {
|
|
|
|
let y_axis_choice_i32 = match y_axis_choice {
|
|
|
|
Some(choice) => choice as i32,
|
|
|
|
None => IMPLOT_AUTO,
|
|
|
|
};
|
|
|
|
unsafe { sys::ImPlot_IsPlotYAxisHovered(y_axis_choice_i32) }
|
|
|
|
}
|
|
|
|
|
2020-08-23 19:26:27 +00:00
|
|
|
// --- Demo window -------------------------------------------------------------------------------
|
2020-08-08 12:42:22 +00:00
|
|
|
/// Show the demo window for poking around what functionality implot has to
|
|
|
|
/// offer. Note that not all of this is necessarily implemented in implot-rs
|
|
|
|
/// already - if you find something missing you'd really like, raise an issue.
|
|
|
|
// This requires implot_demo.cpp to be in the list of sources in implot-sys.
|
|
|
|
pub fn show_demo_window(show: &mut bool) {
|
|
|
|
unsafe {
|
|
|
|
implot_sys::ImPlot_ShowDemoWindow(show);
|
|
|
|
}
|
|
|
|
}
|