Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/editor/gui/editor_zoom_widget.cpp
20892 views
1
/**************************************************************************/
2
/* editor_zoom_widget.cpp */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#include "editor_zoom_widget.h"
32
33
#include "core/input/input.h"
34
#include "core/os/keyboard.h"
35
#include "core/string/translation_server.h"
36
#include "editor/settings/editor_settings.h"
37
#include "editor/themes/editor_scale.h"
38
39
void EditorZoomWidget::_update_zoom_label() {
40
const String &lang = _get_locale();
41
42
String zoom_text;
43
// The zoom level displayed is relative to the editor scale
44
// (like in most image editors). Its lower bound is clamped to 1 as some people
45
// lower the editor scale to increase the available real estate,
46
// even if their display doesn't have a particularly low DPI.
47
if (zoom >= 10) {
48
zoom_text = TranslationServer::get_singleton()->format_number(rtos(Math::round((zoom / MAX(1, EDSCALE)) * 100)), lang);
49
} else {
50
// 2 decimal places if the zoom is below 10%, 1 decimal place if it's below 1000%.
51
zoom_text = TranslationServer::get_singleton()->format_number(rtos(Math::snapped((zoom / MAX(1, EDSCALE)) * 100, (zoom >= 0.1) ? 0.1 : 0.01)), lang);
52
}
53
zoom_text += " " + TranslationServer::get_singleton()->get_percent_sign(lang);
54
zoom_reset->set_text(zoom_text);
55
}
56
57
void EditorZoomWidget::_button_zoom_minus() {
58
set_zoom_by_increments(-6, Input::get_singleton()->is_key_pressed(Key::ALT));
59
emit_signal(SNAME("zoom_changed"), zoom);
60
}
61
62
void EditorZoomWidget::_button_zoom_reset() {
63
set_zoom(1.0 * MAX(1, EDSCALE));
64
emit_signal(SNAME("zoom_changed"), zoom);
65
}
66
67
void EditorZoomWidget::_button_zoom_plus() {
68
set_zoom_by_increments(6, Input::get_singleton()->is_key_pressed(Key::ALT));
69
emit_signal(SNAME("zoom_changed"), zoom);
70
}
71
72
float EditorZoomWidget::get_zoom() {
73
return zoom;
74
}
75
76
void EditorZoomWidget::set_zoom(float p_zoom) {
77
float new_zoom = CLAMP(p_zoom, min_zoom, max_zoom);
78
if (zoom != new_zoom) {
79
zoom = new_zoom;
80
_update_zoom_label();
81
}
82
}
83
84
float EditorZoomWidget::get_min_zoom() {
85
return min_zoom;
86
}
87
88
float EditorZoomWidget::get_max_zoom() {
89
return max_zoom;
90
}
91
92
void EditorZoomWidget::setup_zoom_limits(float p_min, float p_max) {
93
ERR_FAIL_COND(p_min < 0 || p_min > p_max);
94
95
min_zoom = p_min;
96
max_zoom = p_max;
97
98
if (zoom > max_zoom) {
99
set_zoom(max_zoom);
100
emit_signal(SNAME("zoom_changed"), zoom);
101
} else if (zoom < min_zoom) {
102
set_zoom(min_zoom);
103
emit_signal(SNAME("zoom_changed"), zoom);
104
}
105
}
106
107
void EditorZoomWidget::set_zoom_by_increments(int p_increment_count, bool p_integer_only) {
108
// Remove editor scale from the index computation.
109
const float zoom_noscale = zoom / MAX(1, EDSCALE);
110
111
if (p_integer_only) {
112
// Only visit integer scaling factors above 100%, and fractions with an integer denominator below 100%
113
// (1/2 = 50%, 1/3 = 33.33%, 1/4 = 25%, …).
114
// This is useful when working on pixel art projects to avoid distortion.
115
// This algorithm is designed to handle fractional start zoom values correctly
116
// (e.g. 190% will zoom up to 200% and down to 100%).
117
if (zoom_noscale + p_increment_count * 0.001 >= 1.0 - CMP_EPSILON) {
118
// New zoom is certain to be above 100%.
119
if (p_increment_count >= 1) {
120
// Zooming.
121
set_zoom(Math::floor(zoom_noscale + p_increment_count) * MAX(1, EDSCALE));
122
} else {
123
// Dezooming.
124
set_zoom(Math::ceil(zoom_noscale + p_increment_count) * MAX(1, EDSCALE));
125
}
126
} else {
127
if (p_increment_count >= 1) {
128
// Zooming in. Convert the current zoom into a denominator.
129
float new_zoom = 1.0 / Math::ceil(1.0 / zoom_noscale - p_increment_count);
130
if (Math::is_equal_approx(zoom_noscale, new_zoom)) {
131
// New zoom is identical to the old zoom, so try again.
132
// This can happen due to floating-point precision issues.
133
new_zoom = 1.0 / Math::ceil(1.0 / zoom_noscale - p_increment_count - 1);
134
}
135
set_zoom(new_zoom * MAX(1, EDSCALE));
136
} else {
137
// Zooming out. Convert the current zoom into a denominator.
138
float new_zoom = 1.0 / Math::floor(1.0 / zoom_noscale - p_increment_count);
139
if (Math::is_equal_approx(zoom_noscale, new_zoom)) {
140
// New zoom is identical to the old zoom, so try again.
141
// This can happen due to floating-point precision issues.
142
new_zoom = 1.0 / Math::floor(1.0 / zoom_noscale - p_increment_count + 1);
143
}
144
set_zoom(new_zoom * MAX(1, EDSCALE));
145
}
146
}
147
} else {
148
if (zoom < CMP_EPSILON || p_increment_count == 0) {
149
return;
150
}
151
152
// Zoom is calculated as pow(zoom_factor, zoom_step).
153
// This ensures the zoom will always equal 100% when zoom_step is 0.
154
float zoom_factor = EDITOR_GET("editors/2d/zoom_speed_factor");
155
float current_zoom_step = Math::round(Math::log(zoom_noscale) / Math::log(zoom_factor));
156
float new_zoom = Math::pow(zoom_factor, current_zoom_step + p_increment_count);
157
158
// Restore Editor scale transformation.
159
new_zoom *= MAX(1, EDSCALE);
160
161
set_zoom(new_zoom);
162
}
163
}
164
165
void EditorZoomWidget::_notification(int p_what) {
166
switch (p_what) {
167
case NOTIFICATION_THEME_CHANGED: {
168
zoom_minus->set_button_icon(get_editor_theme_icon(SNAME("ZoomLess")));
169
zoom_plus->set_button_icon(get_editor_theme_icon(SNAME("ZoomMore")));
170
} break;
171
}
172
}
173
174
void EditorZoomWidget::_bind_methods() {
175
ClassDB::bind_method(D_METHOD("set_zoom", "zoom"), &EditorZoomWidget::set_zoom);
176
ClassDB::bind_method(D_METHOD("get_zoom"), &EditorZoomWidget::get_zoom);
177
ClassDB::bind_method(D_METHOD("set_zoom_by_increments", "increment", "integer_only"), &EditorZoomWidget::set_zoom_by_increments);
178
179
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "zoom"), "set_zoom", "get_zoom");
180
181
ADD_SIGNAL(MethodInfo("zoom_changed", PropertyInfo(Variant::FLOAT, "zoom")));
182
}
183
184
void EditorZoomWidget::set_shortcut_context(Node *p_node) const {
185
zoom_minus->set_shortcut_context(p_node);
186
zoom_plus->set_shortcut_context(p_node);
187
zoom_reset->set_shortcut_context(p_node);
188
}
189
190
EditorZoomWidget::EditorZoomWidget() {
191
// Zoom buttons
192
zoom_minus = memnew(Button);
193
zoom_minus->set_accessibility_name(TTRC("Zoom Out"));
194
zoom_minus->set_flat(true);
195
zoom_minus->set_shortcut(ED_SHORTCUT_ARRAY("canvas_item_editor/zoom_minus", TTRC("Zoom Out"), { int32_t(KeyModifierMask::CMD_OR_CTRL | Key::MINUS), int32_t(KeyModifierMask::CMD_OR_CTRL | Key::KP_SUBTRACT) }));
196
zoom_minus->set_shortcut_context(this);
197
zoom_minus->set_focus_mode(FOCUS_ACCESSIBILITY);
198
add_child(zoom_minus);
199
zoom_minus->connect(SceneStringName(pressed), callable_mp(this, &EditorZoomWidget::_button_zoom_minus));
200
201
zoom_reset = memnew(Button);
202
zoom_reset->set_flat(true);
203
zoom_reset->set_accessibility_name(TTRC("Reset Zoom"));
204
205
Ref<StyleBoxEmpty> empty_stylebox = memnew(StyleBoxEmpty);
206
zoom_reset->add_theme_style_override(CoreStringName(normal), empty_stylebox);
207
zoom_reset->add_theme_style_override(SceneStringName(hover), empty_stylebox);
208
zoom_reset->add_theme_style_override("focus", empty_stylebox);
209
zoom_reset->add_theme_style_override(SceneStringName(pressed), empty_stylebox);
210
zoom_reset->add_theme_constant_override("outline_size", Math::ceil(2 * EDSCALE));
211
zoom_reset->add_theme_color_override("font_outline_color", Color(0, 0, 0));
212
zoom_reset->add_theme_color_override(SceneStringName(font_color), Color(1, 1, 1));
213
214
zoom_reset->set_shortcut(ED_GET_SHORTCUT("canvas_item_editor/zoom_100_percent"));
215
zoom_reset->set_shortcut_context(this);
216
zoom_reset->set_focus_mode(FOCUS_ACCESSIBILITY);
217
zoom_reset->set_text_alignment(HORIZONTAL_ALIGNMENT_CENTER);
218
// Prevent the button's size from changing when the text size changes
219
zoom_reset->set_custom_minimum_size(Size2(56 * EDSCALE, 0));
220
add_child(zoom_reset);
221
zoom_reset->connect(SceneStringName(pressed), callable_mp(this, &EditorZoomWidget::_button_zoom_reset));
222
223
zoom_plus = memnew(Button);
224
zoom_plus->set_accessibility_name(TTRC("Zoom In"));
225
zoom_plus->set_flat(true);
226
zoom_plus->set_shortcut(ED_SHORTCUT_ARRAY("canvas_item_editor/zoom_plus", TTRC("Zoom In"), { int32_t(KeyModifierMask::CMD_OR_CTRL | Key::EQUAL), int32_t(KeyModifierMask::CMD_OR_CTRL | Key::KP_ADD) }));
227
zoom_plus->set_shortcut_context(this);
228
zoom_plus->set_focus_mode(FOCUS_ACCESSIBILITY);
229
add_child(zoom_plus);
230
zoom_plus->connect(SceneStringName(pressed), callable_mp(this, &EditorZoomWidget::_button_zoom_plus));
231
232
_update_zoom_label();
233
234
add_theme_constant_override("separation", 0);
235
}
236
237