Browse Source

Add `clamp_to_range` option to DragValue, rename `clamp_range` to `range` (deprecating the former) (#4728)

Adds the ability to have `DragValue` not clamp values its presented with
and instead apply clamping only once there's any user input.

In action:


https://github.com/emilk/egui/assets/1220815/af42fd67-86d0-4364-8ae6-48a2ec15646a




Alternative name could be `only_clamp_on_change`, not entirely certain
which one is better 🤔
pull/4732/head
Andreas Reich 4 months ago
committed by GitHub
parent
commit
10f092d9d4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      crates/egui/src/introspection.rs
  2. 10
      crates/egui/src/memory.rs
  3. 84
      crates/egui/src/style.rs
  4. 2
      crates/egui/src/widgets/color_picker.rs
  5. 110
      crates/egui/src/widgets/drag_value.rs
  6. 23
      crates/egui/src/widgets/slider.rs
  7. 8
      crates/egui_demo_lib/src/demo/code_example.rs
  8. 4
      crates/egui_demo_lib/src/demo/context_menu.rs
  9. 6
      crates/egui_demo_lib/src/demo/plot_demo.rs
  10. 2
      crates/egui_demo_lib/src/demo/widget_gallery.rs
  11. 4
      examples/custom_plot_manipulation/src/main.rs

4
crates/egui/src/introspection.rs

@ -155,7 +155,7 @@ impl Widget for &mut epaint::TessellationOptions {
.on_hover_text("Apply feathering to smooth out the edges of shapes. Turn off for small performance gain.");
if *feathering {
ui.add(crate::DragValue::new(feathering_size_in_pixels).clamp_range(0.0..=10.0).speed(0.1).suffix(" px"));
ui.add(crate::DragValue::new(feathering_size_in_pixels).range(0.0..=10.0).speed(0.1).suffix(" px"));
}
});
@ -165,7 +165,7 @@ impl Widget for &mut epaint::TessellationOptions {
ui.label("Spline tolerance");
let speed = 0.01 * *bezier_tolerance;
ui.add(
crate::DragValue::new(bezier_tolerance).clamp_range(0.0001..=10.0)
crate::DragValue::new(bezier_tolerance).range(0.0001..=10.0)
.speed(speed)
);
});

10
crates/egui/src/memory.rs

@ -337,16 +337,16 @@ impl Options {
.show(ui, |ui| {
ui.horizontal(|ui| {
ui.label("Line scroll speed");
ui.add(
crate::DragValue::new(line_scroll_speed).clamp_range(0.0..=f32::INFINITY),
)
.on_hover_text("How many lines to scroll with each tick of the mouse wheel");
ui.add(crate::DragValue::new(line_scroll_speed).range(0.0..=f32::INFINITY))
.on_hover_text(
"How many lines to scroll with each tick of the mouse wheel",
);
});
ui.horizontal(|ui| {
ui.label("Scroll zoom speed");
ui.add(
crate::DragValue::new(scroll_zoom_speed)
.clamp_range(0.0..=f32::INFINITY)
.range(0.0..=f32::INFINITY)
.speed(0.001),
)
.on_hover_text("How fast to zoom with ctrl/cmd + scroll");

84
crates/egui/src/style.rs

@ -571,26 +571,26 @@ impl ScrollStyle {
});
ui.horizontal(|ui| {
ui.add(DragValue::new(bar_width).clamp_range(0.0..=32.0));
ui.add(DragValue::new(bar_width).range(0.0..=32.0));
ui.label("Full bar width");
});
if *floating {
ui.horizontal(|ui| {
ui.add(DragValue::new(floating_width).clamp_range(0.0..=32.0));
ui.add(DragValue::new(floating_width).range(0.0..=32.0));
ui.label("Thin bar width");
});
ui.horizontal(|ui| {
ui.add(DragValue::new(floating_allocated_width).clamp_range(0.0..=32.0));
ui.add(DragValue::new(floating_allocated_width).range(0.0..=32.0));
ui.label("Allocated width");
});
}
ui.horizontal(|ui| {
ui.add(DragValue::new(handle_min_length).clamp_range(0.0..=32.0));
ui.add(DragValue::new(handle_min_length).range(0.0..=32.0));
ui.label("Minimum handle length");
});
ui.horizontal(|ui| {
ui.add(DragValue::new(bar_outer_margin).clamp_range(0.0..=32.0));
ui.add(DragValue::new(bar_outer_margin).range(0.0..=32.0));
ui.label("Outer margin");
});
@ -603,7 +603,7 @@ impl ScrollStyle {
if *floating {
crate::Grid::new("opacity").show(ui, |ui| {
fn opacity_ui(ui: &mut Ui, opacity: &mut f32) {
ui.add(DragValue::new(opacity).speed(0.01).clamp_range(0.0..=1.0));
ui.add(DragValue::new(opacity).speed(0.01).range(0.0..=1.0));
}
ui.label("Opacity");
@ -626,7 +626,7 @@ impl ScrollStyle {
});
} else {
ui.horizontal(|ui| {
ui.add(DragValue::new(bar_inner_margin).clamp_range(0.0..=32.0));
ui.add(DragValue::new(bar_inner_margin).range(0.0..=32.0));
ui.label("Inner margin");
});
}
@ -1418,7 +1418,7 @@ impl Style {
ui.label("Animation duration");
ui.add(
DragValue::new(animation_time)
.clamp_range(0.0..=1.0)
.range(0.0..=1.0)
.speed(0.02)
.suffix(" s"),
);
@ -1515,19 +1515,19 @@ impl Spacing {
ui.end_row();
ui.label("Indent");
ui.add(DragValue::new(indent).clamp_range(0.0..=100.0));
ui.add(DragValue::new(indent).range(0.0..=100.0));
ui.end_row();
ui.label("Slider width");
ui.add(DragValue::new(slider_width).clamp_range(0.0..=1000.0));
ui.add(DragValue::new(slider_width).range(0.0..=1000.0));
ui.end_row();
ui.label("Slider rail height");
ui.add(DragValue::new(slider_rail_height).clamp_range(0.0..=50.0));
ui.add(DragValue::new(slider_rail_height).range(0.0..=50.0));
ui.end_row();
ui.label("ComboBox width");
ui.add(DragValue::new(combo_width).clamp_range(0.0..=1000.0));
ui.add(DragValue::new(combo_width).range(0.0..=1000.0));
ui.end_row();
ui.label("Default area size");
@ -1535,20 +1535,20 @@ impl Spacing {
ui.end_row();
ui.label("TextEdit width");
ui.add(DragValue::new(text_edit_width).clamp_range(0.0..=1000.0));
ui.add(DragValue::new(text_edit_width).range(0.0..=1000.0));
ui.end_row();
ui.label("Tooltip wrap width");
ui.add(DragValue::new(tooltip_width).clamp_range(0.0..=1000.0));
ui.add(DragValue::new(tooltip_width).range(0.0..=1000.0));
ui.end_row();
ui.label("Default menu width");
ui.add(DragValue::new(menu_width).clamp_range(0.0..=1000.0));
ui.add(DragValue::new(menu_width).range(0.0..=1000.0));
ui.end_row();
ui.label("Menu spacing")
.on_hover_text("Horizontal spacing between menus");
ui.add(DragValue::new(menu_spacing).clamp_range(0.0..=10.0));
ui.add(DragValue::new(menu_spacing).range(0.0..=10.0));
ui.end_row();
ui.label("Checkboxes etc");
@ -1556,17 +1556,17 @@ impl Spacing {
ui.add(
DragValue::new(icon_width)
.prefix("outer icon width:")
.clamp_range(0.0..=60.0),
.range(0.0..=60.0),
);
ui.add(
DragValue::new(icon_width_inner)
.prefix("inner icon width:")
.clamp_range(0.0..=60.0),
.range(0.0..=60.0),
);
ui.add(
DragValue::new(icon_spacing)
.prefix("spacing:")
.clamp_range(0.0..=10.0),
.range(0.0..=10.0),
);
});
ui.end_row();
@ -1579,7 +1579,7 @@ impl Spacing {
ui.horizontal(|ui| {
ui.label("Max height of a combo box");
ui.add(DragValue::new(combo_height).clamp_range(0.0..=1000.0));
ui.add(DragValue::new(combo_height).range(0.0..=1000.0));
});
ui.collapsing("Scroll Area", |ui| {
@ -1611,15 +1611,15 @@ impl Interaction {
.show(ui, |ui| {
ui.label("interact_radius")
.on_hover_text("Interact with the closest widget within this radius.");
ui.add(DragValue::new(interact_radius).clamp_range(0.0..=20.0));
ui.add(DragValue::new(interact_radius).range(0.0..=20.0));
ui.end_row();
ui.label("resize_grab_radius_side").on_hover_text("Radius of the interactive area of the side of a window during drag-to-resize");
ui.add(DragValue::new(resize_grab_radius_side).clamp_range(0.0..=20.0));
ui.add(DragValue::new(resize_grab_radius_side).range(0.0..=20.0));
ui.end_row();
ui.label("resize_grab_radius_corner").on_hover_text("Radius of the interactive area of the corner of a window during drag-to-resize.");
ui.add(DragValue::new(resize_grab_radius_corner).clamp_range(0.0..=20.0));
ui.add(DragValue::new(resize_grab_radius_corner).range(0.0..=20.0));
ui.end_row();
ui.label("Tooltip delay").on_hover_text(
@ -1627,7 +1627,7 @@ impl Interaction {
);
ui.add(
DragValue::new(tooltip_delay)
.clamp_range(0.0..=1.0)
.range(0.0..=1.0)
.speed(0.05)
.suffix(" s"),
);
@ -1638,7 +1638,7 @@ impl Interaction {
);
ui.add(
DragValue::new(tooltip_grace_time)
.clamp_range(0.0..=1.0)
.range(0.0..=1.0)
.speed(0.05)
.suffix(" s"),
);
@ -1996,7 +1996,7 @@ impl TextCursorStyle {
ui.add(
DragValue::new(on_duration)
.speed(0.1)
.clamp_range(0.0..=2.0)
.range(0.0..=2.0)
.suffix(" s"),
);
ui.end_row();
@ -2005,7 +2005,7 @@ impl TextCursorStyle {
ui.add(
DragValue::new(off_duration)
.speed(0.1)
.clamp_range(0.0..=2.0)
.range(0.0..=2.0)
.suffix(" s"),
);
ui.end_row();
@ -2065,12 +2065,12 @@ fn two_drag_values(value: &mut Vec2, range: std::ops::RangeInclusive<f32>) -> im
ui.horizontal(|ui| {
ui.add(
DragValue::new(&mut value.x)
.clamp_range(range.clone())
.range(range.clone())
.prefix("x: "),
);
ui.add(
DragValue::new(&mut value.y)
.clamp_range(range.clone())
.range(range.clone())
.prefix("y: "),
);
})
@ -2212,7 +2212,7 @@ impl Widget for &mut Rounding {
ui.checkbox(&mut same, "same");
let mut cr = self.nw;
ui.add(DragValue::new(&mut cr).clamp_range(0.0..=f32::INFINITY));
ui.add(DragValue::new(&mut cr).range(0.0..=f32::INFINITY));
*self = Rounding::same(cr);
})
.response
@ -2222,19 +2222,19 @@ impl Widget for &mut Rounding {
crate::Grid::new("rounding").num_columns(2).show(ui, |ui| {
ui.label("NW");
ui.add(DragValue::new(&mut self.nw).clamp_range(0.0..=f32::INFINITY));
ui.add(DragValue::new(&mut self.nw).range(0.0..=f32::INFINITY));
ui.end_row();
ui.label("NE");
ui.add(DragValue::new(&mut self.ne).clamp_range(0.0..=f32::INFINITY));
ui.add(DragValue::new(&mut self.ne).range(0.0..=f32::INFINITY));
ui.end_row();
ui.label("SW");
ui.add(DragValue::new(&mut self.sw).clamp_range(0.0..=f32::INFINITY));
ui.add(DragValue::new(&mut self.sw).range(0.0..=f32::INFINITY));
ui.end_row();
ui.label("SE");
ui.add(DragValue::new(&mut self.se).clamp_range(0.0..=f32::INFINITY));
ui.add(DragValue::new(&mut self.se).range(0.0..=f32::INFINITY));
ui.end_row();
});
})
@ -2266,13 +2266,13 @@ impl Widget for &mut Shadow {
ui.add(
DragValue::new(&mut offset.x)
.speed(1.0)
.clamp_range(-100.0..=100.0)
.range(-100.0..=100.0)
.prefix("x: "),
);
ui.add(
DragValue::new(&mut offset.y)
.speed(1.0)
.clamp_range(-100.0..=100.0)
.range(-100.0..=100.0)
.prefix("y: "),
);
ui.end_row();
@ -2280,14 +2280,14 @@ impl Widget for &mut Shadow {
ui.add(
DragValue::new(blur)
.speed(1.0)
.clamp_range(0.0..=100.0)
.range(0.0..=100.0)
.prefix("blur: "),
);
ui.add(
DragValue::new(spread)
.speed(1.0)
.clamp_range(0.0..=100.0)
.range(0.0..=100.0)
.prefix("spread: "),
);
});
@ -2302,12 +2302,8 @@ impl Widget for &mut Stroke {
let Stroke { width, color } = self;
ui.horizontal(|ui| {
ui.add(
DragValue::new(width)
.speed(0.1)
.clamp_range(0.0..=f32::INFINITY),
)
.on_hover_text("Width");
ui.add(DragValue::new(width).speed(0.1).range(0.0..=f32::INFINITY))
.on_hover_text("Width");
ui.color_edit_button_srgba(color);
// stroke preview:

2
crates/egui/src/widgets/color_picker.rs

@ -410,7 +410,7 @@ fn rgba_edit_ui(ui: &mut Ui, [r, g, b, a]: &mut [f32; 4], alpha: Alpha) -> bool
DragValue::new(value)
.speed(0.003)
.prefix(prefix)
.clamp_range(0.0..=1.0)
.range(0.0..=1.0)
.custom_formatter(|n, _| format!("{n:.03}"))
.ui(ui)
}

110
crates/egui/src/widgets/drag_value.rs

@ -37,7 +37,8 @@ pub struct DragValue<'a> {
speed: f64,
prefix: String,
suffix: String,
clamp_range: RangeInclusive<f64>,
range: RangeInclusive<f64>,
clamp_to_range: bool,
min_decimals: usize,
max_decimals: Option<usize>,
custom_formatter: Option<NumFormatter<'a>>,
@ -55,9 +56,7 @@ impl<'a> DragValue<'a> {
});
if Num::INTEGRAL {
slf.max_decimals(0)
.clamp_range(Num::MIN..=Num::MAX)
.speed(0.25)
slf.max_decimals(0).range(Num::MIN..=Num::MAX).speed(0.25)
} else {
slf
}
@ -69,7 +68,8 @@ impl<'a> DragValue<'a> {
speed: 1.0,
prefix: Default::default(),
suffix: Default::default(),
clamp_range: f64::NEG_INFINITY..=f64::INFINITY,
range: f64::NEG_INFINITY..=f64::INFINITY,
clamp_to_range: true,
min_decimals: 0,
max_decimals: None,
custom_formatter: None,
@ -87,10 +87,35 @@ impl<'a> DragValue<'a> {
self
}
/// Clamp incoming and outgoing values to this range.
/// Sets valid range for the value.
///
/// By default all values are clamped to this range, even when not interacted with.
/// You can change this behavior by passing `false` to [`Slider::clamp_to_range`].
#[deprecated = "Use `range` instead"]
#[inline]
pub fn clamp_range<Num: emath::Numeric>(mut self, range: RangeInclusive<Num>) -> Self {
self.range = range.start().to_f64()..=range.end().to_f64();
self
}
/// Sets valid range for dragging the value.
///
/// By default all values are clamped to this range, even when not interacted with.
/// You can change this behavior by passing `false` to [`Slider::clamp_to_range`].
#[inline]
pub fn range<Num: emath::Numeric>(mut self, range: RangeInclusive<Num>) -> Self {
self.range = range.start().to_f64()..=range.end().to_f64();
self
}
/// If set to `true`, all incoming and outgoing values will be clamped to the sliding [`Self::range`] (if any).
///
/// If set to `false`, a value outside of the range that is set programmatically or by user input will not be changed.
/// Dragging will be restricted to the range regardless of this setting.
/// Default: `true`.
#[inline]
pub fn clamp_range<Num: emath::Numeric>(mut self, clamp_range: RangeInclusive<Num>) -> Self {
self.clamp_range = clamp_range.start().to_f64()..=clamp_range.end().to_f64();
pub fn clamp_to_range(mut self, clamp_to_range: bool) -> Self {
self.clamp_to_range = clamp_to_range;
self
}
@ -157,7 +182,7 @@ impl<'a> DragValue<'a> {
/// # egui::__run_test_ui(|ui| {
/// # let mut my_i32: i32 = 0;
/// ui.add(egui::DragValue::new(&mut my_i32)
/// .clamp_range(0..=((60 * 60 * 24) - 1))
/// .range(0..=((60 * 60 * 24) - 1))
/// .custom_formatter(|n, _| {
/// let n = n as i32;
/// let hours = n / (60 * 60);
@ -201,7 +226,7 @@ impl<'a> DragValue<'a> {
/// # egui::__run_test_ui(|ui| {
/// # let mut my_i32: i32 = 0;
/// ui.add(egui::DragValue::new(&mut my_i32)
/// .clamp_range(0..=((60 * 60 * 24) - 1))
/// .range(0..=((60 * 60 * 24) - 1))
/// .custom_formatter(|n, _| {
/// let n = n as i32;
/// let hours = n / (60 * 60);
@ -361,7 +386,8 @@ impl<'a> Widget for DragValue<'a> {
let Self {
mut get_set_value,
speed,
clamp_range,
range,
clamp_to_range,
prefix,
suffix,
min_decimals,
@ -439,12 +465,15 @@ impl<'a> Widget for DragValue<'a> {
});
}
if clamp_to_range {
value = clamp_value_to_range(value, range.clone());
}
if change != 0.0 {
value += speed * change;
value = emath::round_to_decimals(value, auto_decimals);
}
value = clamp_to_range(value, clamp_range.clone());
if old_value != value {
set(&mut get_set_value, value);
ui.data_mut(|data| data.remove::<String>(id));
@ -466,8 +495,10 @@ impl<'a> Widget for DragValue<'a> {
Some(parser) => parser(&value_text),
None => value_text.parse().ok(),
};
if let Some(parsed_value) = parsed_value {
let parsed_value = clamp_to_range(parsed_value, clamp_range.clone());
if let Some(mut parsed_value) = parsed_value {
if clamp_to_range {
parsed_value = clamp_value_to_range(parsed_value, range.clone());
}
set(&mut get_set_value, parsed_value);
}
}
@ -503,8 +534,10 @@ impl<'a> Widget for DragValue<'a> {
Some(parser) => parser(&value_text),
None => value_text.parse().ok(),
};
if let Some(parsed_value) = parsed_value {
let parsed_value = clamp_to_range(parsed_value, clamp_range.clone());
if let Some(mut parsed_value) = parsed_value {
if clamp_to_range {
parsed_value = clamp_value_to_range(parsed_value, range.clone());
}
set(&mut get_set_value, parsed_value);
}
}
@ -519,9 +552,9 @@ impl<'a> Widget for DragValue<'a> {
.sense(Sense::click_and_drag())
.min_size(ui.spacing().interact_size); // TODO(emilk): find some more generic solution to `min_size`
let cursor_icon = if value <= *clamp_range.start() {
let cursor_icon = if value <= *range.start() {
CursorIcon::ResizeEast
} else if value < *clamp_range.end() {
} else if value < *range.end() {
CursorIcon::ResizeHorizontal
} else {
CursorIcon::ResizeWest
@ -576,7 +609,8 @@ impl<'a> Widget for DragValue<'a> {
);
let rounded_new_value =
emath::round_to_decimals(rounded_new_value, auto_decimals);
let rounded_new_value = clamp_to_range(rounded_new_value, clamp_range.clone());
// Dragging will always clamp the value to the range.
let rounded_new_value = clamp_value_to_range(rounded_new_value, range.clone());
set(&mut get_set_value, rounded_new_value);
ui.data_mut(|data| data.insert_temp::<f64>(id, precise_value));
@ -596,18 +630,18 @@ impl<'a> Widget for DragValue<'a> {
// If either end of the range is unbounded, it's better
// to leave the corresponding AccessKit field set to None,
// to allow for platform-specific default behavior.
if clamp_range.start().is_finite() {
builder.set_min_numeric_value(*clamp_range.start());
if range.start().is_finite() {
builder.set_min_numeric_value(*range.start());
}
if clamp_range.end().is_finite() {
builder.set_max_numeric_value(*clamp_range.end());
if range.end().is_finite() {
builder.set_max_numeric_value(*range.end());
}
builder.set_numeric_value_step(speed);
builder.add_action(Action::SetValue);
if value < *clamp_range.end() {
if value < *range.end() {
builder.add_action(Action::Increment);
}
if value > *clamp_range.start() {
if value > *range.start() {
builder.add_action(Action::Decrement);
}
// The name field is set to the current value by the button,
@ -641,7 +675,7 @@ impl<'a> Widget for DragValue<'a> {
}
}
fn clamp_to_range(x: f64, range: RangeInclusive<f64>) -> f64 {
fn clamp_value_to_range(x: f64, range: RangeInclusive<f64>) -> f64 {
let (mut min, mut max) = (*range.start(), *range.end());
if min.total_cmp(&max) == Ordering::Greater {
@ -659,7 +693,7 @@ fn clamp_to_range(x: f64, range: RangeInclusive<f64>) -> f64 {
#[cfg(test)]
mod tests {
use super::clamp_to_range;
use super::clamp_value_to_range;
macro_rules! total_assert_eq {
($a:expr, $b:expr) => {
@ -673,16 +707,16 @@ mod tests {
}
#[test]
fn test_total_cmp_clamp_to_range() {
total_assert_eq!(0.0_f64, clamp_to_range(-0.0, 0.0..=f64::MAX));
total_assert_eq!(-0.0_f64, clamp_to_range(0.0, -1.0..=-0.0));
total_assert_eq!(-1.0_f64, clamp_to_range(-25.0, -1.0..=1.0));
total_assert_eq!(5.0_f64, clamp_to_range(5.0, -1.0..=10.0));
total_assert_eq!(15.0_f64, clamp_to_range(25.0, -1.0..=15.0));
total_assert_eq!(1.0_f64, clamp_to_range(1.0, 1.0..=10.0));
total_assert_eq!(10.0_f64, clamp_to_range(10.0, 1.0..=10.0));
total_assert_eq!(5.0_f64, clamp_to_range(5.0, 10.0..=1.0));
total_assert_eq!(5.0_f64, clamp_to_range(15.0, 5.0..=1.0));
total_assert_eq!(1.0_f64, clamp_to_range(-5.0, 5.0..=1.0));
fn test_total_cmp_clamp_value_to_range() {
total_assert_eq!(0.0_f64, clamp_value_to_range(-0.0, 0.0..=f64::MAX));
total_assert_eq!(-0.0_f64, clamp_value_to_range(0.0, -1.0..=-0.0));
total_assert_eq!(-1.0_f64, clamp_value_to_range(-25.0, -1.0..=1.0));
total_assert_eq!(5.0_f64, clamp_value_to_range(5.0, -1.0..=10.0));
total_assert_eq!(15.0_f64, clamp_value_to_range(25.0, -1.0..=15.0));
total_assert_eq!(1.0_f64, clamp_value_to_range(1.0, 1.0..=10.0));
total_assert_eq!(10.0_f64, clamp_value_to_range(10.0, 1.0..=10.0));
total_assert_eq!(5.0_f64, clamp_value_to_range(5.0, 10.0..=1.0));
total_assert_eq!(5.0_f64, clamp_value_to_range(15.0, 5.0..=1.0));
total_assert_eq!(1.0_f64, clamp_value_to_range(-5.0, 5.0..=1.0));
}
}

23
crates/egui/src/widgets/slider.rs

@ -48,9 +48,8 @@ pub enum SliderOrientation {
/// Control a number with a slider.
///
/// The slider range defines the values you get when pulling the slider to the far edges.
/// By default, the slider can still show values outside this range,
/// and still allows users to enter values outside the range by clicking the slider value and editing it.
/// If you want to clamp incoming and outgoing values, use [`Slider::clamp_to_range`].
/// By default all values are clamped to this range, even when not interacted with.
/// You can change this behavior by passing `false` to [`Slider::clamp_to_range`].
///
/// The range can include any numbers, and go from low-to-high or from high-to-low.
///
@ -545,14 +544,6 @@ impl<'a> Slider<'a> {
set(&mut self.get_set_value, value);
}
fn clamp_range(&self) -> RangeInclusive<f64> {
if self.clamp_to_range {
self.range()
} else {
f64::NEG_INFINITY..=f64::INFINITY
}
}
fn range(&self) -> RangeInclusive<f64> {
self.range.clone()
}
@ -818,7 +809,8 @@ impl<'a> Slider<'a> {
let response = ui.add({
let mut dv = DragValue::new(&mut value)
.speed(speed)
.clamp_range(self.clamp_range())
.range(self.range.clone())
.clamp_to_range(self.clamp_to_range)
.min_decimals(self.min_decimals)
.max_decimals_opt(self.max_decimals)
.suffix(self.suffix.clone())
@ -870,7 +862,12 @@ impl<'a> Slider<'a> {
builder.set_numeric_value_step(step);
}
builder.add_action(Action::SetValue);
let clamp_range = self.clamp_range();
let clamp_range = if self.clamp_to_range {
self.range()
} else {
f64::NEG_INFINITY..=f64::INFINITY
};
if value < *clamp_range.end() {
builder.add_action(Action::Increment);
}

8
crates/egui_demo_lib/src/demo/code_example.rs

@ -43,15 +43,11 @@ impl CodeExample {
r#"
ui.add(
egui::DragValue::new(age)
.clamp_range(0..=120)
.range(0..=120)
.suffix(" years"),
);"#,
);
ui.add(
egui::DragValue::new(age)
.clamp_range(0..=120)
.suffix(" years"),
);
ui.add(egui::DragValue::new(age).range(0..=120).suffix(" years"));
ui.end_row();
show_code(

4
crates/egui_demo_lib/src/demo/context_menu.rs

@ -95,13 +95,13 @@ impl crate::View for ContextMenus {
egui::Grid::new("button_grid").show(ui, |ui| {
ui.add(
egui::DragValue::new(&mut self.width)
.clamp_range(0.0..=f32::INFINITY)
.range(0.0..=f32::INFINITY)
.speed(1.0)
.prefix("Width: "),
);
ui.add(
egui::DragValue::new(&mut self.height)
.clamp_range(0.0..=f32::INFINITY)
.range(0.0..=f32::INFINITY)
.speed(1.0)
.prefix("Height: "),
);

6
crates/egui_demo_lib/src/demo/plot_demo.rs

@ -174,7 +174,7 @@ impl LineDemo {
ui.add(
egui::DragValue::new(circle_radius)
.speed(0.1)
.clamp_range(0.0..=f64::INFINITY)
.range(0.0..=f64::INFINITY)
.prefix("r: "),
);
ui.horizontal(|ui| {
@ -353,7 +353,7 @@ impl MarkerDemo {
ui.add(
egui::DragValue::new(&mut self.marker_radius)
.speed(0.1)
.clamp_range(0.0..=f64::INFINITY)
.range(0.0..=f64::INFINITY)
.prefix("Radius: "),
);
ui.checkbox(&mut self.automatic_colors, "Automatic colors");
@ -432,7 +432,7 @@ impl LegendDemo {
ui.add(
egui::DragValue::new(&mut config.background_alpha)
.speed(0.02)
.clamp_range(0.0..=1.0),
.range(0.0..=1.0),
);
ui.end_row();
});

2
crates/egui_demo_lib/src/demo/widget_gallery.rs

@ -87,7 +87,7 @@ impl crate::View for WidgetGallery {
(ui.add(
egui::DragValue::new(&mut self.opacity)
.speed(0.01)
.clamp_range(0.0..=1.0),
.range(0.0..=1.0),
) | ui.label("Opacity"))
.on_hover_text("Reduce this value to make widgets semi-transparent");
}

4
examples/custom_plot_manipulation/src/main.rs

@ -47,7 +47,7 @@ impl eframe::App for PlotExample {
ui.horizontal(|ui| {
ui.add(
DragValue::new(&mut self.zoom_speed)
.clamp_range(0.1..=2.0)
.range(0.1..=2.0)
.speed(0.1),
);
ui.label("Zoom speed").on_hover_text("How fast to zoom in and out with the mouse wheel");
@ -55,7 +55,7 @@ impl eframe::App for PlotExample {
ui.horizontal(|ui| {
ui.add(
DragValue::new(&mut self.scroll_speed)
.clamp_range(0.1..=100.0)
.range(0.1..=100.0)
.speed(0.1),
);
ui.label("Scroll speed").on_hover_text("How fast to pan with the mouse wheel");

Loading…
Cancel
Save