Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Slider::snap_values to snap slider to user-specified values #2523

Open
wants to merge 21 commits into
base: master
Choose a base branch
from

Conversation

ac-freeman
Copy link

Screenshot from 2022-12-28 12-54-54

Allows user to set "snap" points with Slider::smart_aim_values. When the slider marker is within a user-specified range of one of these points, it will jump to that point. If smart_aim is disabled, then these values don't do anything. If smart_aim is enabled, then regular smart aim is used as normal whenever the marker is outside the user-specified range of these snap points.

I added it to the demo app for seeing how it works. I'm open to feedback to make sure it fits in with the structural and stylistic requirements of the project.

@ac-freeman ac-freeman changed the title Add feature to snap slider to user-specified values feat: snap slider to user-specified values Dec 28, 2022
@ac-freeman ac-freeman marked this pull request as ready for review December 29, 2022 01:53
Copy link
Owner

@emilk emilk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good start, but I actually think smart-aim and snap-values are orthogonal. That is: I see no reason why you shouldn't be able to turn either feature on/off independently.

If smart-aim is enabled, perform that. If there are snap-values, snap to the closest one (if within aim_radius). Done!

@ac-freeman ac-freeman requested a review from emilk January 27, 2023 15:56
// Divide aim_radius by the granularity we want
if self.snap_values_only || closest_distance < ui.input().aim_radius() as f64 / 15.0 {
// Multiply aim_radius by the granularity we want
if self.snap_values_only || closest_distance < ui.input(|i| i.aim_radius()) * 5.0 {
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think some kind of multiplier is necessary here, but I'm not sure how we should determine what it is.

With no multiplier, the aim radius is too small for it to actually snap. The precision is too tight for using a mouse.
2c9d976390

By multiplying the aim radius by 5 as I have here, the snap works more like I expect.
c0c8b43de6

@ac-freeman ac-freeman requested a review from emilk February 9, 2023 15:06
@ac-freeman ac-freeman requested a review from emilk March 29, 2023 12:51
@emilk emilk changed the title feat: snap slider to user-specified values Add Slider::snap_values to snap slider to user-specified values Mar 25, 2024
@@ -5,7 +5,7 @@ NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG


## Unreleased

* Add `Slider::snap_values`, which lets the user define certain points to snap the slider to when clicking or dragging ([#2523](https://github.com/emilk/egui/pull/2523)).
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* Add `Slider::snap_values`, which lets the user define certain points to snap the slider to when clicking or dragging ([#2523](https://github.com/emilk/egui/pull/2523)).

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we autogenerate the changelog now

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants