Skip to content

Commit bfa43bc

Browse files
committed
Editor: Add smooth zoom (#266)
1 parent 97a5d9e commit bfa43bc

4 files changed

+20
-2
lines changed

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ v0.10.0 (WIP):
66

77
NEW: Canvas: Add example of zooming at fixed point (#270)
88

9+
NEW: Editor: Add smooth zoom (#266)
10+
911
CHANGE: Canvas: Use ImDrawCallback_ImCanvas macro as draw callback sentinel (#256), thanks @nspitko
1012

1113
BUGFIX: Examples: Call ed::EndCreate() and ed::EndDelete() only when ed::BeginCreate() and ed::BeginDelete() returned true

imgui_node_editor.cpp

+12-1
Original file line numberDiff line numberDiff line change
@@ -3450,7 +3450,7 @@ bool ed::NavigateAction::HandleZoom(const Control& control)
34503450

34513451
auto mousePos = io.MousePos;
34523452
auto steps = (int)io.MouseWheel;
3453-
auto newZoom = MatchZoom(steps, m_ZoomLevels[steps < 0 ? 0 : m_ZoomLevelCount - 1]);
3453+
auto newZoom = this->Editor->GetConfig().EnableSmoothZoom ? MatchSmoothZoom(io.MouseWheel) : MatchZoom(steps, m_ZoomLevels[steps < 0 ? 0 : m_ZoomLevelCount - 1]);
34543454

34553455
auto oldView = GetView();
34563456
m_Zoom = newZoom;
@@ -3626,6 +3626,17 @@ ImRect ed::NavigateAction::GetViewRect() const
36263626
return m_Canvas.CalcViewRect(GetView());
36273627
}
36283628

3629+
float ed::NavigateAction::MatchSmoothZoom(float steps)
3630+
{
3631+
auto newZoom = m_Zoom * powf(Editor->GetConfig().SmoothZoomPower, steps);
3632+
if (newZoom < m_ZoomLevels[0])
3633+
return m_ZoomLevels[0];
3634+
else if (newZoom > m_ZoomLevels[m_ZoomLevelCount - 1])
3635+
return m_ZoomLevels[m_ZoomLevelCount - 1];
3636+
else
3637+
return newZoom;
3638+
}
3639+
36293640
float ed::NavigateAction::MatchZoom(int steps, float fallbackZoom)
36303641
{
36313642
auto currentZoomIndex = MatchZoomIndex(steps);

imgui_node_editor.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ struct Config
105105
int SelectButtonIndex; // Mouse button index select action will react to (0-left, 1-right, 2-middle)
106106
int NavigateButtonIndex; // Mouse button index navigate action will react to (0-left, 1-right, 2-middle)
107107
int ContextMenuButtonIndex; // Mouse button index context menu action will react to (0-left, 1-right, 2-middle)
108+
bool EnableSmoothZoom;
109+
float SmoothZoomPower;
108110

109111
Config()
110112
: SettingsFile("NodeEditor.json")
@@ -121,6 +123,8 @@ struct Config
121123
, SelectButtonIndex(0)
122124
, NavigateButtonIndex(1)
123125
, ContextMenuButtonIndex(1)
126+
, EnableSmoothZoom(true)
127+
, SmoothZoomPower(1.1f)
124128
{
125129
}
126130
};
@@ -519,4 +523,4 @@ struct PinId final: Details::SafePointerType<PinId>
519523

520524

521525
//------------------------------------------------------------------------------
522-
# endif // __IMGUI_NODE_EDITOR_H__
526+
# endif // __IMGUI_NODE_EDITOR_H__

imgui_node_editor_internal.h

+1
Original file line numberDiff line numberDiff line change
@@ -886,6 +886,7 @@ struct NavigateAction final: EditorAction
886886

887887
void NavigateTo(const ImRect& target, float duration = -1.0f, NavigationReason reason = NavigationReason::Unknown);
888888

889+
float MatchSmoothZoom(float steps);
889890
float MatchZoom(int steps, float fallbackZoom);
890891
int MatchZoomIndex(int direction);
891892

0 commit comments

Comments
 (0)